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
76 my ($pkg, $fn, $mode) = @_;
78 confess "need a filename in User" if !$fn;
80 $dbm = tie (%u, MLDBM, $fn, O_CREAT|O_RDWR, 0666) or confess "can't open user file: $fn ($!)";
82 $dbm = tie (%u, MLDBM, $fn, O_RDONLY) or confess "can't open user file: $fn ($!)";
100 # new - create a new user
107 # $call =~ s/-\d+$//o;
109 confess "can't create existing call $call in User\n!" if $u{$call};
111 my $self = bless {}, $pkg;
112 $self->{call} = $call;
113 $self->{'sort'} = 'U';
116 $self->{lang} = $main::lang;
122 # get - get an existing user - this seems to return a different reference everytime it is
130 # $call =~ s/-\d+$//o; # strip ssid
135 # get all callsigns in the database
140 return (sort keys %u);
144 # get an existing either from the channel (if there is one) or from the database
146 # It is important to note that if you have done a get (for the channel say) and you
147 # want access or modify that you must use this call (and you must NOT use get's all
148 # over the place willy nilly!)
155 # $call =~ s/-\d+$//o; # strip ssid
157 my $dxchan = DXChannel->get($call);
158 return $dxchan->user if $dxchan;
169 my $call = $self->{call};
174 # create a string from a user reference
183 for $f (sort keys %$self) {
184 my $val = $$self{$f};
185 if (ref $val) { # it's an array (we think)
194 $out .= "'$f'=>'$val',";
197 $out .= " }, 'DXUser')";
202 # create a hash from a string
215 # del - delete a user
221 my $call = $self->{call};
226 # close - close down a user
232 $self->{lastin} = time;
237 # return a list of valid elements
249 # add one or more groups
253 my $ref = $self->{group} || [ 'local' ];
254 $self->{group} = $ref if !$self->{group};
255 push @$ref, @_ if @_;
258 # remove one or more groups
262 my $ref = $self->{group} || [ 'local' ];
265 $self->{group} = $ref if !$self->{group};
267 @$ref = map { my $a = $_; return (grep { $_ eq $a } @in) ? () : $a } @$ref;
270 # does this thing contain all the groups listed?
274 my $ref = $self->{group};
277 return 0 if !$ref || @_ == 0;
278 return 1 if @$ref == 0 && @_ == 0;
279 for ($n = 0; $n < @_; ) {
282 $n++ if grep $_ eq $a, @_;
288 # simplified group test just for one group
293 my $ref = $self->{group};
296 return grep $_ eq $s, $ref;
299 # set up a default group (only happens for them's that connect direct)
303 $self->{group} = [ 'local' ];
307 # return a prompt for a field
312 my ($self, $ele) = @_;
316 # some variable accessors
320 @_ ? $self->{'sort'} = shift : $self->{'sort'} ;