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,Last Node',
43 homenode => '0,Home Node',
44 lockout => '9,Locked out?,yesno', # won't let them in at all
45 dxok => '9,DX Spots?,yesno', # accept his dx spots?
46 annok => '9,Announces?,yesno', # accept his announces?
47 reg => '0,Registered?,yesno', # is this user registered?
49 hmsgno => '0,Highest Msgno',
50 group => '0,Access Group,parray', # used to create a group of users/nodes for some purpose or other
51 isolate => '9,Isolate network,yesno',
60 return if $name =~ /::DESTROY$/;
63 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
65 $self->{$name} = shift;
68 return $self->{$name};
72 # initialise the system
78 confess "need a filename in User" if !$fn;
79 $dbm = tie (%u, MLDBM, $fn, O_CREAT|O_RDWR, 0666) or confess "can't open user file: $fn ($!)";
96 # new - create a new user
103 # $call =~ s/-\d+$//o;
105 confess "can't create existing call $call in User\n!" if $u{$call};
108 $self->{call} = $call;
109 $self->{'sort'} = 'U';
112 $self->{lang} = $main::lang;
118 # get - get an existing user - this seems to return a different reference everytime it is
126 # $call =~ s/-\d+$//o; # strip ssid
131 # get all callsigns in the database
136 return (sort keys %u);
140 # get an existing either from the channel (if there is one) or from the database
142 # It is important to note that if you have done a get (for the channel say) and you
143 # want access or modify that you must use this call (and you must NOT use get's all
144 # over the place willy nilly!)
151 # $call =~ s/-\d+$//o; # strip ssid
153 my $dxchan = DXChannel->get($call);
154 return $dxchan->user if $dxchan;
165 my $call = $self->{call};
170 # del - delete a user
176 my $call = $self->{call};
181 # close - close down a user
187 $self->{lastin} = time;
192 # return a list of valid elements
204 # add one or more groups
208 my $ref = $self->{group} || [ 'local' ];
209 $self->{group} = $ref if !$self->{group};
210 push @$ref, @_ if @_;
213 # remove one or more groups
217 my $ref = $self->{group} || [ 'local' ];
220 $self->{group} = $ref if !$self->{group};
222 @$ref = map { my $a = $_; return (grep { $_ eq $a } @in) ? () : $a } @$ref;
225 # does this thing contain all the groups listed?
229 my $ref = $self->{group};
232 return 0 if !$ref || @_ == 0;
233 return 1 if @$ref == 0 && @_ == 0;
234 for ($n = 0; $n < @_; ) {
237 $n++ if grep $_ eq $a, @_;
243 # simplified group test just for one group
248 my $ref = $self->{group};
251 return grep $_ eq $s, $ref;
254 # set up a default group (only happens for them's that connect direct)
258 $self->{group} = [ 'local' ];
262 # return a prompt for a field
267 my ($self, $ele) = @_;
271 # some variable accessors
275 @_ ? $self->{'sort'} = shift : $self->{'sort'} ;