X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Frbn.pl;fp=cmd%2Fset%2Frbn.pl;h=2f1ff07ad889d3ff198819ab24620cfaabb84890;hb=dd73f6f34ce7f3e142e480dfb7153611d87f509b;hp=0000000000000000000000000000000000000000;hpb=fa27020ac9e6e3e8b64a2e82351eb00487b04bfb;p=spider.git diff --git a/cmd/set/rbn.pl b/cmd/set/rbn.pl new file mode 100644 index 00000000..2f1ff07a --- /dev/null +++ b/cmd/set/rbn.pl @@ -0,0 +1,59 @@ +# +# set user type to 'S' for Spider node +# +# Please note that this is only effective if the user is not on-line +# +# Copyright (c) 1998 - Dirk Koopman +# +# +# + +my ($self, $line) = @_; +my @args = split /\s+/, $line; +my $call; +my @out; +my $user; +my $create; + +return (1, $self->msg('e5')) if $self->priv < 5; + +foreach $call (@args) { + $call = uc $call; + if ($call eq $main::myalias) { + push @out, $self->msg('e11', $call); + next; + } + if ($call eq $main::myalias) { + push @out, $self->msg('e11', $call); + next; + } + my $chan = DXChannel::get($call); + if ($chan) { + push @out, $self->msg('nodee1', $call); + } else { + $user = DXUser::get($call); + $create = !$user; + $user = DXUser->new($call) if $create; + if ($user) { + $user->sort('N'); + $user->homenode($main::mycall); + $user->lockout(0); + $user->priv(0) unless $user->priv; + $user->close(); + push @out, $self->msg($create ? 'nodenc' : 'noden', $call); + } else { + push @out, $self->msg('e3', "Set RBN", $call); + } + } +} +return (1, @out); + + + + + + + + + +