X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXUser.pm;h=b593a6b2ad7f22eb33982e275a1aed51923259fd;hb=07ea293f3919d2da76220b5fbc55b734008ed44c;hp=60abaeda3098f77598b67e2603f33790c3661c75;hpb=60c0ea1747bc8ad95e531d29025f7bcee4fd10c1;p=spider.git diff --git a/perl/DXUser.pm b/perl/DXUser.pm index 60abaeda..b593a6b2 100644 --- a/perl/DXUser.pm +++ b/perl/DXUser.pm @@ -20,21 +20,45 @@ $filename = undef; # hash of valid elements and a simple prompt %valid = ( - call => 'Callsign', - alias => 'Real Callsign', - name => 'Name', - qth => 'Home QTH', - lat => 'Latitude', - long => 'Longtitude', - qra => 'Locator', - email => 'E-mail Address', - priv => 'Privilege Level', - sort => 'Type of User', - lastin => 'Last Time in', - passwd => 'Password', - addr => 'Full Address' + call => '0,Callsign', + alias => '0,Real Callsign', + name => '0,Name', + qth => '0,Home QTH', + lat => '0,Latitude,slat', + long => '0,Longitude,slong', + qra => '0,Locator', + email => '0,E-mail Address', + priv => '9,Privilege Level', + lastin => '0,Last Time in,cldatetime', + passwd => '9,Password', + addr => '0,Full Address', + sort => '0,Type of User', # A - ak1a, U - User, S - spider cluster, B - BBS + wwv => '0,Want WWV,yesno', + talk => '0,Want Talk,yesno', + ann => '0,Want Announce,yesno', + here => '0,Here Status,yesno', + xpert => '0,Expert Status,yesno', + bbs => '0,Home BBS', + node => '0,Home Node', + dx => '0,DX Spots,yesno', ); +sub AUTOLOAD +{ + my $self = shift; + my $name = $AUTOLOAD; + + return if $name =~ /::DESTROY$/; + $name =~ s/.*:://o; + + die "Non-existant field '$AUTOLOAD'" if !$valid{$name}; + if (@_) { + $self->{$name} = shift; + $self->put(); + } + return $self->{$name}; +} + # # initialise the system # @@ -42,8 +66,8 @@ sub init { my ($pkg, $fn) = @_; - die "need a filename in User\n" if !$fn; - $dbm = tie %u, MLDBM, $fn, O_CREAT|O_RDWR, 0666 or die "can't open user file: $fn ($!)\n"; + die "need a filename in User" if !$fn; + $dbm = tie %u, MLDBM, $fn, O_CREAT|O_RDWR, 0666 or die "can't open user file: $fn ($!)"; $filename = $fn; } @@ -78,7 +102,7 @@ sub new sub get { - my $call = shift; + my ($pkg, $call) = @_; return $u{$call}; } @@ -119,19 +143,19 @@ sub close # return a list of valid elements # -sub elements +sub fields { return keys(%valid); } # -# return a prompt together with the existing value +# return a prompt for a field # -sub prompt +sub field_prompt { my ($self, $ele) = @_; - return "$valid{$ele} [$self->{$ele}]"; + return $valid{$ele}; } # @@ -167,5 +191,12 @@ sub enter } return 0; } + +# some variable accessors +sub sort +{ + my $self = shift; + @_ ? $self->{sort} = shift : $self->{sort} ; +} 1; __END__