X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=blobdiff_plain;f=cmd%2Funset%2Fregistered.pl;fp=cmd%2Funset%2Fregistered.pl;h=4876aea2a7d6f9740f413eda68422f7f389b0afe;hp=0000000000000000000000000000000000000000;hb=66a5726687662b1a4726ac1de972340ac856ef7a;hpb=4b207544da78b182bd12e94eab01451694749012 diff --git a/cmd/unset/registered.pl b/cmd/unset/registered.pl new file mode 100644 index 00000000..4876aea2 --- /dev/null +++ b/cmd/unset/registered.pl @@ -0,0 +1,82 @@ +# +# show/registered +# +# show all registered users +# +# Copyright (c) 2001 Dirk Koopman G1TLH +# +# +# + +sub handle +{ + my ($self, $line) = @_; + return (1, $self->msg('e5')) unless $self->priv >= 9; + + my @out; + + use DB_File; + + if ($line) { + $line =~ s/[^\w\-\/]+//g; + $line = "\U\Q$line"; + } + + if ($self->{_nospawn}) { + @out = generate($self, $line); + } else { + @out = $self->spawn_cmd("show/registered $line", sub { return (generate($self, $line)); }); + } + + return (1, @out); +} + +sub generate +{ + my $self = shift; + my $line = shift; + my @out; + my @val; + +# dbg("set/register line: $line"); + + my %call = (); + $call{$_} = 1 for split /\s+/, $line; + delete $call{'ALL'}; + + my ($action, $count, $key, $data) = (0,0,0,0); + unless (keys %call) { + for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) { + if ($data =~ m{registered}) { + $call{$key} = 1; # possible candidate + } + } + } + + foreach $key (sort keys %call) { + my $u = DXUser::get_current($key); + if ($u && defined (my $r = $u->registered)) { + push @val, "${key}($r)"; + ++$count; + } + } + + my @l; + push @out, "Registration is " . ($main::reqreg ? "Required" : "NOT Required"); + foreach my $call (@val) { + if (@l >= 5) { + push @out, sprintf "%-14s %-14s %-14s %-14s %-14s", @l; + @l = (); + } + push @l, $call; + } + if (@l) { + push @l, "" while @l < 5; + push @out, sprintf "%-14s %-14s %-14s %-14s %-14s", @l; + } + + push @out, $self->msg('rec', $count); + return @out; + +} +