Fix all the DXUser API changes to use JSON
[spider.git] / cmd / show / lockout.pl
index 04d1ef12fca5529f62e447b032e0e2b82d7407cd..acfb2b09c7afaa770939678a7a1e36457da1e65c 100644 (file)
@@ -5,27 +5,86 @@
 #
 # Copyright (c) 2000 Dirk Koopman G1TLH
 #
-# $Id$
 #
+#
+
+sub handle
+{
+       my ($self, $line) = @_;
+       return (1, $self->msg('e5')) unless $self->priv >= 9;
+
+       my @out;
+
+       if ($line) {
+               $line =~ s/[^\w\-\/]+//g;
+               $line = "\U\Q$line";
+       }
+
+       if ($self->{_nospawn}) {
+               @out = generate($self, $line);
+       } else {
+               @out = $self->spawn_cmd("show/lockout $line", sub { return (generate($self, $line)); });
+       }
+       return (1, $self->msg('lockoutuse')) unless $line;
+}
+
 
-my ($self, $line) = @_;
-return (1, $self->msg('e5')) unless $self->priv >= 9;
+sub generate
+{
+       my $self = shift;
+       my $line = shift;
+       my @out;
+       my @val;
+       #       my ($action, $count, $key, $data) = (0,0,0,0);
+       #       eval qq{for (\$action = DXUser::R_FIRST, \$count = 0; !\$DXUser::dbm->seq(\$key, \$data, \$action); \$action = DXUser::R_NEXT) {
+       #       if (\$data =~ m{lockout}) {
+       #               if (\$line eq 'ALL' || \$key =~ /^$line/) {
+       #                       my \$ur = DXUser::get_current(\$key);
+       #                       if (\$ur && \$ur->lockout) {
+       #                               push \@val, \$key;
+       #                               ++\$count;
+       #                       }
+       #               }
+       #       }
 
-my @out;
+#      $DB::single = 1;
+       
+       my @val;
+       if ($line eq 'ALL') {
+               @val = DXUser::scan(sub {
+                                                               my $k = shift;
+                                                               my $l = shift;
+                                                               # cheat, don't decode because we can easily pull it out from the json test
+                                                               return $l =~ m{"lockout":1} ? $k : ();
+                                                       });
 
-use DB_File;
+       } else {
+               for my $call (split /\s+/, $line) {
+                       my $l = DXUser::get($call, 1);
+                       next unless $l;
+                       next unless $l =~ m{"lockout":1};
+                       push @val, $call; 
+               }
+       }
 
-my ($action, $count, $key, $data) = (0,0,0,0);
-for ($action = DXUser::R_FIRST, $count = 0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
-       if ($data =~ m{lockout =>}) {
-               my $u = DXUser->get_current($key);
-               if ($u && $u->lockout) {
-                       push @out, $key;
-                       ++$count;
+       my $count = @val;
+       my @l;
+       foreach my $call (@val) {
+               if (@l >= 5) {
+                       push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l;
+                       @l = ();
                }
+               push @l, $call;
+       }
+       if (@l) {
+               push @l, "" while @l < 5;
+               push @out, sprintf "%-12s %-12s %-12s %-12s %-12s", @l;
        }
-} 
 
-return (1, @out, $self->msg('rec', $count));
+       push @out, $@ if $@;
+       push @out, $self->msg('rec', $count);
+       return @out;
+}
+