X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=blobdiff_plain;f=perl%2FDXUser.pm;h=08c5824a7f4f1b8508ff263c0452eaf25d92a5ce;hp=7ff5b2260d60ad7983ec0d859da1ea933323f958;hb=0824a94355e5fb2b4c379bb013d66466725629f5;hpb=2546ef0cfaaca39e65985e414258071a636979af diff --git a/perl/DXUser.pm b/perl/DXUser.pm index 7ff5b226..08c5824a 100644 --- a/perl/DXUser.pm +++ b/perl/DXUser.pm @@ -15,6 +15,9 @@ use MLDBM qw(DB_File); use Fcntl; use Carp; +use strict; +use vars qw(%u $dbm $filename %valid); + %u = undef; $dbm = undef; $filename = undef; @@ -43,6 +46,7 @@ $filename = undef; reg => '0,Registered?,yesno', # is this user registered? ); +no strict; sub AUTOLOAD { my $self = shift; @@ -67,10 +71,12 @@ sub init my ($pkg, $fn) = @_; die "need a filename in User" if !$fn; - $dbm = tie %u, MLDBM, $fn, O_CREAT|O_RDWR, 0666 or die "can't open user file: $fn ($!)"; + $dbm = tie (%u, MLDBM, $fn, O_CREAT|O_RDWR, 0666) or die "can't open user file: $fn ($!)"; $filename = $fn; } +use strict; + # # close the system # @@ -106,10 +112,21 @@ sub new sub get { - my ($pkg, $call) = @_; + my $pkg = shift; + my $call = uc shift; + $call =~ s/-\d+//o; # strip ssid return $u{$call}; } +# +# get all callsigns in the database +# + +sub get_all_calls +{ + return keys %u; +} + # # get an existing either from the channel (if there is one) or from the database # @@ -120,7 +137,10 @@ sub get sub get_current { - my ($pkg, $call) = @_; + my $pkg = shift; + my $call = uc shift; + $call =~ s/-\d+//o; # strip ssid + my $dxchan = DXChannel->get($call); return $dxchan->user if $dxchan; return $u{$call};