add CTY-3201 prefixes
[spider.git] / cmd / unset / registered.pl
diff --git a/cmd/unset/registered.pl b/cmd/unset/registered.pl
new file mode 100644 (file)
index 0000000..4876aea
--- /dev/null
@@ -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;
+       
+}
+