2 # DX cluster user routines
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
22 use vars qw(%u $dbm $filename %valid $lastoperinterval $lasttime $lru $lrusize $tooold $v3);
27 $lastoperinterval = 60*24*60*60;
30 $tooold = 86400 * 365; # this marks an old user who hasn't given enough info to be useful
33 # hash of valid elements and a simple prompt
36 alias => '0,Real Callsign',
39 lat => '0,Latitude,slat',
40 long => '0,Longitude,slong',
42 email => '0,E-mail Address,parray',
43 priv => '9,Privilege Level',
44 lastin => '0,Last Time in,cldatetime',
45 passwd => '9,Password,yesno',
46 passphrase => '9,Pass Phrase,yesno',
47 addr => '0,Full Address',
48 'sort' => '0,Type of User', # A - ak1a, U - User, S - spider cluster, B - BBS
49 xpert => '0,Expert Status,yesno',
51 node => '0,Last Node',
52 homenode => '0,Home Node',
53 lockout => '9,Locked out?,yesno', # won't let them in at all
54 dxok => '9,Accept DX Spots?,yesno', # accept his dx spots?
55 annok => '9,Accept Announces?,yesno', # accept his announces?
57 hmsgno => '0,Highest Msgno',
58 group => '0,Group,parray', # used to create a group of users/nodes for some purpose or other
59 buddies => '0,Buddies,parray',
60 isolate => '9,Isolate network,yesno',
61 wantbeep => '0,Req Beep,yesno',
62 wantann => '0,Req Announce,yesno',
63 wantwwv => '0,Req WWV,yesno',
64 wantwcy => '0,Req WCY,yesno',
65 wantecho => '0,Req Echo,yesno',
66 wanttalk => '0,Req Talk,yesno',
67 wantwx => '0,Req WX,yesno',
68 wantdx => '0,Req DX Spots,yesno',
69 wantemail => '0,Req Msgs as Email,yesno',
70 pagelth => '0,Current Pagelth',
71 pingint => '9,Node Ping interval',
72 nopings => '9,Ping Obs Count',
73 wantlogininfo => '0,Login Info Req,yesno',
74 wantgrid => '0,Show DX Grid,yesno',
75 wantann_talk => '0,Talklike Anns,yesno',
76 wantpc16 => '9,Want Users from node,yesno',
77 wantsendpc16 => '9,Send PC16,yesno',
78 wantroutepc19 => '9,Route PC19,yesno',
79 wantusstate => '0,Show US State,yesno',
80 wantdxcq => '0,Show CQ Zone,yesno',
81 wantdxitu => '0,Show ITU Zone,yesno',
82 wantgtk => '0,Want GTK interface,yesno',
83 wantpc9x => '0,Want PC9X interface,yesno',
84 lastoper => '9,Last for/oper,cldatetime',
85 nothere => '0,Not Here Text',
86 registered => '9,Registered?,yesno',
87 prompt => '0,Required Prompt',
88 version => '1,Version',
90 believe => '1,Believable nodes,parray',
91 lastping => '1,Last Ping at,ptimelist',
92 maxconnect => '1,Max Connections',
93 width => '0,Preferred Width',
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
119 my ($pkg, $fn, $mode) = @_;
121 confess "need a filename in User" if !$fn;
130 # eval "use Storable qw(nfreeze thaw)";
135 dbg("the module Storable appears to be missing!!");
136 dbg("trying to continue in compatibility mode (this may fail)");
137 dbg("please install Storable from CPAN as soon as possible");
139 import Storable qw(nfreeze thaw);
143 $convert++ if -e "$fn.v2" && !-e $ufn;
147 $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?]";
149 $dbm = tie (%u, 'DB_File', $ufn, O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!) [rebuild it from user_asc?]";
152 die "Cannot open $ufn ($!)\n" unless $dbm;
154 $lru = LRU->newbase("DXUser", $lrusize);
156 # do a conversion if required
157 if ($dbm && $convert) {
158 my ($key, $val, $action, $count, $err) = ('','',0,0,0);
161 dbg("Converting the User File to V3 ");
162 dbg("This will take a while, I suggest you go and have cup of strong tea");
163 my $odbm = tie (%oldu, 'DB_File', "$fn.v2", O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn.v2 ($!) [rebuild it from user_asc?]";
164 for ($action = R_FIRST; !$odbm->seq($key, $val, $action); $action = R_NEXT) {
165 my $ref = asc_decode($val);
175 dbg("Conversion completed $count records $err errors");
184 confess "need a filename in User" if !$fn;
185 $fn .= $v3 ? ".v3" : ".v2";
190 # periodic processing
194 if ($main::systime > $lasttime + 15) {
196 $lasttime = $main::systime;
211 # new - create a new user
218 my $self = bless {call => $call, 'sort'=>'U'}, $pkg;
226 # $call =~ s/-\d+$//o;
228 # confess "can't create existing call $call in User\n!" if $u{$call};
230 my $self = $pkg->alloc($call);
236 # get - get an existing user - this seems to return a different reference everytime it is
245 # is it in the LRU cache?
246 my $ref = $lru->get($call);
247 return $ref if $ref && ref $ref eq 'DXUser';
250 unless ($dbm->get($call, $data)) {
251 $ref = eval{decode($data)};
253 if (!UNIVERSAL::isa($ref, 'DXUser')) {
254 dbg("DXUser::get: got strange answer from decode of $call". ref $ref. " ignoring");
257 # we have a reference and it *is* a DXUser
259 dbg("DXUser::get: no reference returned from decode of $call $! $@");
262 $lru->put($call, $ref);
269 # get an existing either from the channel (if there is one) or from the database
271 # It is important to note that if you have done a get (for the channel say) and you
272 # want access or modify that you must use this call (and you must NOT use get's all
273 # over the place willy nilly!)
280 my $dxchan = DXChannel::get($call);
282 my $ref = $dxchan->user;
283 return $ref if $ref && UNIVERSAL::isa($ref, 'DXUser');
285 dbg("DXUser::get_current: got invalid user ref for $call from dxchan $dxchan->{call} ". ref $ref. " ignoring");
291 # get all callsigns in the database
296 return (sort keys %u);
306 confess "Trying to put nothing!" unless $self && ref $self;
307 my $call = $self->{call};
310 delete $self->{annok} if $self->{annok};
311 delete $self->{dxok} if $self->{dxok};
313 $lru->put($call, $self);
314 my $ref = $self->encode;
315 $dbm->put($call, $ref);
321 goto &asc_encode unless $v3;
323 return nfreeze($self);
329 goto &asc_decode unless $v3;
334 # create a string from a user reference (in_ascii)
343 my $ref = bless {}, ref $self;
344 foreach my $k (qw(qth lat long qra sort call homenode node lastoper lastin)) {
345 $ref->{$k} = $self->{$k} if exists $self->{$k};
347 $ref->{name} = $self->{name} if exists $self->{name} && $self->{name} !~ /selfspot/i;
356 # create a hash from a string (in ascii)
362 $s =~ s/\%([0-9A-F][0-9A-F])/chr(hex($1))/eg;
372 # del - delete a user
378 my $call = $self->{call};
384 # close - close down a user
390 $self->{lastin} = time;
404 # return a list of valid elements
414 # export the database to an ascii file
420 my $basic_info_only = shift;
423 rename "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
424 rename "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
425 rename "$fn.oo", "$fn.ooo" if -e "$fn.oo";
426 rename "$fn.o", "$fn.oo" if -e "$fn.o";
427 rename "$fn", "$fn.o" if -e "$fn";
432 my $fh = new IO::File ">$fn" or return "cannot open $fn ($!)";
437 my $t = scalar localtime;
438 print $fh q{#!/usr/bin/perl
440 # The exported userfile for a DXSpider System
442 # Input file: $filename
448 # search local then perl directories
452 # root of directory tree for this system
454 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
456 unshift @INC, "$root/perl"; # this IS the right way round!
457 unshift @INC, "$root/local";
459 # try to detect a lockfile (this isn't atomic but
461 $lockfn = "$root/local/cluster.lck"; # lock file name
463 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
466 die "Lockfile ($lockfn) and process $pid exists - cluster must be stopped first\n" if kill 0, $pid;
477 $main::userfn = shift @ARGV;
478 print "user filename now $userfn\n";
481 DXUser->del_file($main::userfn);
482 DXUser->init($main::userfn, 1);
489 my $ref = asc_decode($f[1]);
494 print "# Error: $f[0]\t$f[1]\n";
498 DXUser->sync; DXUser->finish;
499 print "There are $count user records and $err errors\n";
501 print $fh "__DATA__\n";
503 for ($action = R_FIRST; !$dbm->seq($key, $val, $action); $action = R_NEXT) {
504 if (!is_callsign($key) || $key =~ /^0/) {
507 $eval =~ s/([\%\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
508 $ekey =~ s/([\%\x00-\x1f\x7f-\xff])/sprintf("%%%02X", ord($1))/eg;
509 LogDbg('DXCommand', "Export Error1: $ekey\t$eval");
510 eval {$dbm->del($key)};
511 dbg(carp("Export Error1: $ekey\t$eval\n$@")) if $@;
515 my $ref = decode($val);
517 my $t = $ref->{lastin} || 0;
518 if ($ref->{sort} eq 'U' && !$ref->{priv} && $main::systime > $t + $tooold) {
519 unless ($ref->{lat} && $ref->{long} || $ref->{qth} || $ref->{qra}) {
520 eval {$dbm->del($key)};
521 dbg(carp("Export Error2: $key\t$val\n$@")) if $@;
522 LogDbg('DXCommand', "$ref->{call} deleted, too old");
527 # only store users that are reasonably active or have useful information
528 print $fh "$key\t" . $ref->asc_encode($basic_info_only) . "\n";
531 LogDbg('DXCommand', "Export Error3: $key\t$val");
532 eval {$dbm->del($key)};
533 dbg(carp("Export Error3: $key\t$val\n$@")) if $@;
539 return "$count Users $del Deleted $err Errors ('sh/log Export' for details)";
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} eq 'U';
775 return $self->{sort} eq 'B';
781 return $self->{sort} eq 'S';
787 return $self->{sort} eq 'C';
793 return $self->{sort} eq 'X';
799 return $self->{sort} eq 'R';
805 return $self->{sort} eq 'A';
811 delete $self->{passwd};
817 delete $self->{passphrase};
824 $self->{believe} ||= [];
825 push @{$self->{believe}}, $call unless grep $_ eq $call, @{$self->{believe}};
832 if (exists $self->{believe}) {
833 $self->{believe} = [grep {$_ ne $call} @{$self->{believe}}];
834 delete $self->{believe} unless @{$self->{believe}};
841 return exists $self->{believe} ? @{$self->{believe}} : ();
848 $self->{lastping} ||= {};
849 $self->{lastping} = {} unless ref $self->{lastping};
850 my $b = $self->{lastping};
851 $b->{$call} = shift if @_;