SSID appears to work!
[spider.git] / cmd / set / node.pl
1 #
2 # set user type to 'A' for AK1A node
3 #
4 # Please note that this is only effective if the user is not on-line
5 #
6 # Copyright (c) 1998 - Dirk Koopman
7 #
8 # $Id$
9 #
10
11 my ($self, $line) = @_;
12 my @args = split /\s+/, $line;
13 my $call;
14 my @out;
15 my $user;
16 my $create;
17
18 return (0) if $self->priv < 5;
19
20 foreach $call (@args) {
21   $call = uc $call;
22   my $chan = DXChannel->get($call);
23   if ($chan) {
24         push @out, $self->msg('nodee1', $call);
25   } else {
26     $user = DXUser->get($call);
27         $create = !$user;
28         $user = DXUser->new($call) if $create;
29         if ($user) {
30           $user->sort('A');
31           $user->close();
32       push @out, $self->msg($create ? 'nodec' : 'node', $call);
33         } else {
34       push @out, $self->msg('e3', "Set Node", $call);
35         }
36   }
37 }
38 return (1, @out);