]> git.donarmstrong.com Git - infobot.git/blob - src/Modules/UserDCC.pl
compress config params as muc has possible per line
[infobot.git] / src / Modules / UserDCC.pl
1 #
2 #  UserDCC.pl: User Commands, DCC CHAT.
3 #      Author: dms
4 #     Version: v0.2 (20010119)
5 #     Created: 20000707 (from UserExtra.pl)
6 #
7
8 if (&IsParam("useStrict")) { use strict; }
9
10 sub userDCC {
11     # hrm...
12     $message =~ s/\s+$//;
13
14     ### for all users.
15     # quit.
16     if ($message =~ /^(exit|quit)$/i) {
17         # do ircII clients support remote close? if so, cool!
18         &status("userDCC: quit called. FIXME");
19         &dcc_close($who);
20         &status("hrmm....");
21
22         return;
23     }
24
25     # who.
26     if ($message =~ /^who$/) {
27         my $count = scalar(keys %{$dcc{'CHAT'}});
28         my $dccCHAT = $message;
29
30         &pSReply("Start of who ($count users).");
31         foreach (keys %{$dcc{'CHAT'}}) {
32             &pSReply("=> $_");
33         }
34         &pSReply("End of who.");
35
36         return;
37     }
38
39     ### for those users with enough flags.
40
41     # 4op.
42     if ($message =~ /^4op(\s+($mask{chan}))?$/i) {
43         return unless (&hasFlag("o"));
44
45         my $chan = $2;
46
47         if ($chan eq "") {
48             &help("4op");
49             return;
50         }
51
52         if (!$channels{$chan}{'o'}{$ident}) {
53             &msg($who, "i don't have ops on $chan to do that.");
54             return;
55         }
56
57         # on non-4mode(<4) servers, this may be exploited.
58         if ($channels{$chan}{'o'}{$who}) {
59             rawout("MODE $chan -o+o-o+o". (" $who" x 4));
60         } else {
61             rawout("MODE $chan +o-o+o-o". (" $who" x 4));
62         }
63
64         return;
65     }
66
67     # backlog.
68     if ($message =~ /^backlog(\s+(.*))?$/i) {
69         return unless (&hasFlag("o"));
70         return unless (&hasParam("backlog"));
71         my $num = $2;
72         my $max = $param{'backlog'};
73
74         if (!defined $num) {
75             &help("backlog");
76             return;
77         } elsif ($num !~ /^\d+/) {
78             &msg($who, "error: argument is not positive integer.");
79             return;
80         } elsif ($num > $max or $num < 0) {
81             &msg($who, "error: argument is out of range (max $max).");
82             return;
83         }
84
85         &msg($who, "Start of backlog...");
86         for (0..$num-1) {
87             sleep 1 if ($_ % 4 == 0 and $_ != 0);
88             $conn->privmsg($who, "[".($_+1)."]: $backlog[$max-$num+$_]");
89         }
90         &msg($who, "End of backlog.");
91
92         return;
93     }
94
95     # dump variables.
96     if ($message =~ /^dumpvars$/i) {
97         return unless (&hasFlag("o"));
98         return '' unless (&IsParam("dumpvars"));
99
100         &status("Dumping all variables...");
101         &dumpallvars();
102
103         return;
104     }
105
106     # kick.
107     if ($message =~ /^kick(\s+(\S+)(\s+(\S+))?)?/) {
108         return unless (&hasFlag("o"));
109         my ($nick,$chan) = (lc $2,lc $4);
110
111         if ($nick eq "") {
112             &help("kick");
113             return;
114         }
115
116         if (&validChan($chan) == 0) {
117             &msg($who,"error: invalid channel \002$chan\002");
118             return;
119         }
120
121         if (&IsNickInChan($nick,$chan) == 0) {
122             &msg($who,"$nick is not in $chan.");
123             return;
124         }
125
126         &kick($nick,$chan);
127
128         return;
129     }
130
131     # kick.
132     if ($message =~ /^mode(\s+(.*))?$/) {
133         return unless (&hasFlag("m"));
134         my ($chan,$mode) = split /\s+/,$2,2;
135
136         if ($chan eq "") {
137             &help("mode");
138             return;
139         }
140
141         if (&validChan($chan) == 0) {
142             &msg($who,"error: invalid channel \002$chan\002");
143             return;
144         }
145
146         if (!$channels{$chan}{o}{$ident}) {
147             &msg($who,"error: don't have ops on \002$chan\002");
148             return;
149         }
150
151         &mode($chan, $mode);
152
153         return;
154     }
155
156     # part.
157     if ($message =~ /^part(\s+(\S+))?$/i) {
158         return unless (&hasFlag("o"));
159         my $jchan = $2;
160
161         if ($jchan !~ /^$mask{chan}$/) {
162             &msg($who, "error, invalid chan.");
163             &help("part");
164             return;
165         }
166
167         if (!&validChan($jchan)) {
168             &msg($who, "error, I'm not on that chan.");
169             return;
170         }
171
172         &msg($jchan, "Leaving. (courtesy of $who).");
173         &part($jchan);
174         return;
175     }
176
177     # lobotomy. sometimes we want the bot to be _QUIET_.
178     if ($message =~ /^(lobotomy|bequiet)$/i) {
179         return unless (&hasFlag("o"));
180
181         if ($lobotomized) {
182             &performReply("i'm already lobotomized");
183         } else {
184             &performReply("i have been lobotomized");
185             $lobotomized = 1;
186         }
187
188         return;
189     }
190
191     # unlobotomy.
192     if ($message =~ /^(unlobotomy|benoisy)$/i) {
193         return unless (&hasFlag("o"));
194         if ($lobotomized) {
195             &performReply("i have been unlobotomized, woohoo");
196             $lobotomized = 0;
197         } else {
198             &performReply("i'm not lobotomized");
199         }
200         return;
201     }
202
203     # op.
204     if ($message =~ /^op(\s+(.*))?$/i) {
205         return unless (&hasFlag("o"));
206         my ($opee) = lc $2;
207         my @chans;
208
209         if ($opee =~ / /) {
210             if ($opee =~ /^(\S+)\s+(\S+)$/) {
211                 $opee  = $1;
212                 @chans = ($2);
213                 if (!&validChan($2)) {
214                     &msg($who,"error: invalid chan ($2).");
215                     return;
216                 }
217             } else {
218                 &msg($who,"error: invalid params.");
219                 return;
220             }
221         } else {
222             @chans = keys %channels;
223         }
224
225         my $found = 0;
226         my $op = 0;
227         foreach (@chans) {
228             next unless (&IsNickInChan($opee,$_));
229             $found++;
230             if ($channels{$_}{'o'}{$opee}) {
231                 &status("op: $opee already has ops on $_");
232                 next;
233             }
234             $op++;
235
236             &status("opping $opee on $_ at ${who}'s request");
237             &pSReply("opping $opee on $_");
238             &op($_, $opee);
239         }
240
241         if ($found != $op) {
242             &status("op: opped on all possible channels.");
243         } else {
244             &DEBUG("found => '$found'.");
245             &DEBUG("op => '$op'.");
246         }
247
248         return;
249     }
250
251     # deop.
252     if ($message =~ /^deop(\s+(.*))?$/i) {
253         return unless (&hasFlag("o"));
254         my ($opee) = lc $2;
255         my @chans;
256
257         if ($opee =~ / /) {
258             if ($opee =~ /^(\S+)\s+(\S+)$/) {
259                 $opee  = $1;
260                 @chans = ($2);
261                 if (!&validChan($2)) {
262                     &msg($who,"error: invalid chan ($2).");
263                     return;
264                 }
265             } else {
266                 &msg($who,"error: invalid params.");
267                 return;
268             }
269         } else {
270             @chans = keys %channels;
271         }
272
273         my $found = 0;
274         my $op = 0;
275         foreach (@chans) {
276             next unless (&IsNickInChan($opee,$_));
277             $found++;
278             if (!exists $channels{$_}{'o'}{$opee}) {
279                 &status("deop: $opee already has no ops on $_");
280                 next;
281             }
282             $op++;
283
284             &status("deopping $opee on $_ at ${who}'s request");
285             &deop($_, $opee);
286         }
287
288         if ($found != $op) {
289             &status("deop: deopped on all possible channels.");
290         } else {
291             &DEBUG("deop: found => '$found'.");
292             &DEBUG("deop: op => '$op'.");
293         }
294
295         return;
296     }
297
298     # say.
299     if ($message =~ s/^say\s+(\S+)\s+(.*)//) {
300         return unless (&hasFlag("o"));
301         my ($chan,$msg) = (lc $1, $2);
302         &DEBUG("chan => '$1', msg => '$msg'.");
303
304         if (&validChan($chan)) {
305             &msg($chan, $2);
306         } else {
307             &msg($who,"i'm not on \002$1\002, sorry.");
308         }
309         return;
310     }
311
312     # die.
313     if ($message =~ /^die$/) {
314         return unless (&hasFlag("n"));
315
316         &doExit();
317
318         &status("Dying by $who\'s request");
319         exit 0;
320     }
321
322     # global factoid substitution.
323     if ($message =~ m|^s([/,#])(.+?)\1(.*?)\1;?\s*$|) {
324         my ($delim,$op,$np) = ($1, $2, $3);
325         return unless (&hasFlag("n"));
326         ### TODO: support flags to do full-on global.
327
328         # incorrect format.
329         if ($np =~ /$delim/) {
330             &performReply("looks like you used the delimiter too many times. You may want to use a different delimiter, like ':' or '#'.");
331             return;
332         }
333
334         ### TODO: fix up $op to support mysql/pgsql/dbm(perl)
335         ### TODO: => add db/sql specific function to fix this.
336         my @list = &searchTable("factoids", "factoid_key",
337                         "factoid_value", $op);
338
339         if (!scalar @list) {
340             &performReply("Expression didn't match anything.");
341             return;
342         }
343
344         if (scalar @list > 100) {
345             &performReply("regex found more than 100 matches... not doing.");
346             return;
347         }
348
349         &status("gsubst: going to alter ".scalar(@list)." factoids.");
350         &performReply("going to alter ".scalar(@list)." factoids.");
351
352         my $error = 0;
353         foreach (@list) {
354             my $faqtoid = $_;
355
356             next if (&IsLocked($faqtoid) == 1);
357             my $result = &getFactoid($faqtoid);
358             my $was = $result;
359             &DEBUG("was($faqtoid) => '$was'.");
360
361             # global global
362             # we could support global local (once off).
363             if ($result =~ s/\Q$op/$np/gi) {
364                 if (length $result > $param{'maxDataSize'}) {
365                     &performReply("that's too long (or was long)");
366                     return;
367                 }
368                 &setFactInfo($faqtoid, "factoid_value", $result);
369                 &status("update: '$faqtoid' =is=> '$result'; was '$was'");
370             } else {
371                 &WARN("subst: that's weird... thought we found the string ($op) in '$faqtoid'.");
372                 $error++;
373             }
374         }
375
376         if ($error) {
377             &ERROR("Some warnings/errors?");
378         }
379
380         &performReply("Ok... did s/$op/$np/ for ".
381                                 (scalar(@list) - $error)." factoids");
382
383         return;
384     }
385
386     # jump.
387     if ($message =~ /^jump(\s+(\S+))?$/i) {
388         return unless (&hasFlag("n"));
389
390         if ($2 eq "") {
391             &help("jump");
392             return;
393         }
394
395         my ($server,$port);
396         if ($2 =~ /^(\S+)(:(\d+))?$/) {
397             $server = $1;
398             $port   = $3 || 6667;
399         } else {
400             &msg($who,"invalid format.");
401             return;
402         }
403
404         &status("jumping servers... $server...");
405         &rawout("QUIT :jumping to $server");
406
407         if (&irc($server,$port) == 0) {
408             &ircloop();
409         }
410     }
411
412     # reload.
413     if ($message =~ /^reload$/i) {
414         return unless (&hasFlag("n"));
415
416         &status("USER reload $who");
417         &pSReply("reloading...");
418         &reloadAllModules();
419         &pSReply("reloaded.");
420
421         return;
422     }
423
424     # rehash.
425     if ($message =~ /^rehash$/) {
426         return unless (&hasFlag("n"));
427
428         &msg($who,"rehashing...");
429         &restart("REHASH");
430         &status("USER rehash $who");
431         &msg($who,"rehashed");
432
433         return;
434     }
435
436     #####
437     ##### USER//CHAN SPECIFIC CONFIGURATION COMMANDS
438     #####
439
440     if ($message =~ /^chaninfo(\s+(.*))?$/) {
441         my @args = split /[\s\t]+/, $2; # hrm.
442
443         if (scalar @args != 1) {
444             &help("chaninfo");
445             return;
446         }
447
448         if (!exists $chanconf{$args[0]}) {
449             &pSReply("no such channel $args[0]");
450             return;
451         }
452
453         &pSReply("showing channel conf.");
454         foreach (sort keys %{ $chanconf{$args[0]} }) {
455             &pSReply("$chan: $_ => $chanconf{$args[0]}{$_}");
456         }
457         &pSReply("End of chaninfo.");
458
459         return;
460     }
461
462     # +chan.
463     if ($message =~ /^(chanset|\+chan)(\s+(.*?))?$/) {
464         my $cmd  = $1;
465         my $args = $3;
466
467         if (!defined $args) {
468             &help($cmd);
469             return;
470         }
471
472         my ($chan);
473         if ($args =~ s/^($mask{chan})\s*//) {
474             $chan       = $1;
475             &DEBUG("chan => $chan.");
476         } else {
477             &DEBUG("no chan arg; setting to default.");
478             $chan       = "_default";
479         }
480
481         my($what,$val) = split /[\s\t]+/, $args, 2;
482
483         ### TODO: "cannot set values without +m".
484         return unless (&hasFlag("m"));
485
486         if ($cmd eq "+chan") {
487             &DEBUG("setting _time_added...");
488             $chanconf{$chan}{_time_added}       = time();
489
490             &pSReply("Joining $chan...");
491             &joinchan($chan);
492
493             return;
494         }
495
496         if (!exists $chanconf{$chan}) {
497             &pSReply("no such channel $chan");
498             return;
499         }
500
501         my $update      = 0;
502         ### TODO: $what can be undefined. fix it!
503         if ($what =~ /^\+(\S+)/) {
504             my $was     = $chanconf{$chan}{$1};
505             $was        = ($was) ? "; was '$was'" : "";
506             &pSReply("Setting $1 for $chan to '1'$was.");
507
508             $chanconf{$chan}{$1} = 1;
509
510             $update++;
511         } elsif ($what =~ /^\-(\S+)/) {
512             my $was     = $chanconf{$chan}{$1};
513             $was        = ($was) ? "; was '$was'" : "";
514             &pSReply("Setting $1 for $chan to '0'$was.");
515
516             $chanconf{$chan}{$1} = 0;
517
518             $update++;
519         } elsif (defined $val) {
520             my $was     = $chanconf{$chan}{$what};
521             $was        = ($was) ? "; was '$was'" : "";
522             &pSReply("Setting $what for $chan to '$val'$was.");
523
524             $chanconf{$chan}{$what} = $val;
525
526             $update++;
527         } elsif (defined $what) {
528             if (exists $chanconf{$chan}{$what}) {
529                 &pSReply("$what for $chan is '$chanconf{$chan}{$what}'");
530             } else {
531                 &pSReply("$what for $chan is not set.'");
532             }
533         }
534
535         if ($update) {
536             $utime_chanfile = time();
537             $ucount_chanfile++;
538             return;
539         }
540
541         if ($cmd eq "chanset" and !defined $what) {
542             &DEBUG("showing channel conf.");
543
544             foreach $chan ($chan, "_default") {
545                 &pSReply("chan: $chan");
546                 ### TODO: merge 2 or 3 per line.
547                 my @items;
548                 my $str = "";
549                 foreach (sort keys %{ $chanconf{$chan} }) {
550                     my $newstr = join(', ', @items);
551                     if (length $newstr > 60) {
552                         &pSReply("    $str");
553                         @items = ();
554                     }
555                     $str = $newstr;
556                     push(@items, "$_ => $chanconf{$chan}{$_}");
557                 }
558             }
559
560             return;
561         }
562
563         return;
564     }
565
566     if ($message =~ /^(chanunset|\-chan)(\s+(.*))?$/) {
567         return unless (&hasFlag("m"));
568         my $args        = $3;
569
570         if (!defined $args) {
571             &help("chanunset");
572             return;
573         }
574
575         my ($chan);
576         my $delete      = 0;
577         if ($args =~ s/^(\-)?($mask{chan})\s*//) {
578             $chan       = $2;
579             $delete     = ($1) ? 1 : 0;
580             &DEBUG("chan => $chan.");
581         } else {
582             &DEBUG("no chan arg; setting to default.");
583             $chan       = "_default";
584         }
585
586         if (!exists $chanconf{$chan}) {
587             &pSReply("no such channel $chan");
588             return;
589         }
590
591         if ($args ne "") {
592             if (&getChanConf($args,$chan)) {
593                 &pSReply("Unsetting channel ($chan) option $args. (was $chanconf{$chan}{$args})");
594                 undef $chanconf{$chan}{$args};
595
596             } else {
597                 &pSReply("$args does not exist for $chan");
598             }
599
600             return;
601         }
602
603         if ($delete) {
604             &pSReply("Deleting channel $chan for sure!");
605             $utime_chanfile = time();
606             $ucount_chanfile++;
607
608             &part($chan);
609             &pSReply("Leaving $chan...");
610
611             delete $chanconf{$chan};
612         } else {
613             &pSReply("Prefix channel with '-' to delete for sure.");
614         }
615
616         return;
617     }
618
619
620     if ($message =~ /^chpass(\s+(.*))?$/) {
621         my(@args) = split /[\s\t]+/, $2 || '';
622
623         if (!scalar @args) {
624             &help("chpass");
625             return;
626         }
627
628         if (!&IsUser($args[0])) {
629             &pSReply("user $args[0] is not valid.");
630             return;
631         }
632
633         my $u = &getUser($who);
634
635         if (scalar @args == 1) {        # del pass.
636             if (!&IsFlag("m") and $who !~ /^\Q$verifyUser\E$/i) {
637                 &pSReply("cannto remove passwd of others.");
638                 return;
639             }
640
641             if (!exists $users{$u}{PASS}) {
642                 &pSReply("$u does not have pass set anyway.");
643                 return;
644             }
645
646             &pSReply("Deleted pass from $u.");
647
648             $utime_userfile = time();
649             $ucount_userfile++;
650
651             delete $users{$u}{PASS};
652
653             return;
654         }
655
656         my $salt = join '',('.','/',0..9,'A'..'Z','a'..'z')[rand 64, rand 64];
657         my $crypt = crypt($args[1], $salt);
658         &pSReply("Set $u's passwd to '$crypt'");
659         $users{$u}{PASS} = $crypt;
660
661         $utime_userfile = time();
662         $ucount_userfile++;
663
664         return;
665     }
666
667     if ($message =~ /^chattr(\s+(.*))?$/) {
668         my(@args) = split /[\s\t]+/, $2 || '';
669
670         if (!scalar @args) {
671             &help("chattr");
672             return;
673         }
674
675         my $user;
676         if ($args[0] =~ /^$mask{nick}$/i) {     # <nick>
677             $user       = &getUser($args[0]);
678             $chflag     = $args[1];
679         } else {                                # <flags>
680             $user       = &getUser($who);
681             &DEBUG("user $who... nope.") unless (defined $user);
682             $user       = &getUser($verifyUser);
683             $chflag     = $args[0];
684         }
685
686         if (!defined $user) {
687             &pSReply("user $user does not exist.");
688             return;
689         }
690
691         my $flags = $users{$user}{FLAGS};
692         if (!defined $chflag) {
693             &pSReply("Flags for $user: $flags");
694             return;
695         }
696
697         &DEBUG("who => $who");
698         &DEBUG("verifyUser => $verifyUser");
699         if (!&IsFlag("m") and $who !~ /^\Q$verifyUser\E$/i) {
700             &pSReply("cannto change attributes of others.");
701             return "REPLY";
702         }
703
704         my $state;
705         my $change      = 0;
706         foreach (split //, $chflag) {
707             if ($_ eq "+") { $state = 1; next; }
708             if ($_ eq "-") { $state = 0; next; }
709
710             if (!defined $state) {
711                 &pSReply("no initial + or - was found in attr.");
712                 return;
713             }
714
715             if ($state) {
716                 next if ($flags =~ /\Q$_\E/);
717                 $flags .= $_;
718             } else {
719                 if (&IsParam("owner")
720                         and $param{owner} =~ /^\Q$user\E$/i
721                         and $flags =~ /[nmo]/
722                 ) {
723                     &pSReply("not removing flag $_ for $user.");
724                     next;
725                 }
726                 next unless ($flags =~ s/\Q$_\E//);
727             }
728
729             $change++;
730         }
731
732         if ($change) {
733             $utime_userfile = time();
734             $ucount_userfile++;
735             &pSReply("Current flags: $flags");
736             $users{$user}{FLAGS} = $flags;
737         } else {
738             &pSReply("No flags changed: $flags");
739         }
740
741         return;
742     }
743
744     if ($message =~ /^chnick(\s+(.*))?$/) {
745         my(@args) = split /[\s\t]+/, $2 || '';
746
747         if ($who eq "_default") {
748             &WARN("$who or verifyuser tried to run chnick.");
749             return "REPLY";
750         }
751
752         if (!scalar @args or scalar @args > 2) {
753             &help("chnick");
754             return;
755         }
756
757         if (scalar @args == 1) {        # 1
758             $user       = &getUser($who);
759             &DEBUG("nope, not $who.") unless (defined $user);
760             $user       ||= &getUser($verifyUser);
761             $chnick     = $args[0];
762         } else {                        # 2
763             $user       = &getUser($args[0]);
764             $chnick     = $args[1];
765         }
766
767         if (!defined $user) {
768             &pSReply("user $who or $args[0] does not exist.");
769             return;
770         }
771
772         if ($user =~ /^\Q$chnick\E$/i) {
773             &pSReply("user == chnick. why should I do that?");
774             return;
775         }
776
777         if (&getUser($chnick)) {
778             &pSReply("user $chnick is already used!");
779             return;
780         }
781
782         if (!&IsFlag("m") and $who !~ /^\Q$verifyUser\E$/i) {
783             &pSReply("cannto change nick of others.");
784             return "REPLY" if ($who eq "_default");
785             return;
786         }
787
788         foreach (keys %{ $users{$user} }) {
789             $users{$chnick}{$_} = $users{$user}{$_};
790             delete $users{$user}{$_};
791         }
792         undef $users{$user};    # ???
793
794         $utime_userfile = time();
795         $ucount_userfile++;
796
797         &pSReply("Changed '$user' to '$chnick' successfully.");
798
799         return;
800     }
801
802     if ($message =~ /^([-+])host(\s+(.*))?$/) {
803         my $cmd         = $1."host";
804         my(@args)       = split /[\s\t]+/, $3 || '';
805         my $state       = ($1 eq "+") ? 1 : 0;
806
807         if (!scalar @args) {
808             &help($cmd);
809             return;
810         }
811
812         if ($who eq "_default") {
813             &WARN("$who or verifyuser tried to run $cmd.");
814             return "REPLY";
815         }
816
817         my ($user,$mask);
818         if ($args[0] =~ /^$mask{nick}$/i) {     # <nick>
819             return unless (&hasFlag("m"));
820             $user       = &getUser($args[0]);
821             $mask       = $args[1];
822         } else {                                # <mask>
823             # who or verifyUser. FIXME!!!
824             $user       = &getUser($who);
825             $mask       = $args[0];
826         }
827
828         if (!defined $user) {
829             &pSReply("user $user does not exist.");
830             return;
831         }
832
833         if (!defined $mask) {
834             ### FIXME.
835             &pSReply("Hostmasks for $user: $users{$user}{HOSTS}");
836
837             return;
838         }
839
840         if (!&IsFlag("m") and $who !~ /^\Q$verifyUser\E$/i) {
841             &pSReply("cannto change masks of others.");
842             return;
843         }
844
845         if ($mask !~ /^$mask{nuh}$/) {
846             &pSReply("error: mask ($mask) is not a real hostmask.");
847             return;
848         }
849
850         my $count = scalar keys %{ $users{$user}{HOSTS} };
851
852         if ($state) {                           # add.
853             if (exists $users{$user}{HOSTS}{$mask}) {
854                 &pSReply("mask $mask already exists.");
855                 return;
856             }
857
858             ### TODO: override support.
859             $users{$user}{HOSTS}{$mask} = 1;
860
861             &pSReply("Added $mask to list of masks.");
862
863         } else {                                # delete.
864
865             if (!exists $users{$user}{HOSTS}{$mask}) {
866                 &pSReply("mask $mask does not exist.");
867                 return;
868             }
869
870             ### TODO: wildcard support. ?
871             delete $users{$user}{HOSTS}{$mask};
872
873             if (scalar keys %{ $users{$user}{HOSTS} } != $count) {
874                 &pSReply("Removed $mask from list of masks.");
875             } else {
876                 &pSReply("error: could not find $mask in list of masks.");
877                 return;
878             }
879         }
880
881         $utime_userfile = time();
882         $ucount_userfile++;
883
884         return;
885     }
886
887     if ($message =~ /^([-+])ban(\s+(.*))?$/) {
888         my $cmd         = $1."ban";
889         my $flatarg     = $3;
890         my(@args)       = split /[\s\t]+/, $3 || '';
891         my $state       = ($1 eq "+") ? 1 : 0;
892
893         if (!scalar @args) {
894             &help($cmd);
895             return;
896         }
897
898         my($mask,$chan,$time,$reason);
899
900         if ($flatarg =~ s/^($mask{nuh})\s*//) {
901             $mask = $1;
902         } else {
903             &DEBUG("arg does not contain nuh mask?");
904         }
905
906         if ($flatarg =~ s/^($mask{chan})\s*//) {
907             $chan = $1;
908         } else {
909             $chan = "*";        # _default instead?
910         }
911
912         if ($state == 0) {              # delete.
913             my $c = join(' ', &banDel($mask) );
914
915             if ($c) {
916                 &pSReply("Removed $mask from chans: $c");
917             } else {
918                 &pSReply("$mask was not found in ban list.");
919             }
920
921             return;
922         }
923
924         ###
925         # add ban.
926         ###
927
928         # time.
929         if ($flatarg =~ s/^(\d+)\s*//) {
930             $time = $1;
931             &DEBUG("time = $time.");
932             if ($time < 0) {
933                 &pSReply("error: time cannot be negatime?");
934                 return;
935             }
936         } else {
937             $time = 0;
938         }
939
940         if ($flatarg =~ s/^(.*)$//) {   # need length?
941             $reason     = $1;
942         }
943
944         if (!&IsFlag("m") and $who !~ /^\Q$verifyUser\E$/i) {
945             &pSReply("cannto change masks of others.");
946             return;
947         }
948
949         if ($mask !~ /^$mask{nuh}$/) {
950             &pSReply("error: mask ($mask) is not a real hostmask.");
951             return;
952         }
953
954         if ( &banAdd($mask,$chan,$time,$reason) == 2) {
955             &pSReply("ban already exists; overwriting.");
956         }
957         &pSReply("Added $mask for $chan (time => $time, reason => $reason)");
958
959         return;
960     }
961
962     if ($message =~ /^whois(\s+(.*))?$/) {
963         my $arg = $2;
964
965         if (!defined $arg) {
966             &help("whois");
967             return;
968         }
969
970         my $user = &getUser($arg);
971         if (!defined $user) {
972             &pSReply("whois: user $user does not exist.");
973             return;
974         }
975
976         ### TODO: better (eggdrop-like) output.
977         &pSReply("user: $user");
978         foreach (keys %{ $users{$user} }) {
979             my $ref = ref $users{$user}{$_};
980
981             if ($ref eq "HASH") {
982                 my $type = $_;
983                 ### DOES NOT WORK???
984                 foreach (keys %{ $users{$user}{$type} }) {
985                     &pSReply("    $type => $_");
986                 }
987                 next;
988             }
989
990             &pSReply("    $_ => $users{$user}{$_}");
991         }
992         &pSReply("End of USER whois.");
993
994         return;
995     }
996
997     if ($message =~ /^bans(\s+(.*))?$/) {
998         my $arg = $2;
999
1000         if (defined $arg) {
1001             if ($arg ne "_default" and !&validChan($arg) ) {
1002                 &pSReply("error: chan $chan is invalid.");
1003                 return;
1004             }
1005         }
1006
1007         if (!scalar keys %bans) {
1008             &pSReply("Ban list is empty.");
1009             return;
1010         }
1011
1012         my $c;
1013         &pSReply("     mask: expire, time-added, count, who-by, reason");
1014         foreach $c (keys %bans) {
1015             next unless (!defined $arg or $arg =~ /^\Q$c\E$/i);
1016             &pSReply("  $c:");
1017
1018             foreach (keys %{ $bans{$c} }) {
1019                 my $val = $bans{$c}{$_};
1020
1021                 if (ref $val eq "ARRAY") {
1022                     my @array = @{ $val };
1023                     &pSReply("    $_: @array");
1024                 } else {
1025                     &DEBUG("unknown ban: $val");
1026                 }
1027             }
1028         }
1029         &pSReply("END of bans.");
1030
1031         return;
1032     }
1033
1034     if ($message =~ /^banlist(\s+(.*))?$/) {
1035         my $arg = $2;
1036
1037         if (defined $arg and $arg !~ /^$mask_chan$/) {
1038             &pSReply("error: chan $chan is invalid.");
1039             return;
1040         }
1041
1042         &DEBUG("bans for global or arg => $arg.");
1043         foreach (keys %bans) {                  #CHANGE!!!
1044             &DEBUG("  $_ => $bans{$_}.");
1045         }
1046
1047         &DEBUG("End of bans.");
1048         &pSReply("END of bans.");
1049
1050         return;
1051     }
1052
1053     if ($message =~ /^save$/) {
1054         return unless (&hasFlag("o"));
1055
1056         &writeUserFile();
1057         &writeChanFile();
1058
1059         return;
1060     }
1061
1062     ### ALIASES.
1063     $message =~ s/^addignore/+ignore/;
1064     $message =~ s/^(del|un)ignore/-ignore/;
1065
1066     # ignore.
1067     if ($message =~ /^(\+|\-)ignore(\s+(.*))?$/i) {
1068         return unless (&hasFlag("o"));
1069         my $state       = ($1 eq "+") ? 1 : 0;
1070         my $str         = $1."ignore";
1071         my $args        = $3;
1072
1073         if (!$args) {
1074             &help($str);
1075             return;
1076         }
1077
1078         my($mask,$chan,$time,$comment);
1079
1080         # mask.
1081         if ($args =~ s/^($mask{nuh})\s*//) {
1082             $mask = $1;
1083         } else {
1084             &ERROR("no NUH mask?");
1085             return;
1086         }
1087
1088         if (!$state) {                  # delignore.
1089             if ( &ignoreDel($mask) ) {
1090                 &pSReply("ok, deleted X ignores.");
1091             } else {
1092                 &pSReply("could not find $mask in ignore list.");
1093             }
1094             return;
1095         }
1096
1097         ###
1098         # addignore.
1099         ###
1100
1101         # chan.
1102         if ($args =~ s/^($mask{chan}|\*)\s*//) {
1103             $chan = $1;
1104         } else {
1105             $chan = "*";
1106         }
1107
1108         # time.
1109         if ($args =~ s/^(\d+)\s*//) {
1110             $time = $1*60;      # ??
1111         } else {
1112             $time = 0;
1113         }
1114
1115         # time.
1116         if ($args) {
1117             $comment = $args;
1118         } else {
1119             $comment = "added by $who";
1120         }
1121
1122         if ( &ignoreAdd($mask, $chan, $time, $comment) > 1) {
1123             &pSReply("warn: $mask already in ignore list; written over anyway. FIXME");
1124         } else {
1125             &pSReply("added $mask to ignore list.");
1126         }
1127
1128         return;
1129     }
1130
1131     if ($message =~ /^ignore(\s+(.*))?$/) {
1132         my $arg = $2;
1133
1134         if (defined $arg) {
1135             if ($arg !~ /^$mask{chan}$/) {
1136                 &pSReply("error: chan $chan is invalid.");
1137                 return;
1138             }
1139
1140             if (!&validChan($arg)) {
1141                 &pSReply("error: chan $arg is invalid.");
1142                 return;
1143             }
1144
1145             &pSReply("Showing bans for $arg only.");
1146         }
1147
1148         if (!scalar keys %ignore) {
1149             &pSReply("Ignore list is empty.");
1150             return;
1151         }
1152
1153         ### TODO: proper (eggdrop-like) formatting.
1154         my $c;
1155         &pSReply("    mask: expire, time-added, who, comment");
1156         foreach $c (keys %ignore) {
1157             next unless (!defined $arg or $arg =~ /^\Q$c\E$/i);
1158             &pSReply("  $c:");
1159
1160             foreach (keys %{ $ignore{$c} }) {
1161                 my $ref = ref $ignore{$c}{$_};
1162                 if ($ref eq "ARRAY") {
1163                     my @array = @{ $ignore{$c}{$_} };
1164                     &pSReply("      $_: @array");
1165                 } else {
1166                     &DEBUG("unknown ignore line?");
1167                 }
1168             }
1169         }
1170         &pSReply("END of ignore.");
1171
1172         return;
1173     }
1174
1175     # adduser/deluser.
1176     if ($message =~ /^(\+|\-|add|del)user(\s+(.*))?$/i) {
1177         my $str         = $1;
1178         my $strstr      = $1."user";
1179         my @args        = split /\s+/, $3 || '';
1180         my $args        = $3;
1181         my $state       = ($str =~ /^(\+|add)$/) ? 1 : 0;
1182
1183         if (!scalar @args) {
1184             &help($strstr);
1185             return;
1186         }
1187
1188         if ($str eq "+") {
1189             if (scalar @args != 2) {
1190                 &pSReply(".+host requires hostmask argument.");
1191                 return;
1192             }
1193         } elsif (scalar @args != 1) {
1194             &pSReply("too many arguments.");
1195             return;
1196         }
1197
1198         if ($state) {                   # adduser.
1199             if (scalar @args == 1) {
1200                 $args[1]        = &getHostMask($args[0]);
1201                 if (!defined $args[1]) {
1202                     &ERROR("could not get hostmask?");
1203                     return;
1204                 }
1205             }
1206
1207             if ( &userAdd(@args) ) {    # success.
1208                 &pSReply("Added $args[0]...");
1209
1210             } else {                    # failure.
1211                 &pSReply("User $args[0] already exists");
1212             }
1213
1214         } else {                        # deluser.
1215
1216             if ( &userDel($args[0]) ) { # success.
1217                 &pSReply("Deleted $args[0] successfully.");
1218
1219             } else {                    # failure.
1220                 &pSReply("User $args[0] does not exist.");
1221             }
1222
1223         }
1224         return;
1225     }
1226
1227     if ($message =~ /^sched$/) {
1228         my @list;
1229         my @run;
1230         foreach (keys %sched) {
1231             next unless (exists $sched{$_}{TIME});
1232             push(@list,$_);
1233
1234             next unless (exists $sched{$_}{RUNNING});
1235             push(@run,$_);
1236         }
1237
1238         &pSReply( &formListReply(0,"Scheds to run: ", sort @list ) );
1239         &pSReply( &formListReply(0, "Scheds running(should not happen?) ", sort @run ) );
1240
1241         return;
1242     }
1243
1244     return "REPLY";
1245 }
1246
1247 1;