12. added an 'auto rcmd <node> for/oper <call>' for people I can see on the
[spider.git] / perl / DXUser.pm
index a8fb7788c2e5406081f190c600970479c0a0b68b..6b1db816665c46f276cb5b3662b8918cc29db299 100644 (file)
@@ -11,16 +11,20 @@ package DXUser;
 require Exporter;
 @ISA = qw(Exporter);
 
+use DXLog;
 use DB_File;
+use Data::Dumper;
 use Fcntl;
-use Carp;
+use IO::File;
+use DXDebug;
 
 use strict;
-use vars qw(%u $dbm $filename %valid);
+use vars qw(%u $dbm $filename %valid $lastoperinterval);
 
 %u = ();
 $dbm = undef;
 $filename = undef;
+$lastoperinterval = 30*24*60*60;
 
 # hash of valid elements and a simple prompt
 %valid = (
@@ -42,8 +46,8 @@ $filename = undef;
                  node => '0,Last Node',
                  homenode => '0,Home Node',
                  lockout => '9,Locked out?,yesno',     # won't let them in at all
-                 dxok => '9,DX Spots?,yesno', # accept his dx spots?
-                 annok => '9,Announces?,yesno', # accept his announces?
+                 dxok => '9,Accept DX Spots?,yesno', # accept his dx spots?
+                 annok => '9,Accept Announces?,yesno', # accept his announces?
                  reg => '0,Registered?,yesno', # is this user registered?
                  lang => '0,Language',
                  hmsgno => '0,Highest Msgno',
@@ -52,9 +56,17 @@ $filename = undef;
                  wantbeep => '0,Rec Beep,yesno',
                  wantann => '0,Rec Announce,yesno',
                  wantwwv => '0,Rec WWV,yesno',
+                 wantwcy => '0,Rec WCY,yesno',
+                 wantecho => '0,Rec Echo,yesno',
                  wanttalk => '0,Rec Talk,yesno',
                  wantwx => '0,Rec WX,yesno',
                  wantdx => '0,Rec DX Spots,yesno',
+                 pagelth => '0,Current Pagelth',
+                 pingint => '9,Node Ping interval',
+                 nopings => '9,Ping Obs Count',
+                 wantlogininfo => '9,Login info req,yesno',
+                 wantgrid => '0,DX Grid Info,yesno',
+                 lastoper => '9,Last for/oper,cldatetime',
                 );
 
 no strict;
@@ -113,15 +125,12 @@ sub new
        my $call = uc shift;
        #  $call =~ s/-\d+$//o;
   
-       confess "can't create existing call $call in User\n!" if $u{$call};
+#      confess "can't create existing call $call in User\n!" if $u{$call};
 
        my $self = bless {}, $pkg;
        $self->{call} = $call;
        $self->{'sort'} = 'U';
-       $self->{dxok} = 1;
-       $self->{annok} = 1;
-       $self->{lang} = $main::lang;
-       $u{call} = $self->encode();
+       $self->put;
        return $self;
 }
 
@@ -164,8 +173,7 @@ sub get_current
   
        my $dxchan = DXChannel->get($call);
        return $dxchan->user if $dxchan;
-       my $s = $u{$call};
-       return $s ? decode($s) : undef;
+       return get($pkg, $call);
 }
 
 #
@@ -175,8 +183,16 @@ sub get_current
 sub put
 {
        my $self = shift;
+       confess "Trying to put nothing!" unless $self && ref $self;
        my $call = $self->{call};
+       # delete all instances of this 
+       for ($dbm->get_dup($call)) {
+               $dbm->del_dup($call, $_);
+       }
+       delete $self->{annok} if $self->{annok};
+       delete $self->{dxok} if $self->{dxok};
        $u{$call} = $self->encode();
+       $dbm->sync;
 }
 
 # 
@@ -185,27 +201,11 @@ sub put
 sub encode
 {
        my $self = shift;
-       my $out;
-       my $f;
-
-       $out = "bless( { ";
-       for $f (sort keys %$self) {
-               my $val = $$self{$f};
-           if (ref $val) {          # it's an array (we think)
-                       $out .= "'$f'=>[ ";
-                       foreach (@$val) {
-                               my $s = $_;
-                               $out .= "'$s',";
-                       }
-                       $out .= " ],";
-           } else {
-                       $val =~ s/'/\\'/og;
-                       $val =~ s/\@/\\@/og;
-                       $out .= "'$f'=>q{$val},";
-               }
-       }
-       $out .= " }, 'DXUser')";
-       return $out;
+       my $dd = new Data::Dumper([$self]);
+       $dd->Indent(0);
+       $dd->Terse(1);
+    $dd->Quotekeys($] < 5.005 ? 1 : 0);
+       return $dd->Dumpxs;
 }
 
 #
