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