add missing set/unset wcy commands
authorminima <minima>
Sat, 3 Mar 2001 14:23:36 +0000 (14:23 +0000)
committerminima <minima>
Sat, 3 Mar 2001 14:23:36 +0000 (14:23 +0000)
cmd/set/wcy.pl [new file with mode: 0644]
cmd/unset/wcy.pl [new file with mode: 0644]

diff --git a/cmd/set/wcy.pl b/cmd/set/wcy.pl
new file mode 100644 (file)
index 0000000..4746112
--- /dev/null
@@ -0,0 +1,27 @@
+#
+# set the wcy flag
+#
+# Copyright (c) 2001 - Dirk Koopman
+#
+# $Id$
+#
+
+my ($self, $line) = @_;
+my @args = split /\s+/, $line;
+my $call;
+my @out;
+
+@args = $self->call if (!@args || $self->priv < 9);
+
+foreach $call (@args) {
+  $call = uc $call;
+  my $chan = DXChannel->get($call);
+  if ($chan) {
+    $chan->wcy(1);
+    $chan->user->wantwcy(1);
+       push @out, $self->msg('wcys', $call);
+  } else {
+    push @out, $self->msg('e3', "Set WCY", $call);
+  }
+}
+return (1, @out);
diff --git a/cmd/unset/wcy.pl b/cmd/unset/wcy.pl
new file mode 100644 (file)
index 0000000..965a3d3
--- /dev/null
@@ -0,0 +1,27 @@
+#
+# unset the wcy flag
+#
+# Copyright (c) 2001 - Dirk Koopman
+#
+# $Id$
+#
+
+my ($self, $line) = @_;
+my @args = split /\s+/, $line;
+my $call;
+my @out;
+
+@args = $self->call if (!@args || $self->priv < 9);
+
+foreach $call (@args) {
+  $call = uc $call;
+  my $chan = DXChannel->get($call);
+  if ($chan) {
+    $chan->wcy(0);
+    $chan->user->wantwcy(0);
+       push @out, $self->msg('wcyu', $call);
+  } else {
+    push @out, $self->msg('e3', "Unset WCY", $call);
+  }
+}
+return (1, @out);