2 # DX cluster user routines
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
23 use vars qw(%u $dbm $filename %valid $lastoperinterval $lasttime $lru $lrusize $tooold $v3);
28 $lastoperinterval = 60*24*60*60;
31 $tooold = 86400 * 365; # this marks an old user who hasn't given enough info to be useful
34 # hash of valid elements and a simple prompt
37 alias => '0,Real Callsign',
40 lat => '0,Latitude,slat',
41 long => '0,Longitude,slong',
43 email => '0,E-mail Address,parray',
44 priv => '9,Privilege Level',
45 lastin => '0,Last Time in,cldatetime',
46 passwd => '9,Password,yesno',
47 passphrase => '9,Pass Phrase,yesno',
48 addr => '0,Full Address',
49 'sort' => '0,Type of User', # A - ak1a, U - User, S - spider cluster, B - BBS
50 xpert => '0,Expert Status,yesno',
52 node => '0,Last Node',
53 homenode => '0,Home Node',
54 lockout => '9,Locked out?,yesno', # won't let them in at all
55 dxok => '9,Accept DX Spots?,yesno', # accept his dx spots?
56 annok => '9,Accept Announces?,yesno', # accept his announces?
58 hmsgno => '0,Highest Msgno',
59 group => '0,Group,parray', # used to create a group of users/nodes for some purpose or other
60 buddies => '0,Buddies,parray',
61 isolate => '9,Isolate network,yesno',
62 wantbeep => '0,Req Beep,yesno',
63 wantann => '0,Req Announce,yesno',
64 wantwwv => '0,Req WWV,yesno',
65 wantwcy => '0,Req WCY,yesno',
66 wantecho => '0,Req Echo,yesno',
67 wanttalk => '0,Req Talk,yesno',
68 wantwx => '0,Req WX,yesno',
69 wantdx => '0,Req DX Spots,yesno',
70 wantemail => '0,Req Msgs as Email,yesno',
71 pagelth => '0,Current Pagelth',
72 pingint => '9,Node Ping interval',
73 nopings => '9,Ping Obs Count',
74 wantlogininfo => '0,Login Info Req,yesno',
75 wantgrid => '0,Show DX Grid,yesno',
76 wantann_talk => '0,Talklike Anns,yesno',
77 wantpc16 => '9,Want Users from node,yesno',
78 wantsendpc16 => '9,Send PC16,yesno',
79 wantroutepc19 => '9,Route PC19,yesno',
80 wantusstate => '0,Show US State,yesno',
81 wantdxcq => '0,Show CQ Zone,yesno',
82 wantdxitu => '0,Show ITU Zone,yesno',
83 wantgtk => '0,Want GTK interface,yesno',
84 wantpc9x => '0,Want PC9X interface,yesno',
85 lastoper => '9,Last for/oper,cldatetime',
86 nothere => '0,Not Here Text',
87 registered => '9,Registered?,yesno',
88 prompt => '0,Required Prompt',
89 version => '1,Version',
91 believe => '1,Believable nodes,parray',
92 lastping => '1,Last Ping at,ptimelist',
93 maxconnect => '1,Max Connections',
100 my $name = $AUTOLOAD;
102 return if $name =~ /::DESTROY$/;
105 confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
106 # this clever line of code creates a subroutine which takes over from autoload
107 # from OO Perl - Conway
108 *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}};
115 # initialise the system
131 $ufn = localdata("users.v2");
133 dbg("the module Storable appears to be missing!!");
134 dbg("trying to continue in compatibility mode (this may fail)");
135 dbg("please install Storable from CPAN as soon as possible");
137 import Storable qw(nfreeze thaw);
139 $ufn = localdata("users.v3");
141 $convert++ if -e localdata("users.v2") && !-e $ufn;
145 $dbm = tie (%u, 'DB_File', $ufn, O_CREAT|O_RDWR, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!) [rebuild it from user_asc?]";
147 $dbm = tie (%u, 'DB_File', $ufn, O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!) [rebuild it from user_asc?]";
150 die "Cannot open $ufn ($!)\n" unless $dbm;
152 $lru = LRU->newbase("DXUser", $lrusize);
154 # do a conversion if required
155 if ($dbm && $convert) {
156 my ($key, $val, $action, $count, $err) = ('','',0,0,0);
159 dbg("Converting the User File to V3 ");
160 dbg("This will take a while, I suggest you go and have cup of strong tea");
161 my $odbm = tie (%oldu, 'DB_File', localdata("users.v2"), O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn.v2 ($!) [rebuild it from user_asc?]";
162 for ($action = R_FIRST; !$odbm->seq($key, $val, $action); $action = R_NEXT) {
163 my $ref = asc_decode($val);
173 dbg("Conversion completed $count records $err errors");
180 my $fn = localdata("users");
181 $fn .= $v3 ? ".v3" : ".v2";
186 # periodic processing
190 if ($main::systime > $lasttime + 15) {
192 $lasttime = $main::systime;
207 # new - create a new user
214 my $self = bless {call => $call, 'sort'=>'U'}, $pkg;
222 # $call =~ s/-\d+$//o;
224 # confess "can't create existing call $call in User\n!" if $u{$call};
226 my $self = $pkg->alloc($call);
232 # get - get an existing user - this seems to return a different reference everytime it is
241 # is it in the LRU cache?
242 my $ref = $lru->get($call);
243 return $ref if $ref && ref $ref eq 'DXUser';
246 unless ($dbm->get($call, $data)) {
247 $ref = decode($data);
249 if (!UNIVERSAL::isa($ref, 'DXUser')) {
250 dbg("DXUser::get: got strange answer from decode of $call". ref $ref. " ignoring");
253 # we have a reference and it *is* a DXUser
255 dbg("DXUser::get: no reference returned from decode of $call $!");
258 $lru->put($call, $ref);
265 # get an existing either from the channel (if there is one) or from the database
267 # It is important to note that if you have done a get (for the channel say) and you
268 # want access or modify that you must use this call (and you must NOT use get's all
269 # over the place willy nilly!)
276 my $dxchan = DXChannel::get($call);
278 my $ref = $dxchan->user;
279 return $ref if $ref && UNIVERSAL::isa($ref, 'DXUser');
281 dbg("DXUser::get_current: got invalid user ref for $call from dxchan $dxchan->{call} ". ref $ref. " ignoring");
287 # get all callsigns in the database
292 return (sort keys %u);
302 confess "Trying to put nothing!" unless $self && ref $self;
303 my $call = $self->{call};
306 delete $self->{annok} if $self->{annok};
307 delete $self->{dxok} if $self->{dxok};
309 $lru->put($call, $self);
310 my $ref = $self->encode;
311 $dbm->put($call, $ref);
317 goto &asc_encode unless $v3;
319 return nfreeze($self);
325 goto &asc_decode unless $v3;
330 # create a string from a user reference (in_ascii)
339 my $ref = bless {}, ref $self;
340 foreach my $k (qw(qth lat long qra sort call homenode node lastoper lastin)) {
341 $ref->{$k} = $self->{$k} if exists $self->{$k};
343 $ref->{name} = $self->{name} if exists $self->{name} && $self->{name} !~ /selfspot/i;
352 # create a hash from a string (in ascii)
358 $s =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
368 # del - delete a user
374 my $call = $self->{call};
380 # close - close down a user
386 $self->{lastin} = time;
400 # return a list of valid elements
410 # export the database to an ascii file
415 my $name = shift || 'user_asc';
416 my $basic_info_only = shift;
418 my $fn = $name ne 'user_asc' ? $name : "$main::local_data/$name"; # force use of local
421 move "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
422 move "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
423 move "$fn.oo", "$fn.ooo" if -e "$fn.oo";
424 move "$fn.o", "$fn.oo" if -e "$fn.o";
425 move "$fn", "$fn.o" if -e "$fn";
430 my $fh = new IO::File ">$fn" or return "cannot open $fn ($!)";
435 my $t = scalar localtime;
436 print $fh q{#!/usr/bin/perl
438 # The exported userfile for a DXSpider System
440 # Input file: $filename
446 # search local then perl directories
450 # root of directory tree for this system
452 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
454 unshift @INC, "$root/perl"; # this IS the right way round!
455 unshift @INC, "$root/local";
457 # try to detect a lockfile (this isn't atomic but
459 $lockfn = "$root/local_data/cluster.lck"; # lock file name
461 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
464 die "Lockfile ($lockfn) and process $pid exists - cluster must be stopped first\n" if kill 0, $pid;
473 $main::userfn = shift @ARGV;
474 print "user filename now $userfn\n";
487 my $ref = asc_decode($f[1]);
492 print "# Error: $f[0]\t$f[1]\n";
496 DXUser::sync; DXUser::finish;
497 print "There are $count user records and $err errors\n";
499 print $fh "__DATA__\n";
501 for ($action = R_FIRST; !$dbm->seq($key, $val, $action); $action = R_NEXT) {
502 if (!is_callsign($key) || $key =~ /^0/) {
505 $eval =~ s/([\%\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
506 $ekey =~ s/([\%\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
507 LogDbg('DXCommand', "Export Error1: $ekey\t$eval");
508 eval {$dbm->del($key)};
509 dbg(carp("Export Error1: $ekey\t$eval\n$@")) if $@;
513 my $ref = decode($val);
515 my $t = $ref->{lastin} || 0;
516 if ($ref->is_user && !$ref->{priv} && $main::systime > $t + $tooold) {
517 unless ($ref->{lat} && $ref->{long} || $ref->{qth} || $ref->{qra}) {
518 eval {$dbm->del($key)};
519 dbg(carp("Export Error2: $key\t$val\n$@")) if $@;
520 LogDbg('DXCommand', "$ref->{call} deleted, too old");
525 # only store users that are reasonably active or have useful information
526 print $fh "$key\t" . $ref->asc_encode($basic_info_only) . "\n";
529 LogDbg('DXCommand', "Export Error3: $key\t$val");
530 eval {$dbm->del($key)};
531 dbg(carp("Export Error3: $key\t$val\n$@")) if $@;
537 my $s = qq{Exported users to $fn - $count Users $del Deleted $err Errors ('sh/log Export' for details)};
538 LogDbg('command', $s);
546 # add one or more groups
550 my $ref = $self->{group} || [ 'local' ];
551 $self->{group} = $ref if !$self->{group};
552 push @$ref, @_ if @_;
555 # remove one or more groups
559 my $ref = $self->{group} || [ 'local' ];
562 $self->{group} = $ref if !$self->{group};
564 @$ref = map { my $a = $_; return (grep { $_ eq $a } @in) ? () : $a } @$ref;
567 # does this thing contain all the groups listed?
571 my $ref = $self->{group};
574 return 0 if !$ref || @_ == 0;
575 return 1 if @$ref == 0 && @_ == 0;
576 for ($n = 0; $n < @_; ) {
579 $n++ if grep $_ eq $a, @_;
585 # simplified group test just for one group
590 my $ref = $self->{group};
593 return grep $_ eq $s, $ref;
596 # set up a default group (only happens for them's that connect direct)
600 $self->{group} = [ 'local' ];
603 # set up empty buddies (only happens for them's that connect direct)
607 $self->{buddies} = [ ];
611 # return a prompt for a field
616 my ($self, $ele) = @_;
620 # some variable accessors
624 @_ ? $self->{'sort'} = shift : $self->{'sort'} ;
629 # want is default = 1
636 $self->{$s} = $val if defined $val;
637 return exists $self->{$s} ? $self->{$s} : 1;
640 # wantnot is default = 0
647 $self->{$s} = $val if defined $val;
648 return exists $self->{$s} ? $self->{$s} : 0;
653 return _want('beep', @_);
658 return _want('ann', @_);
663 return _want('wwv', @_);
668 return _want('wcy', @_);
673 return _want('echo', @_);
678 return _want('wx', @_);
683 return _want('dx', @_);
688 return _want('talk', @_);
693 return _want('grid', @_);
698 return _want('email', @_);
703 return _want('ann_talk', @_);
708 return _want('pc16', @_);
713 return _want('sendpc16', @_);
718 return _want('routepc16', @_);
723 return _want('usstate', @_);
728 return _want('dxcq', @_);
733 return _want('dxitu', @_);
738 return _want('gtk', @_);
743 return _want('pc9x', @_);
750 $self->{wantlogininfo} = $val if defined $val;
751 return $self->{wantlogininfo};
757 return $self->{sort} =~ /^[ACRSX]$/;
763 return grep $_ eq 'local_node', @{$self->{group}};
769 return $self->{sort} =~ /^[UW]$/;
775 return $self->{sort} eq 'W';
781 return $self->{sort} eq 'B';
787 return $self->{sort} eq 'S';
793 return $self->{sort} eq 'C';
799 return $self->{sort} eq 'X';
805 return $self->{sort} eq 'R';
811 return $self->{sort} eq 'A';
817 delete $self->{passwd};
823 delete $self->{passphrase};
830 $self->{believe} ||= [];
831 push @{$self->{believe}}, $call unless grep $_ eq $call, @{$self->{believe}};
838 if (exists $self->{believe}) {
839 $self->{believe} = [grep {$_ ne $call} @{$self->{believe}}];
840 delete $self->{believe} unless @{$self->{believe}};
847 return exists $self->{believe} ? @{$self->{believe}} : ();
854 $self->{lastping} ||= {};
855 $self->{lastping} = {} unless ref $self->{lastping};
856 my $b = $self->{lastping};
857 $b->{$call} = shift if @_;