]> git.donarmstrong.com Git - infobot.git/blobdiff - src/IRC/IrcHooks.pl
chan limit check code should now be disabled/re-enabled in relation to netsplits...
[infobot.git] / src / IRC / IrcHooks.pl
index dd09af7acae4f0a9f9873ab1074b494d581dc8df..9eec53b043cfa0fa0276b020e810951d36e62ac2 100644 (file)
@@ -41,24 +41,23 @@ sub on_chat {
     my $sock = ($event->to)[0];
     my $nick = $event->nick();
 
-    $userHandle                = "";   # reset.
-
-    # who is set to bot's name, why?
-
-    if (!exists $nuh{$who}) {
-       &DEBUG("chat: nuh{$who} doesn't exist; hrm should retry.");
+    if (!exists $nuh{$nick}) {
+       &DEBUG("chat: nuh{$nick} doesn't exist; trying WHOIS .");
+       $self->whois($nick);
        return;
-    } else {
-       $message        = $msg;
-       $who            = lc $nick;
-       $orig{who}      = $nick;
-       $orig{message}  = $msg;
-       $nuh            = $nuh{$who};
-       $uh             = (split /\!/, $nuh)[1];
-       $addressed      = 1;
-       $msgType        = 'chat';
     }
 
+    ### set vars that would have been set in hookMsg.
+    $userHandle                = "";   # reset.
+    $who               = lc $nick;
+    $message           = $msg;
+    $orig{who}         = $nick;
+    $orig{message}     = $msg;
+    $nuh               = $nuh{$who};
+    $uh                        = (split /\!/, $nuh)[1];
+    $addressed         = 1;
+    $msgType           = 'chat';
+
     if (!exists $dcc{'CHATvrfy'}{$nick}) {
        $userHandle     = &verifyUser($who, $nuh);
        my $crypto      = $users{$userHandle}{PASS};
@@ -75,7 +74,7 @@ sub on_chat {
            $self->privmsg($sock, "Commands start with '.' (like '.quit' or '.help')");
            $self->privmsg($sock, "Everything else goes out to the party line.");
 
-           &dccStatus(2) if (scalar keys %{ $dcc{'CHAT'} } == 1);
+           &dccStatus(2) unless (exists $sched{"dccStatus"}{RUNNING});
 
            $success++;
 
@@ -147,7 +146,7 @@ sub on_endofmotd {
     }
 
     if ($firsttime) {
-       $conn->schedule(60, \&setupSchedulers, "");
+       &ScheduleThis(1, \&setupSchedulers);
        $firsttime = 0;
     }
 
@@ -171,8 +170,10 @@ sub on_dcc {
     my $nick = $event->nick();
 
     # pity Net::IRC doesn't store nuh. Here's a hack :)
-    $self->whois($nick);
-    $nuh{lc $nick}     = "GETTING-NOW";        # trying.
+    if (!exists $nuh{lc $nick}) {
+       $self->whois($nick);
+       $nuh{lc $nick}  = "GETTING-NOW";        # trying.
+    }
     $type ||= "???";
 
     if ($type eq 'SEND') {     # GET for us.
@@ -188,10 +189,10 @@ sub on_dcc {
                \*DCCGET
        );
     } elsif ($type eq 'GET') { # SEND for us?
-       &DEBUG("starting get.");
+       &status("DCC: Initializing SEND for $nick.");
        $self->new_send($event->args);
     } elsif ($type eq 'CHAT') {
-       &DEBUG("starting chat.");
+       &status("DCC: Initializing CHAT for $nick.");
        $self->new_chat($event);
     } else {
        &WARN("${b_green}DCC $type$ob (1)");
@@ -266,6 +267,7 @@ sub on_dcc_open {
 sub on_dcc_open_chat {
     my(undef, $nick,$sock) = @_;
 
+    &DEBUG("nuh{$nick} => $nuh{$nick}.");
     if ($nuh{$nick} =~ /^(\S+)(\d+)$/) {
        my $i = $2;
        $i++;
@@ -310,7 +312,7 @@ sub on_disconnect {
     &clearIRCVars();
     if (!$self->connect()) {
        &WARN("not connected? help me. gonna call ircCheck() in 1800s");
-       $conn->schedule(1800, \&ircCheck(), "");
+       &ScheduleThis(30, "ircCheck");
     }
 }
 
@@ -318,8 +320,8 @@ sub on_endofnames {
     my ($self, $event) = @_;
     my $chan = ($event->args)[1];
 
-    if (exists $jointime{$chan}) {
-       my $delta_time = sprintf("%.03f", &gettimeofday() - $jointime{$chan});
+    if (exists $cache{jointime}{$chan}) {
+       my $delta_time = sprintf("%.03f", &gettimeofday() - $cache{jointime}{$chan});
        $delta_time    = 0      if ($delta_time < 0);
 
        &status("$b_blue$chan$ob: sync in ${delta_time}s.");
@@ -344,17 +346,14 @@ sub on_endofnames {
 
     if (scalar @joinchan) {    # remaining channels to join.
        &joinNextChan();
-    } else {
-       ### chanserv support.
-       ### TODO: what if we rejoin a channel.. need to set a var that
-       ###       we've done the request-for-ops-on-join.
-       return unless (&IsChanConf("chanServ_ops") > 0);
-       return unless ($nickserv);
-
-       if (!exists $channels{$chan}{'o'}{$ident}) {
-           &status("ChanServ ==> Requesting ops for $chan.");
-           &rawout("PRIVMSG ChanServ :OP $chan $ident");
-       }
+    }
+
+    return unless (&IsChanConf("chanServ_ops") > 0);
+    return unless ($nickserv);
+
+    if (!exists $channels{$chan}{'o'}{$ident}) {
+       &status("ChanServ ==> Requesting ops for $chan.");
+       &rawout("PRIVMSG ChanServ :OP $chan $ident");
     }
 }
 
@@ -368,19 +367,16 @@ sub on_init {
 
 sub on_invite {
     my ($self, $event) = @_;
-    my $chan = ($event->args)[0];
+    my $chan = lc( ($event->args)[0] );
     my $nick = $event->nick;
 
-    &DEBUG("on_invite: chan => '$chan', nick => '$nick'.");
-
-    # chan + possible_key.
-    ### do we need to know the key if we're invited???
-    ### grep the channel list?
-    foreach (split /[\s\t]+/, $param{'join_channels'}) {
-       next unless /^\Q$chan\E(,\S+)?$/i;
-       s/,/ /;
+    if ($nick =~ /^\Q$ident\E$/) {
+       &DEBUG("on_invite: self invite.");
+       return;
+    }
 
-       next if ($nick =~ /^\Q$ident\E$/);
+    ### TODO: join key.
+    if (exists $chanconf{$chan}) {
        if (&validChan($chan)) {
            &msg($who, "i'm already in \002$chan\002.");
            next;
@@ -410,7 +406,7 @@ sub on_join {
     }
 
     if ($netsplit and !$netsplittime) {
-       &status("ok.... re-running chanlimitCheck in 60.");
+       &DEBUG("on_join: ok.... re-running chanlimitCheck in 60.");
        $conn->schedule(60, sub {
                &chanlimitCheck();
                $netsplittime = undef;
@@ -451,15 +447,18 @@ sub on_join {
                    $user =~ /^r(oo|ew|00)t$/i &&
                    $channels{$chan}{'o'}{$ident});
 
+    ### chanlimit check.
+    &chanLimitVerify($chan);
+
     # used to determine sync time.
     if ($who =~ /^$ident$/i) {
-       if (defined( my $whojoin = $joinverb{$chan} )) {
+       if (defined( my $whojoin = $cache{join}{$chan} )) {
            &msg($chan, "Okay, I'm here. (courtesy of $whojoin)");
-           delete $joinverb{$chan};
+           delete $cache{join}{$chan};
        }
 
        ### TODO: move this to &joinchan()?
-       $jointime{$chan} = &gettimeofday();
+       $cache{jointime}{$chan} = &gettimeofday();
        rawout("WHO $chan");
     } else {
        ### TODO: this may go wild on a netjoin :)
@@ -712,10 +711,15 @@ sub on_quit {
 
     foreach (keys %channels) {
        # fixes inconsistent chanstats bug #1.
-       next unless (&IsNickInChan($nick,$_));
+       if (!&IsNickInChan($nick,$_)) {
+           &DEBUG("on_quit: nick $nick was not in chan $_.");
+           next;
+       }
        $chanstats{$_}{'SignOff'}++;
     }
+
     &DeleteUserInfo($nick, keys %channels);
+
     if (exists $nuh{lc $nick}) {
        delete $nuh{lc $nick};
     } else {
@@ -727,6 +731,11 @@ sub on_quit {
     if ($reason=~/^($mask{host})\s($mask{host})$/) {   # netsplit.
        $reason = "NETSPLIT: $1 <=> $2";
 
+       if (&ChanConfList("chanlimitcheck") and !scalar keys %netsplit) {
+           &DEBUG("on_quit: netsplit detected; disabling chan limit.");
+           &rawout("MODE $chan -l");
+       }
+
        $netsplit{lc $nick} = time();
        if (!exists $netsplitservers{$1}{$2}) {
            &status("netsplit detected between $1 and $2.");
@@ -748,19 +757,11 @@ sub on_quit {
 sub on_targettoofast {
     my ($self, $event) = @_;
     my $nick = $event->nick();
-    my $chan = ($event->to)[0];
-
-    &DEBUG("on_targettoofast: nick => '$nick'.");
-    &DEBUG("on_targettoofast: chan => '$chan'.");
-
-    foreach ($event->args) {
-       &DEBUG("on_targettoofast: args => '$_'.");
-    }
+    my($me,$chan,$why) = $event->args();
 
 ###    .* wait (\d+) second/) {
        &status("X1 $msg");
-       my $sleep = $3 + 10;
-
+       my $sleep = 5;
        &status("going to sleep for $sleep...");
        sleep $sleep;
        &joinNextChan();
@@ -784,7 +785,7 @@ sub on_topic {
        #       this may be fixed at a later date with topic queueing.
        ###
 
-       $topic{$chan}{'Current'} = $topic if (1 and &IsChanConf("topic") == 1);
+       $topic{$chan}{'Current'} = $topic if (1);
        $chanstats{$chan}{'Topic'}++;
 
        &status(">>> topic/$b_blue$chan$ob by $b_cyan$nick$ob -> $topic");
@@ -979,15 +980,17 @@ sub hookMsg {
     }
 
     # Determine floodwho.
+    my $c      = "_default";
     if ($msgType =~ /public/i) {               # public.
-       $floodwho = lc $chan;
+       $floodwho = $c = lc $chan;
     } elsif ($msgType =~ /private/i) { # private.
        $floodwho = lc $who;
     } else {                           # dcc?
        &DEBUG("FIXME: floodwho = ???");
     }
 
-    my ($count, $interval) = split(/:/, $param{'floodRepeat'} || "2:10");
+    my $val = &getChanConfDefault("floodRepeat", "2:10", $c);
+    my ($count, $interval) = split /:/, $val;
 
     # flood repeat protection.
     if ($addressed) {
@@ -997,9 +1000,12 @@ sub hookMsg {
            ### public != personal who so the below is kind of pointless.
            my @who;
            foreach (keys %flood) {
-               next if (/^\Q$floodwho\E$/ or /^\Q$chan\E$/);
+               next if (/^\Q$floodwho\E$/);
+               next if (defined $chan and /^\Q$chan\E$/);
+
                push(@who, grep /^\Q$message\E$/i, keys %{$flood{$_}});
            }
+
            if (scalar @who) {
                &msg($who, "you already said what ".
                                join(' ', @who)." have said.");
@@ -1025,14 +1031,18 @@ sub hookMsg {
 
        if ($addrchar) {
            &status("$b_cyan$who$ob is short-addressing me");
-       } else {
+       } elsif ($msgType eq "private") {       # private.
+           &status("$b_cyan$who$ob is /msg'ing me");
+       } else {                                # public?
            &status("$b_cyan$who$ob is addressing me");
        }
 
        $flood{$floodwho}{$message} = time();
     }
 
-    ($count, $interval) = split(/:/, $param{'floodMessages'} || "5:30");
+    $val = &getChanConfDefault("floodMessages", "5:30", $c);
+    ($count, $interval) = split /:/, $val;
+
     # flood overflow protection.
     if ($addressed) {
        foreach (keys %{$flood{$floodwho}}) {
@@ -1107,4 +1117,29 @@ sub hookMsg {
     return;
 }
 
+sub chanLimitVerify {
+    my($chan)  = @_;
+    my $l      = $channels{$chan}{'l'};
+
+    # only change it if it's not set.
+    if (defined $l and &IsChanConf("chanlimitcheck")) {
+       my $plus = &getChanConfDefault("chanlimitcheckPlus", 5, $chan);
+       my $nowl = scalar(keys %{ $channels{$chan}{''} });
+       my $delta       = $nowl - $l;
+       $delta          =~ s/^\-//;
+
+       if ($plus <= 3) {
+           &WARN("clc: stupid to have plus at $plus, fix it!");
+       }
+
+       ### todo: check if we have ops.
+       ### todo: if not, check if nickserv/chanserv is avail.
+       ### todo: unify code with chanlimitcheck()
+       if ($delta > 3) {
+           &WARN("clc: nowl($nowl) > l($l) - 3");
+           &rawout("MODE $chan +l ".($nowl+$plus) );
+       }
+    }
+}
+
 1;