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