]> git.donarmstrong.com Git - infobot.git/blob - src/IRC/IrcHooks.pl
don't DCC GET whenever asked
[infobot.git] / src / IRC / IrcHooks.pl
1 #
2 # IrcHooks.pl: IRC Hooks stuff.
3 #      Author: dms
4 #     Version: 20000126
5 #        NOTE: Based on code by Kevin Lenzo & Patrick Cole  (c) 1997
6 #
7 use vars qw(%chanconf);
8
9 # GENERIC. TO COPY.
10 sub on_generic {
11     $conn = shift(@_);
12     my ($event) = @_;
13     my $nick = $event->nick();
14     my $chan = ($event->to)[0];
15
16     &DEBUG("on_generic: nick => '$nick'.");
17     &DEBUG("on_generic: chan => '$chan'.");
18
19     foreach ($event->args) {
20         &DEBUG("on_generic: args => '$_'.");
21     }
22 }
23
24 sub on_action {
25     $conn = shift(@_);
26     my ($event) = @_;
27     my ($nick, @args) = ($event->nick, $event->args);
28     my $chan = ($event->to)[0];
29
30     shift @args;
31
32     if ($chan eq $ident) {
33         &status("* [$nick] @args");
34     } else {
35         &status("* $nick/$chan @args");
36     }
37 }
38
39 sub on_chat {
40     $conn = shift(@_);
41     my ($event) = @_;
42     my $msg  = ($event->args)[0];
43     my $sock = ($event->to)[0];
44     my $nick = lc $event->nick();
45
46     if (!exists $nuh{$nick}) {
47         &DEBUG("chat: nuh{$nick} doesn't exist; trying WHOIS .");
48         $conn->whois($nick);
49         return;
50     }
51
52     ### set vars that would have been set in hookMsg.
53     $userHandle         = "";   # reset.
54     $who                = lc $nick;
55     $message            = $msg;
56     $orig{who}          = $nick;
57     $orig{message}      = $msg;
58     $nuh                = $nuh{$who};
59     $uh                 = (split /\!/, $nuh)[1];
60     $h                  = (split /\@/, $uh)[1];
61     $addressed          = 1;
62     $msgType            = 'chat';
63
64     if (!exists $dcc{'CHATvrfy'}{$nick}) {
65         $userHandle     = &verifyUser($who, $nuh);
66         my $crypto      = $users{$userHandle}{PASS};
67         my $success     = 0;
68
69         if ($userHandle eq "_default") {
70             &WARN("DCC CHAT: _default/guest not allowed.");
71             return;
72         }
73
74         ### TODO: prevent users without CRYPT chatting.
75         if (!defined $crypto) {
76             &TODO("dcc close chat");
77             &msg($who, "nope, no guest logins allowed...");
78             return;
79         }
80
81         if (&ckpasswd($msg, $crypto)) {
82             # stolen from eggdrop.
83             $conn->privmsg($sock, "Connected to $ident");
84             $conn->privmsg($sock, "Commands start with '.' (like '.quit' or '.help')");
85             $conn->privmsg($sock, "Everything else goes out to the party line.");
86
87             &dccStatus(2) unless (exists $sched{"dccStatus"}{RUNNING});
88
89             $success++;
90
91         } else {
92             &status("DCC CHAT: incorrect pass; closing connection.");
93             &DEBUG("chat: sock => '$sock'.");
94 ###         $sock->close();
95             delete $dcc{'CHAT'}{$nick};
96             &FIXME("chat: after closing sock.");
97             ### BUG: close seizes bot. why?
98         }
99
100         if ($success) {
101             &status("DCC CHAT: user $nick is here!");
102             &DCCBroadcast("*** $nick ($uh) joined the party line.");
103
104             $dcc{'CHATvrfy'}{$nick} = $userHandle;
105
106             return if ($userHandle eq "_default");
107
108             &dccsay($nick,"Flags: $users{$userHandle}{FLAGS}");
109         }
110
111         return;
112     }
113
114     &status("$b_red=$b_cyan$who$b_red=$ob $message");
115
116     if ($message =~ s/^\.//) {  # dcc chat commands.
117         ### TODO: make use of &Forker(); here?
118         &loadMyModule('UserDCC');
119
120         &DCCBroadcast("#$who# $message","m");
121
122         my $retval      = &userDCC();
123         return unless (defined $retval);
124         return if ($retval eq $noreply);
125
126         $conn->privmsg($dcc{'CHAT'}{$who}, "Invalid command.");
127
128     } else {                    # dcc chat arena.
129
130         foreach (keys %{ $dcc{'CHAT'} }) {
131             $conn->privmsg($dcc{'CHAT'}{$_}, "<$who> $orig{message}");
132         }
133     }
134
135     return 'DCC CHAT MESSAGE';
136 }
137
138 # is there isoff? how do we know if someone signs off?
139 sub on_ison {
140     $conn = shift(@_);
141     my ($event) = @_;
142     my $x1 = ($event->args)[0];
143     my $x2 = ($event->args)[1];
144     $x2 =~ s/\s$//;
145
146     &DEBUG("on_ison: x1 = '$x1', x2 => '$x2'");
147 }
148
149 sub on_endofmotd {
150     $conn = shift(@_);
151
152     # update IRCStats.
153     $ident = $conn->nick();
154     $ircstats{'ConnectTime'}    = time();
155     $ircstats{'ConnectCount'}++;
156     if (defined $ircstats{'DisconnectTime'}) {
157         $ircstats{'OffTime'}    += time() - $ircstats{'DisconnectTime'};
158     }
159
160     # first time run.
161     if (!exists $users{_default}) {
162         &status("!!! First time run... adding _default user.");
163         $users{_default}{FLAGS} = "amrt";
164         $users{_default}{HOSTS}{"*!*@*"} = 1;
165     }
166
167     if (scalar keys %users < 2) {
168         &status("!"x40);
169         &status("!!! Ok.  Now type '/msg $ident PASS <pass>' to get master access through DCC CHAT.");
170         &status("!"x40);
171     }
172     # end of first time run.
173
174     if (&IsChanConf('Wingate')) {
175         my $file = "$bot_base_dir/$param{'ircUser'}.wingate";
176         open(IN, $file);
177         while (<IN>) {
178             chop;
179             next unless (/^(\S+)\*$/);
180             push(@wingateBad, $_);
181         }
182         close IN;
183     }
184
185     if ($firsttime) {
186         &ScheduleThis(1, "setupSchedulers");
187         $firsttime = 0;
188     }
189
190     if (&IsParam("ircUMode")) {
191         &VERB("Attempting change of user modes to $param{'ircUMode'}.", 2);
192         if ($param{'ircUMode'} !~ /^[-+]/) {
193             &WARN("ircUMode had no +- prefix; adding +");
194             $param{'ircUMode'} = "+".$param{'ircUMode'};
195         }
196
197         &rawout("MODE $ident $param{'ircUMode'}");
198     }
199
200     # ok, we're free to do whatever we want now. go for it!
201     $running = 1;
202
203     # add ourself to notify.
204     $conn->ison($conn->nick());
205
206     # Q, as on quakenet.org.
207     if (&IsParam("Q_pass")) {
208         &status("Authing to Q...");
209         &rawout("PRIVMSG Q\@CServe.quakenet.org :AUTH $param{'Q_user'} $param{'Q_pass'}");
210     }
211
212     &status("End of motd. Now lets join some channels...");
213     #&joinNextChan();
214 }
215
216 sub on_endofwho {
217     $conn = shift(@_);
218     my ($event) = @_;
219 #    &DEBUG("endofwho: chan => $chan");
220     $chan       ||= ($event->args)[1];
221 #    &DEBUG("endofwho: chan => $chan");
222
223     if (exists $cache{countryStats}) {
224         &do_countrystats();
225     }
226 }
227
228 sub on_dcc {
229     $conn = shift(@_);
230     my ($event) = @_;
231     my $type = uc( ($event->args)[1] );
232     my $nick = lc $event->nick();
233
234     &status("on_dcc type=$type nick=$nick sock=$sock");
235
236     # pity Net::IRC doesn't store nuh. Here's a hack :)
237     if (!exists $nuh{lc $nick}) {
238         $conn->whois($nick);
239         $nuh{$nick}     = "GETTING-NOW";        # trying.
240     }
241     $type ||= "???";
242
243     if ($type eq 'SEND') {      # GET for us.
244         # incoming DCC SEND. we're receiving a file.
245         my $get = ($event->args)[2];
246         &status("DCC: not Initializing GET from $nick to '$param{tempDir}/$get'");
247         # FIXME: do we want to get anything?
248         return;
249         #open(DCCGET,">$param{tempDir}/$get");
250         #$conn->new_get($event, \*DCCGET);
251
252     } elsif ($type eq 'GET') {  # SEND for us?
253         &status("DCC: not Initializing SEND for $nick.");
254         # FIXME: do we want to do anything?
255         return;
256         $conn->new_send($event->args);
257
258     } elsif ($type eq 'CHAT') {
259         &status("DCC: Initializing CHAT for $nick.");
260         $conn->new_chat($event);
261 #       $conn->new_chat(1, $nick, $event->host);
262
263     } else {
264         &WARN("${b_green}DCC $type$ob (1)");
265     }
266 }
267
268 sub on_dcc_close {
269     $conn = shift(@_);
270     my ($event) = @_;
271     my $nick = $event->nick();
272     my $sock = ($event->to)[0];
273
274     # DCC CHAT close on fork exit workaround.
275     if ($bot_pid != $$) {
276         &WARN("run-away fork; exiting.");
277         &delForked($forker);
278     }
279
280     if (exists $dcc{'SEND'}{$nick} and -f "$param{tempDir}/$nick.txt") {
281         &status("${b_green}DCC SEND$ob close from $b_cyan$nick$ob");
282
283         &status("dcc_close: purging $nick.txt from Debian.pl");
284         unlink "$param{tempDir}/$nick.txt";
285
286         delete $dcc{'SEND'}{$nick};
287     } elsif (exists $dcc{'CHAT'}{$nick} and $dcc{'CHAT'}{$nick} eq $sock) {
288         &status("${b_green}DCC CHAT$ob close from $b_cyan$nick$ob");
289         delete $dcc{'CHAT'}{$nick};
290         delete $dcc{'CHATvrfy'}{$nick};
291     } else {
292         &status("${b_green}DCC$ob UNKNOWN close from $b_cyan$nick$ob (2)");
293     }
294 }
295
296 sub on_dcc_open {
297     $conn = shift(@_);
298     my ($event) = @_;
299     my $type = uc( ($event->args)[0] );
300     my $nick = lc $event->nick();
301     my $sock = ($event->to)[0];
302
303     &status("on_dcc_open type=$type nick=$nick sock=$sock");
304
305     $msgType = 'chat';
306     $type ||= "???";
307     ### BUG: who is set to bot's nick?
308
309     # lets do it.
310     if ($type eq 'SEND') {
311         &status("${b_green}DCC lGET$ob established with $b_cyan$nick$ob");
312
313     } elsif ($type eq 'CHAT') {
314         # very cheap hack.
315         ### TODO: run ScheduleThis inside on_dcc_open_chat recursively
316         ###     1,3,5,10 seconds then fail.
317         if ($nuh{$nick} eq "GETTING-NOW") {
318             &ScheduleThis(3/60, "on_dcc_open_chat", $nick, $sock);
319         } else {
320             on_dcc_open_chat(undef, $nick, $sock);
321         }
322
323     } elsif ($type eq 'SEND') {
324         &status("Starting DCC receive.");
325         foreach ($event->args) {
326             &status("  => '$_'.");
327         }
328
329     } else {
330         &WARN("${b_green}DCC $type$ob (3)");
331     }
332 }
333
334 # really custom sub to get NUH since Net::IRC doesn't appear to support
335 # it.
336 sub on_dcc_open_chat {
337     my(undef, $nick, $sock) = @_;
338
339     if ($nuh{$nick} eq "GETTING-NOW") {
340         &FIXME("getting nuh for $nick failed.");
341         return;
342     }
343
344     &status("${b_green}DCC CHAT$ob established with $b_cyan$nick$ob $b_yellow($ob$nuh{$nick}$b_yellow)$ob");
345
346     &verifyUser($nick, $nuh{lc $nick});
347
348     if (!exists $users{$userHandle}{HOSTS}) {
349         &pSReply("you have no hosts defined in my user file; rejecting.");
350         $sock->close();
351         return;
352     }
353
354     my $crypto  = $users{$userHandle}{PASS};
355     $dcc{'CHAT'}{$nick} = $sock;
356
357     # TODO: don't make DCC CHAT established in the first place.
358     if ($userHandle eq "_default") {
359         &dccsay($nick, "_default/guest not allowed");
360         $sock->close();
361         return;
362     }
363
364     if (defined $crypto) {
365         &status("DCC CHAT: going to use ".$nick."'s crypt.");
366         &dccsay($nick,"Enter your password.");
367     } else {
368 #       &dccsay($nick,"Welcome to blootbot DCC CHAT interface, $userHandle.");
369     }
370 }
371
372 sub on_disconnect {
373     $conn = shift(@_);
374     my ($event) = @_;
375     my $from = $event->from();
376     my $what = ($event->args)[0];
377     my $mynick=$conn->nick();
378
379     &status("$mynick disconnect from $from ($what).");
380     $ircstats{'DisconnectTime'}         = time();
381     $ircstats{'DisconnectReason'}       = $what;
382     $ircstats{'DisconnectCount'}++;
383     $ircstats{'TotalTime'}      += time() - $ircstats{'ConnectTime'}
384                                         if ($ircstats{'ConnectTime'});
385
386     # clear any variables on reconnection.
387     $nickserv = 0;
388
389     &clearIRCVars();
390
391     if (!defined $conn) {
392         &WARN("on_disconnect: self is undefined! WTF");
393         &DEBUG("running function irc... lets hope this works.");
394         &irc();
395         return;
396     }
397
398     &WARN("scheduling call ircCheck() in 60s");
399     &clearIRCVars();
400     &ScheduleThis(1, "ircCheck");
401 }
402
403 sub on_endofnames {
404     $conn = shift(@_);
405     my ($event) = @_;
406     my $chan = ($event->args)[1];
407
408     # sync time should be done in on_endofwho like in BitchX
409     if (exists $cache{jointime}{$chan}) {
410         my $delta_time = sprintf("%.03f", &timedelta($cache{jointime}{$chan}) );
411         $delta_time    = 0      if ($delta_time <= 0);
412         if ($delta_time > 100) {
413             &WARN("endofnames: delta_time > 100 ($delta_time)");
414         }
415
416         &status("$b_blue$chan$ob: sync in ${delta_time}s.");
417     }
418
419     $conn->mode($chan);
420
421     my $txt;
422     my @array;
423     foreach ("o","v","") {
424         my $count = scalar(keys %{ $channels{$chan}{$_} });
425         next unless ($count);
426
427         $txt = "total" if ($_ eq "");
428         $txt = "voice" if ($_ eq "v");
429         $txt = "ops"   if ($_ eq "o");
430
431         push(@array, "$count $txt");
432     }
433     my $chanstats = join(' || ', @array);
434     &status("$b_blue$chan$ob: [$chanstats]");
435
436     &chanServCheck($chan);
437     # schedule used to solve ircu (OPN) "target too fast" problems.
438     $conn->schedule(5, sub { &joinNextChan(); } );
439 }
440
441 sub on_init {
442     $conn = shift(@_);
443     my ($event) = @_;
444     my (@args) = ($event->args);
445     shift @args;
446
447     &status("@args");
448 }
449
450 sub on_invite {
451     $conn = shift(@_);
452     my ($event) = @_;
453     my $chan = lc( ($event->args)[0] );
454     my $nick = $event->nick;
455
456     if ($nick =~ /^\Q$ident\E$/) {
457         &DEBUG("on_invite: self invite.");
458         return;
459     }
460
461     ### TODO: join key.
462     if (exists $chanconf{$chan}) {
463         # it's still buggy :/
464         if (&validChan($chan)) {
465             &msg($who, "i'm already in \002$chan\002.");
466 #           return;
467         }
468
469         &status("invited to $b_blue$chan$ob by $b_cyan$nick$ob");
470         &joinchan($chan);
471     }
472 }
473
474 sub on_join {
475     $conn = shift(@_);
476     my ($event) = @_;
477     my ($user,$host)    = split(/\@/, $event->userhost);
478     $chan               = lc( ($event->to)[0] ); # CASING!!!!
479     $who                = $event->nick();
480     $msgType            = "public";
481     my $i               = scalar(keys %{ $channels{$chan} });
482     my $j               = $cache{maxpeeps}{$chan} || 0;
483
484     if (!&IsParam("noSHM") && time() > ($sched{shmFlush}{TIME} || time()) + 3600) {
485         &DEBUG("looks like schedulers died somewhere... restarting...");
486         &setupSchedulers();
487     }
488
489     $chanstats{$chan}{'Join'}++;
490     $userstats{lc $who}{'Join'} = time() if (&IsChanConf("seenStats") > 0);
491     $cache{maxpeeps}{$chan}     = $i if ($i > $j);
492
493     &joinfloodCheck($who, $chan, $event->userhost);
494
495     # netjoin detection.
496     my $netsplit = 0;
497     if (exists $netsplit{lc $who}) {
498         delete $netsplit{lc $who};
499         $netsplit = 1;
500
501         if (!scalar keys %netsplit) {
502             &DEBUG("on_join: netsplit hash is now empty!");
503             undef %netsplitservers;
504             &netsplitCheck();   # any point in running this?
505             &chanlimitCheck();
506         }
507     }
508
509     if ($netsplit and !exists $cache{netsplit}) {
510         &VERB("on_join: ok.... re-running chanlimitCheck in 60.",2);
511         $conn->schedule(60, sub {
512                 &chanlimitCheck();
513                 delete $cache{netsplit};
514         } );
515
516         $cache{netsplit} = time();
517     }
518
519     # how to tell if there's a netjoin???
520
521     my $netsplitstr = "";
522     $netsplitstr = " $b_yellow\[${ob}NETSPLIT VICTIM$b_yellow]$ob" if ($netsplit);
523     &status(">>> join/$b_blue$chan$ob $b_cyan$who$ob $b_yellow($ob$user\@$host$b_yellow)$ob$netsplitstr");
524
525     $channels{$chan}{''}{$who}++;
526     $nuh          = $who."!".$user."\@".$host;
527     $nuh{lc $who} = $nuh unless (exists $nuh{lc $who});
528
529     ### on-join bans.
530     my @bans;
531     push(@bans, keys %{ $bans{$chan} }) if (exists $bans{$chan});
532     push(@bans, keys %{ $bans{"*"} })   if (exists $bans{"*"});
533
534     foreach (@bans) {
535         my $ban = $_;
536         s/\?/./g;
537         s/\*/\\S*/g;
538         my $mask        = $_;
539         next unless ($nuh =~ /^$mask$/i);
540
541         ### TODO: check $channels{$chan}{'b'} if ban already exists.
542         foreach (keys %{ $channels{$chan}{'b'} }) {
543             &DEBUG(" bans_on_chan($chan) => $_");
544         }
545
546         my $reason = "no reason";
547         foreach ($chan, "*") {
548             next unless (exists $bans{$_});
549             next unless (exists $bans{$_}{$ban});
550
551             my @array   = @{ $bans{$_}{$ban} };
552
553             $reason     = $array[4] if ($array[4]);
554             last;
555         }
556
557         &ban($ban, $chan);
558         &kick($who, $chan, $reason);
559
560         last;
561     }
562
563     # no need to go further.
564     return if ($netsplit);
565
566     # who == bot.
567     if ($who =~ /^\Q$ident\E$/i) {
568         if (defined( my $whojoin = $cache{join}{$chan} )) {
569             &msg($chan, "Okay, I'm here. (courtesy of $whojoin)");
570             delete $cache{join}{$chan};
571             &joinNextChan();    # hack.
572         }
573
574         ### TODO: move this to &joinchan()?
575         $cache{jointime}{$chan} = &timeget();
576         $conn->who($chan);
577
578         return;
579     }
580
581     ### ROOTWARN:
582     &rootWarn($who,$user,$host,$chan) if (
583                 &IsChanConf('RootWarn') &&
584                 $user =~ /^~?r(oo|ew|00)t$/i
585     );
586
587     ### NEWS:
588     if (&IsChanConf('News') && &IsChanConf('newsKeepRead')) {
589         if (!&loadMyModule('News')) {   # just in case.
590             &DEBUG('could not load news.');
591         } else {
592             &News::latest($chan);
593         }
594     }
595
596     ### botmail:
597     if (&IsChanConf('botmail')) {
598         &botmail::check(lc $who);
599     }
600
601     ### wingate:
602     &wingateCheck();
603 }
604
605 sub on_kick {
606     $conn = shift(@_);
607     my ($event) = @_;
608     my ($chan,$reason) = $event->args;
609     my $kicker  = $event->nick;
610     my $kickee  = ($event->to)[0];
611     my $uh      = $event->userhost();
612
613     &status(">>> kick/$b_blue$chan$ob [$b$kickee!$uh$ob] by $b_cyan$kicker$ob $b_yellow($ob$reason$b_yellow)$ob");
614
615     $chan = lc $chan;   # forgot about this, found by xsdg, 20001229.
616     $chanstats{$chan}{'Kick'}++;
617
618     if ($kickee eq $ident) {
619         &clearChanVars($chan);
620
621         &status("SELF attempting to rejoin lost channel $chan");
622         &joinchan($chan);
623     } else {
624         &delUserInfo($kickee,$chan);
625     }
626 }
627
628 sub on_mode {
629     $conn = shift(@_);
630     my ($event) = @_;
631     my ($user, $host)   = split(/\@/, $event->userhost);
632     my @args    = $event->args();
633     my $nick    = $event->nick();
634     $chan       = ($event->to)[0];
635
636     # last element is empty... so nuke it.
637     pop @args while ($args[$#args] eq "");
638
639     if ($nick eq $chan) {       # UMODE
640         &status(">>> mode $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
641     } else {                    # MODE
642         &status(">>> mode/$b_blue$chan$ob $b_yellow\[$ob$b@args$b_yellow\]$ob by $b_cyan$nick$ob");
643         &hookMode($nick, @args);
644     }
645 }
646
647 sub on_modeis {
648     $conn = shift(@_);
649     my ($event) = @_;
650     my ($myself, undef,@args) = $event->args();
651     my $nick    = $event->nick();
652     $chan       = ($event->args())[1];
653
654     &hookMode($nick, @args);
655 }
656
657 sub on_msg {
658     $conn = shift(@_);
659     my ($event) = @_;
660     my $nick = $event->nick;
661     my $msg  = ($event->args)[0];
662
663     ($user,$host) = split(/\@/, $event->userhost);
664     $uh         = $event->userhost();
665     $nuh        = $nick."!".$uh;
666     $msgtime    = time();
667     $h          = $host;
668
669     if ($nick eq $ident) { # hopefully ourselves.
670         if ($msg eq "TEST") {
671             &status("IRCTEST: Yes, we're alive.");
672             delete $cache{connect};
673             return;
674         }
675     }
676
677     &hookMsg('private', undef, $nick, $msg);
678     $who        = "";
679     $chan       = "";
680     $msgType    = "";
681 }
682
683 sub on_names {
684     $conn = shift(@_);
685     my ($event) = @_;
686     my @args = $event->args;
687     my $chan = lc $args[2];             # CASING, the last of them!
688
689     foreach (split / /, @args[3..$#args]) {
690         $channels{$chan}{'o'}{$_}++     if s/\@//;
691         $channels{$chan}{'v'}{$_}++     if s/\+//;
692         $channels{$chan}{''}{$_}++;
693     }
694 }
695
696 sub on_nick {
697     $conn = shift(@_);
698     my ($event) = @_;
699     my $nick    = $event->nick();
700     my $newnick = ($event->args)[0];
701
702     if (exists $netsplit{lc $newnick}) {
703         &status("Netsplit: $newnick/$nick came back from netsplit and changed to original nick! removing from hash.");
704         delete $netsplit{lc $newnick};
705         &netsplitCheck() if (time() != $sched{netsplitCheck}{TIME});
706     }
707
708     my ($chan,$mode);
709     foreach $chan (keys %channels) {
710         foreach $mode (keys %{ $channels{$chan} }) {
711             next unless (exists $channels{$chan}{$mode}{$nick});
712
713             $channels{$chan}{$mode}{$newnick} = $channels{$chan}{$mode}{$nick};
714         }
715     }
716     # TODO: do %flood* aswell.
717
718     &delUserInfo($nick, keys %channels);
719     $nuh{lc $newnick} = $nuh{lc $nick};
720     delete $nuh{lc $nick};
721
722     if ($nick eq $ident) {
723         &status(">>> I materialized into $b_green$newnick$ob from $nick");
724         $ident  = $newnick;
725     } else {
726         &status(">>> $b_cyan$nick$ob materializes into $b_green$newnick$ob");
727         my $mynick=$conn->nick();
728         if ($nick =~ /^\Q$mynick\E$/i) {
729             &getNickInUse();
730         }
731     }
732 }
733
734 sub on_nick_taken {
735     $conn = shift(@_);
736     my $nick    = $conn->nick();
737     #my $newnick = $nick . int(rand 10);
738     my $newnick = $nick . "_";
739
740     &DEBUG("on_nick_taken: nick => $nick");
741
742     &status("nick taken ($nick); preparing nick change.");
743
744     $conn->whois($nick);
745     #$conn->schedule(5, sub {
746         &status("nick taken; changing to temporary nick ($nick -> $newnick).");
747         &nick($newnick);
748     #} );
749 }
750
751 sub on_notice {
752     $conn = shift(@_);
753     my ($event) = @_;
754     my $nick = $event->nick();
755     my $chan = ($event->to)[0];
756     my $args = ($event->args)[0];
757
758     if ($nick =~ /^NickServ$/i) {               # nickserv.
759         &status("NickServ: <== '$args'");
760
761         my $check       = 0;
762         $check++        if ($args =~ /^This nickname is registered/i);
763         $check++        if ($args =~ /nickname.*owned/i);
764
765         if ($check) {
766             &status("nickserv told us to register; doing it.");
767
768             if (&IsParam("nickServ_pass")) {
769                 &status("NickServ: ==> Identifying.");
770                 &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
771                 return;
772             } else {
773                 &status("We can't tell nickserv a passwd ;(");
774             }
775         }
776
777         # password accepted.
778         if ($args =~ /^Password a/i) {
779             my $done    = 0;
780
781             foreach ( &ChanConfList("chanServ_ops") ) {
782                 next unless &chanServCheck($_);
783                 next if ($done);
784                 &DEBUG("nickserv activated or restarted; doing chanserv check.");
785                 $done++;
786             }
787
788             $nickserv++;
789         }
790
791     } elsif ($nick =~ /^ChanServ$/i) {          # chanserv.
792         &status("ChanServ: <== '$args'.");
793
794     } else {
795         if ($chan =~ /^$mask{chan}$/) { # channel notice.
796             &status("-$nick/$chan- $args");
797         } else {
798             $server = $nick unless (defined $server);
799             &status("-$nick- $args");   # private or server notice.
800         }
801     }
802 }
803
804 sub on_other {
805     $conn = shift(@_);
806     my ($event) = @_;
807     my $chan = ($event->to)[0];
808     my $nick = $event->nick;
809
810     &status("!!! other called.");
811     &status("!!! $event->args");
812 }
813
814 sub on_part {
815     $conn = shift(@_);
816     my ($event) = @_;
817     $chan       = lc( ($event->to)[0] );        # CASING!!!
818     my $mynick  = $conn->nick();
819     my $nick    = $event->nick;
820     my $userhost = $event->userhost;
821     $who        = $nick;
822     $msgType    = "public";
823
824     if (!exists $channels{$chan}) {
825         &DEBUG("on_part: found out $mynick is on $chan!");
826         $channels{$chan} = 1;
827     }
828
829     if (exists $floodjoin{$chan}{$nick}{Time}) {
830         delete $floodjoin{$chan}{$nick};
831     }
832
833     $chanstats{$chan}{'Part'}++;
834     &delUserInfo($nick,$chan);
835     if ($nick eq $ident) {
836         &clearChanVars($chan);
837     }
838
839     if (!&IsNickInAnyChan($nick) and &IsChanConf("seenStats") > 0) {
840         delete $userstats{lc $nick};
841     }
842
843     &status(">>> part/$b_blue$chan$ob $b_cyan$nick$ob $b_yellow($ob$userhost$b_yellow)$ob");
844 }
845
846 sub on_ping {
847     $conn = shift(@_);
848     my ($event) = @_;
849     my $nick = $event->nick;
850
851     $conn->ctcp_reply($nick, join(' ', ($event->args)));
852     &status(">>> ${b_green}CTCP PING$ob request from $b_cyan$nick$ob received.");
853 }
854
855 sub on_ping_reply {
856     $conn = shift(@_);
857     my ($event) = @_;
858     my $nick    = $event->nick;
859     my $t       = ($event->args)[1];
860     if (!defined $t) {
861         &WARN("on_ping_reply: t == undefined.");
862         return;
863     }
864
865     my $lag = time() - $t;
866
867     &status(">>> ${b_green}CTCP PING$ob reply from $b_cyan$nick$ob: $lag sec.");
868 }
869
870 sub on_public {
871     $conn = shift(@_);
872     my ($event) = @_;
873     my $msg     = ($event->args)[0];
874     $chan       = lc( ($event->to)[0] );        # CASING.
875     my $nick    = $event->nick;
876     $who        = $nick;
877     $uh         = $event->userhost();
878     $nuh        = $nick."!".$uh;
879     $msgType    = "public";
880     # TODO: move this out of hookMsg to here?
881     ($user,$host) = split(/\@/, $uh);
882     $h          = $host;
883
884     # rare case should this happen - catch it just in case.
885     if ($bot_pid != $$) {
886         &ERROR("run-away fork; exiting.");
887         &delForked($forker);
888     }
889
890     $msgtime            = time();
891     $lastWho{$chan}     = $nick;
892     ### TODO: use $nick or lc $nick?
893     if (&IsChanConf("seenStats") > 0) {
894         $userstats{lc $nick}{'Count'}++;
895         $userstats{lc $nick}{'Time'} = time();
896     }
897
898     # cache it.
899     my $time    = time();
900     if (!$cache{ircTextCounters}) {
901         &DEBUG("caching ircTextCounters for first time.");
902         my @str = split(/\s+/, &getChanConf("ircTextCounters"));
903         for (@str) { $_ = quotemeta($_); }
904         $cache{ircTextCounters} = join('|', @str);
905     }
906
907     my $str = $cache{ircTextCounters};
908     if ($str && $msg =~ /^($str)[\s!\.]?$/i) {
909         my $x = $1;
910
911         &VERB("textcounters: $x matched for $who",2);
912         my $c = $chan || "PRIVATE";
913
914         # better to do "counter=counter+1".
915         # but that will avoid time check.
916         my ($v,$t) = &sqlSelect("stats", "counter,time", {
917                         nick    => $who,
918                         type    => $x,
919                         channel => $c,
920         } );
921         $v++;
922
923         # don't allow ppl to cheat the stats :-)
924         if (defined $t && $time - $t > 60) {
925             &sqlReplace("stats", {
926                 nick    => $who,
927                 type    => $x,
928                 channel => $c,
929                 time    => $time,
930                 counter => $v,
931             } );
932         }
933     }
934
935     &hookMsg('public', $chan, $nick, $msg);
936     $chanstats{$chan}{'PublicMsg'}++;
937     $who        = "";
938     $chan       = "";
939     $msgType    = "";
940 }
941
942 sub on_quit {
943     $conn = shift(@_);
944     my ($event) = @_;
945     my $nick    = $event->nick();
946     my $reason  = ($event->args)[0];
947
948     # hack for ICC.
949     $msgType    = "public";
950     $who        = $nick;
951 ###    $chan    = $reason;      # no.
952
953     my $count   = 0;
954     foreach (grep !/^_default$/, keys %channels) {
955         # fixes inconsistent chanstats bug #1.
956         if (!&IsNickInChan($nick,$_)) {
957             $count++;
958             next;
959         }
960         $chanstats{$_}{'SignOff'}++;
961     }
962
963     if ($count == scalar keys %channels) {
964         &DEBUG("on_quit: nick $nick was not found in any chan.");
965     }
966
967     # should fix chanstats inconsistencies bug #2.
968     if ($reason =~ /^($mask{host})\s($mask{host})$/) {  # netsplit.
969         $reason = "NETSPLIT: $1 <=> $2";
970
971         # chanlimit code.
972         foreach $chan ( &getNickInChans($nick) ) {
973             next unless ( &IsChanConf("chanlimitcheck") );
974             next unless ( exists $channels{$_}{'l'} );
975
976             &DEBUG("on_quit: netsplit detected on $_; disabling chan limit.");
977             $conn->mode($_, "-l");
978         }
979
980         $netsplit{lc $nick} = time();
981         if (!exists $netsplitservers{$1}{$2}) {
982             &status("netsplit detected between $1 and $2 at [".scalar(gmtime)."]");
983             $netsplitservers{$1}{$2} = time();
984         }
985     }
986
987     my $chans = join(' ', &getNickInChans($nick) );
988     &status(">>> $b_cyan$nick$ob has signed off IRC $b_red($ob$reason$b_red)$ob [$chans]");
989
990     ###
991     ### ok... lets clear out the cache
992     ###
993     &delUserInfo($nick, keys %channels);
994     if (exists $nuh{lc $nick}) {
995         delete $nuh{lc $nick};
996     } else {
997         # well.. it's good but weird that this has happened - lets just
998         # be quiet about it.
999     }
1000     delete $userstats{lc $nick} if (&IsChanConf("seenStats") > 0);
1001     delete $chanstats{lc $nick};
1002     ###
1003
1004     # if we have a temp nick, and whoever is camping on our main nick leaves
1005     # revert to main nick. Note that Net::IRC only knows our main nick
1006     if ($nick eq $conn->nick()) {
1007         &status("nickchange: own nick \"$nick\" became free; changing.");
1008         &nick($mynick);
1009     }
1010 }
1011
1012 sub on_targettoofast {
1013     $conn = shift(@_);
1014     my ($event) = @_;
1015     my $nick = $event->nick();
1016     my($me,$chan,$why) = $event->args();
1017
1018     ### TODO: incomplete.
1019     if ($why =~ /.* wait (\d+) second/) {
1020         my $sleep       = $1;
1021         my $max         = 10;
1022
1023         if ($sleep > $max) {
1024             &status("targettoofast: going to sleep for $max ($sleep)...");
1025             $sleep = $max;
1026         } else {
1027             &status("targettoofast: going to sleep for $sleep");
1028         }
1029
1030         my $delta = time() - ($cache{sleepTime} || 0);
1031         if ($delta > $max+2) {
1032             sleep $sleep;
1033             $cache{sleepTime} = time();
1034         }
1035
1036         return;
1037     }
1038
1039     if (!exists $cache{TargetTooFast}) {
1040         &DEBUG("on_ttf: failed: $why");
1041         $cache{TargetTooFast}++;
1042     }
1043 }
1044
1045 sub on_topic {
1046     $conn = shift(@_);
1047     my ($event) = @_;
1048
1049     if (scalar($event->args) == 1) {    # change.
1050         my $topic = ($event->args)[0];
1051         my $chan  = ($event->to)[0];
1052         my $nick  = $event->nick();
1053
1054         ###
1055         # WARNING:
1056         #       race condition here. To fix, change '1' to '0'.
1057         #       This will keep track of topics set by bot only.
1058         ###
1059         # UPDATE:
1060         #       this may be fixed at a later date with topic queueing.
1061         ###
1062
1063         $topic{$chan}{'Current'} = $topic if (1);
1064         $chanstats{$chan}{'Topic'}++;
1065
1066         &status(">>> topic/$b_blue$chan$ob by $b_cyan$nick$ob -> $topic");
1067     } else {                                            # join.
1068         my ($nick, $chan, $topic) = $event->args;
1069         if (&IsChanConf('Topic')) {
1070             $topic{$chan}{'Current'}    = $topic;
1071             &topicAddHistory($chan,$topic);
1072         }
1073
1074         $topic = &fixString($topic, 1);
1075         &status(">>> topic/$b_blue$chan$ob is $topic");
1076     }
1077 }
1078
1079 sub on_topicinfo {
1080     $conn = shift(@_);
1081     my ($event) = @_;
1082     my ($myself,$chan,$setby,$time) = $event->args();
1083
1084     my $timestr;
1085     if (time() - $time > 60*60*24) {
1086         $timestr        = "at ". gmtime $time;
1087     } else {
1088         $timestr        = &Time2String(time() - $time) ." ago";
1089     }
1090
1091     &status(">>> set by $b_cyan$setby$ob $timestr");
1092 }
1093
1094 sub on_crversion {
1095     $conn = shift(@_);
1096     my ($event) = @_;
1097     my $nick    = $event->nick();
1098     my $ver;
1099
1100     if (scalar $event->args() != 1) {   # old.
1101         $ver    = join ' ', $event->args();
1102         $ver    =~ s/^VERSION //;
1103     } else {                            # new.
1104         $ver    = ($event->args())[0];
1105     }
1106
1107     if (grep /^\Q$nick\E$/i, @vernick) {
1108         &WARN("nick $nick found in vernick ($ver); skipping.");
1109         return;
1110     }
1111     push(@vernick, $nick);
1112
1113     if ($ver =~ /bitchx/i) {
1114         $ver{bitchx}{$nick}     = $ver;
1115
1116     } elsif ($ver =~ /xc\!|xchat/i) {
1117         $ver{xchat}{$nick}      = $ver;
1118
1119     } elsif ($ver =~ /irssi/i) {
1120         $ver{irssi}{$nick}      = $ver;
1121
1122     } elsif ($ver =~ /epic|(Third Eye)/i) {
1123         $ver{epic}{$nick}       = $ver;
1124
1125     } elsif ($ver =~ /ircII|PhoEniX/i) {
1126         $ver{ircII}{$nick}      = $ver;
1127
1128     } elsif ($ver =~ /mirc/i) {
1129 #       &DEBUG("verstats: mirc: $nick => '$ver'.");
1130         $ver{mirc}{$nick}       = $ver;
1131
1132 # ok... then we get to the lesser known/used clients.
1133     } elsif ($ver =~ /ircle/i) {
1134         $ver{ircle}{$nick}      = $ver;
1135
1136     } elsif ($ver =~ /chatzilla/i) {
1137         $ver{chatzilla}{$nick}  = $ver;
1138
1139     } elsif ($ver =~ /pirch/i) {
1140         $ver{pirch}{$nick}      = $ver;
1141
1142     } elsif ($ver =~ /sirc /i) {
1143         $ver{sirc}{$nick}       = $ver;
1144
1145     } elsif ($ver =~ /kvirc/i) {
1146         $ver{kvirc}{$nick}      = $ver;
1147
1148     } elsif ($ver =~ /eggdrop/i) {
1149         $ver{eggdrop}{$nick}    = $ver;
1150
1151     } elsif ($ver =~ /xircon/i) {
1152         $ver{xircon}{$nick}     = $ver;
1153
1154     } else {
1155         &DEBUG("verstats: other: $nick => '$ver'.");
1156         $ver{other}{$nick}      = $ver;
1157     }
1158 }
1159
1160 sub on_version {
1161     $conn = shift(@_);
1162     my ($event) = @_;
1163     my $nick = $event->nick;
1164
1165     &status(">>> ${b_green}CTCP VERSION$ob request from $b_cyan$nick$ob");
1166     $conn->ctcp_reply($nick, "VERSION $bot_version");
1167 }
1168
1169 sub on_who {
1170     $conn = shift(@_);
1171     my ($event) = @_;
1172     my @args    = $event->args;
1173     my $str     = $args[5]."!".$args[2]."\@".$args[3];
1174
1175     if ($cache{on_who_Hack}) {
1176         $cache{nuhInfo}{lc $args[5]}{Nick} = $args[5];
1177         $cache{nuhInfo}{lc $args[5]}{User} = $args[2];
1178         $cache{nuhInfo}{lc $args[5]}{Host} = $args[3];
1179         $cache{nuhInfo}{lc $args[5]}{NUH}  = "$args[5]!$args[2]\@$args[3]";
1180         return;
1181     }
1182
1183     if ($args[5] =~ /^nickserv$/i and !$nickserv) {
1184         &DEBUG("ok... we did a who for nickserv.");
1185         &rawout("PRIVMSG NickServ :IDENTIFY $param{'nickServ_pass'}");
1186     }
1187
1188     $nuh{lc $args[5]} = $args[5]."!".$args[2]."\@".$args[3];
1189 }
1190
1191 sub on_whois {
1192     $conn = shift(@_);
1193     my ($event) = @_;
1194     my @args    = $event->args;
1195
1196     $nuh{lc $args[1]} = $args[1]."!".$args[2]."\@".$args[3];
1197 }
1198
1199 sub on_whoischannels {
1200     $conn = shift(@_);
1201     my ($event) = @_;
1202     my @args    = $event->args;
1203
1204     &DEBUG("on_whoischannels: @args");
1205 }
1206
1207 sub on_useronchannel {
1208     $conn = shift(@_);
1209     my ($event) = @_;
1210     my @args    = $event->args;
1211
1212     &DEBUG("on_useronchannel: @args");
1213     &joinNextChan();
1214 }
1215
1216 ###
1217 ### since joinnextchan is hooked onto on_endofnames, these are needed.
1218 ###
1219
1220 sub on_chanfull {
1221     $conn = shift(@_);
1222     my ($event) = @_;
1223     my @args    = $event->args;
1224
1225     &status(">>> chanfull/$b_blue$args[1]$ob");
1226
1227     &joinNextChan();
1228 }
1229
1230 sub on_inviteonly {
1231     $conn = shift(@_);
1232     my ($event) = @_;
1233     my @args    = $event->args;
1234
1235     &status(">>> inviteonly/$b_cyan$args[1]$ob");
1236
1237     &joinNextChan();
1238 }
1239
1240 sub on_banned {
1241     $conn = shift(@_);
1242     my ($event) = @_;
1243     my @args    = $event->args;
1244     my $chan    = $args[1];
1245
1246     &status(">>> banned/$b_blue$chan$ob $b_cyan$args[0]$ob, removing autojoin for $chan");
1247     delete $chanconf{$chan}{autojoin};
1248     &joinNextChan();
1249 }
1250
1251 sub on_badchankey {
1252     $conn = shift(@_);
1253     my ($event) = @_;
1254     my @args    = $event->args;
1255     my $chan    = $args[1];
1256
1257     &DEBUG("on_badchankey: args => @args, removing autojoin for $chan");
1258     delete $chanconf{$chan}{autojoin};
1259     &joinNextChan();
1260 }
1261
1262 sub on_useronchan {
1263     $conn = shift(@_);
1264     my ($event) = @_;
1265     my @args    = $event->args;
1266
1267     &DEBUG("on_useronchan: args => @args");
1268     &joinNextChan();
1269 }
1270
1271 # TODO not used yet
1272 sub on_stdin {
1273     my $line = <STDIN>;
1274     chomp($line);
1275     &FIXME("on_stdin: line => \"$line\"");
1276 }
1277
1278 1;