@@ -217,7 +217,8 @@ sub decode
        my $ref;
        $s = '$ref = ' . $s;
        eval $s;
-       confess $@ if $@;
+       Log('DXUser', $@) if $@;
+       $ref = undef if $@;
        return $ref;
 }
 
@@ -229,7 +230,11 @@ sub del
 {
        my $self = shift;
        my $call = $self->{call};
-       delete $u{$call};
+       # delete all instances of this 
+       for ($dbm->get_dup($call)) {
+               $dbm->del_dup($call, $_);
+       }
+       $dbm->sync;
 }
 
 #
@@ -252,6 +257,52 @@ sub fields
        return keys(%valid);
 }
 
+
+#
+# export the database to an ascii file
+#
+
+sub export
+{
+       my $fn = shift;
+       
+       # save old ones
+        rename "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
+        rename "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
+        rename "$fn.oo", "$fn.ooo" if -e "$fn.oo";
+        rename "$fn.o", "$fn.oo" if -e "$fn.o";
+        rename "$fn", "$fn.o" if -e "$fn";
+
+       my $count = 0;
+       my $fh = new IO::File ">$fn" or return "cannot open $fn ($!)";
+       if ($fh) {
+               my $ref;
+               my $key;
+               my $action;
+               my $t = scalar localtime;
+               print $fh "#!/usr/bin/perl
+#
+# The exported userfile for a DXSpider System
+#
+# Input file: $filename
+#       Time: $t
+#
+
+package DXUser;
+
+%u = (
+";
+
+               for ($action = R_FIRST; !$dbm->seq($key, $ref, $action); $action = R_NEXT) {
+                       print $fh "'$key' => $ref,\n";
+                       ++$count;
+               } 
+               print $fh ");\n#\n# there were $count records\n#\n";
+               $fh->close;
+       } 
+       return $count;
+}
+
 #
 # group handling
 #
@@ -335,9 +386,10 @@ sub _want
 {
        my $n = shift;
        my $self = shift;
+       my $val = shift;
        my $s = "want$n";
-       return $self->{$n} = shift if @_;
-       return defined $self->{$n} ? $self->{$n} : 1;
+       $self->{$s} = $val if defined $val;
+       return exists $self->{$s} ? $self->{$s} : 1;
 }
 
 sub wantbeep
@@ -355,6 +407,16 @@ sub wantwwv
        return _want('wwv', @_);
 }
 
+sub wantwcy
+{
+       return _want('wcy', @_);
+}
+
+sub wantecho
+{
+       return _want('echo', @_);
+}
+
 sub wantwx
 {
        return _want('wx', @_);
@@ -365,5 +427,75 @@ sub wantdx
        return _want('dx', @_);
 }
 
+sub wanttalk
+{
+       return _want('talk', @_);
+}
+
+sub wantgrid
+{
+       return _want('grid', @_);
+}
+
+sub wantlogininfo
+{
+       my $self = shift;
+       my $n = shift;
+       $self->{wantlogininfo} = $n if $n;
+       return exists $self->{wantlogininfo} ? $self->{wantlogininfo} : 0;
+}
+
+sub is_node
+{
+       my $self = shift;
+       return $self->{sort} =~ /[ACRSX]/;
+}
+
+sub is_user
+{
+       my $self = shift;
+       return $self->{sort} eq 'U';
+}
+
+sub is_bbs
+{
+       my $self = shift;
+       return $self->{sort} eq 'B';
+}
+
+sub is_spider
+{
+       my $self = shift;
+       return $self->{sort} eq 'S';
+}
+
+sub is_clx
+{
+       my $self = shift;
+       return $self->{sort} eq 'C';
+}
+
+sub is_dxnet
+{
+       my $self = shift;
+       return $self->{sort} eq 'X';
+}
+
+sub is_arcluster
+{
+       my $self = shift;
+       return $self->{sort} eq 'R';
+}
+
+sub is_ak1a
+{
+       my $self = shift;
+       return $self->{sort} eq 'A';
+}
 1;
 __END__
+
+
+
+
+