2 # DX cluster user routines
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
14 use MLDBM qw(DB_File);
19 use vars qw(%u $dbm $filename %valid);
25 # hash of valid elements and a simple prompt
28 alias => '0,Real Callsign',
31 lat => '0,Latitude,slat',
32 long => '0,Longitude,slong',
34 email => '0,E-mail Address',
35 priv => '9,Privilege Level',
36 lastin => '0,Last Time in,cldatetime',
37 passwd => '9,Password',
38 addr => '0,Full Address',
39 sort => '0,Type of User', # A - ak1a, U - User, S - spider cluster, B - BBS
40 xpert => '0,Expert Status,yesno',
42 node => '0,Home Node',
43 lockout => '9,Locked out?,yesno', # won't let them in at all
44 dxok => '9,DX Spots?,yesno', # accept his dx spots?
45 annok => '9,Announces?,yesno', # accept his announces?
46 reg => '0,Registered?,yesno', # is this user registered?
48 hmsgno => '0,Highest Msgno',
57 return if $name =~ /::DESTROY$/;
60 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
62 $self->{$name} = shift;
65 return $self->{$name};
69 # initialise the system
75 confess "need a filename in User" if !$fn;
76 $dbm = tie (%u, MLDBM, $fn, O_CREAT|O_RDWR, 0666) or confess "can't open user file: $fn ($!)";
93 # new - create a new user
102 confess "can't create existing call $call in User\n!" if $u{$call};
105 $self->{call} = $call;
109 $self->{lang} = $main::lang;
115 # get - get an existing user - this seems to return a different reference everytime it is
123 $call =~ s/-\d+$//o; # strip ssid
128 # get all callsigns in the database
133 return (sort keys %u);
137 # get an existing either from the channel (if there is one) or from the database
139 # It is important to note that if you have done a get (for the channel say) and you
140 # want access or modify that you must use this call (and you must NOT use get's all
141 # over the place willy nilly!)
148 $call =~ s/-\d+$//o; # strip ssid
150 my $dxchan = DXChannel->get($call);
151 return $dxchan->user if $dxchan;
162 my $call = $self->{call};
167 # del - delete a user
173 my $call = $self->{call};
178 # close - close down a user
184 $self->{lastin} = time;
189 # return a list of valid elements
198 # return a prompt for a field
203 my ($self, $ele) = @_;
208 # enter an element from input, returns 1 for success
213 my ($self, $ele, $value) = @_;
214 return 0 if (!defined $valid{$ele});
216 return 0 if $value eq "";
217 if ($ele eq 'long') {
218 my ($longd, $longm, $longl) = $value =~ /(\d+) (\d+) ([EWew])/;
219 return 0 if (!$longl || $longd < 0 || $longd > 180 || $longm < 0 || $longm > 59);
220 $longd += ($longm/60);
221 $longd = 0-$longd if (uc $longl) eq 'W';
222 $self->{'long'} = $longd;
224 } elsif ($ele eq 'lat') {
225 my ($latd, $latm, $latl) = $value =~ /(\d+) (\d+) ([NSns])/;
226 return 0 if (!$latl || $latd < 0 || $latd > 90 || $latm < 0 || $latm > 59);
228 $latd = 0-$latd if (uc $latl) eq 'S';
229 $self->{'lat'} = $latd;
231 } elsif ($ele eq 'qra') {
232 $self->{'qra'} = UC $value;
235 $self->{$ele} = $value; # default action
241 # some variable accessors
245 @_ ? $self->{sort} = shift : $self->{sort} ;