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?
56 return if $name =~ /::DESTROY$/;
59 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
61 $self->{$name} = shift;
64 return $self->{$name};
68 # initialise the system
74 die "need a filename in User" if !$fn;
75 $dbm = tie (%u, MLDBM, $fn, O_CREAT|O_RDWR, 0666) or die "can't open user file: $fn ($!)";
92 # new - create a new user
97 my ($pkg, $call) = @_;
98 die "can't create existing call $call in User\n!" if $u{$call};
101 $self->{call} = $call;
110 # get - get an existing user - this seems to return a different reference everytime it is
118 $call =~ s/-\d+//o; # strip ssid
123 # get all callsigns in the database
132 # get an existing either from the channel (if there is one) or from the database
134 # It is important to note that if you have done a get (for the channel say) and you
135 # want access or modify that you must use this call (and you must NOT use get's all
136 # over the place willy nilly!)
143 $call =~ s/-\d+//o; # strip ssid
145 my $dxchan = DXChannel->get($call);
146 return $dxchan->user if $dxchan;
157 my $call = $self->{call};
162 # del - delete a user
168 my $call = $self->{call};
173 # close - close down a user
179 $self->{lastin} = time;
184 # return a list of valid elements
193 # return a prompt for a field
198 my ($self, $ele) = @_;
203 # enter an element from input, returns 1 for success
208 my ($self, $ele, $value) = @_;
209 return 0 if (!defined $valid{$ele});
211 return 0 if $value eq "";
212 if ($ele eq 'long') {
213 my ($longd, $longm, $longl) = $value =~ /(\d+) (\d+) ([EWew])/;
214 return 0 if (!$longl || $longd < 0 || $longd > 180 || $longm < 0 || $longm > 59);
215 $longd += ($longm/60);
216 $longd = 0-$longd if (uc $longl) eq 'W';
217 $self->{'long'} = $longd;
219 } elsif ($ele eq 'lat') {
220 my ($latd, $latm, $latl) = $value =~ /(\d+) (\d+) ([NSns])/;
221 return 0 if (!$latl || $latd < 0 || $latd > 90 || $latm < 0 || $latm > 59);
223 $latd = 0-$latd if (uc $latl) eq 'S';
224 $self->{'lat'} = $latd;
226 } elsif ($ele eq 'qra') {
227 $self->{'qra'} = UC $value;
230 $self->{$ele} = $value; # default action
236 # some variable accessors
240 @_ ? $self->{sort} = shift : $self->{sort} ;