]> ruin.nu Git - NDIRC.git/blob - Delling.pm
Move things to bot specific class + some more shared code
[NDIRC.git] / Delling.pm
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19 package NDIRC::Delling;
20
21 use strict;
22 use warnings;
23 use feature ':5.10';
24
25 use POE::Session;
26 use NDIRC::Misc;
27 use ND::DB;
28
29 my $DBH = DB();
30 my $TICK = $DBH->selectrow_array('SELECT tick()');
31
32 sub irc_public {
33         my ($sender, $heap, $who, $where, $msg) = @_[SENDER, HEAP, ARG0 .. ARG2];
34         my ($nick,$username,$address) = ( split /[!@]/, $who );
35         my $channel = $where->[0];
36
37         my $irc = $sender->get_heap();
38
39         #$irc->yield(privmsg => $channel, "Authed? " . $irc->is_nick_authed($nick));
40
41         if ($msg =~ /^(\S+): (.+)$/ && $heap->{disp}->has_command('anon',$channel)){
42                 my $_ = $1;
43                 my $text = $2;
44                 unless ($irc->is_channel_member($channel,$1) || /(Constructing|Researching)/){
45                         $msg = ".anon $_ $text";
46                 }
47
48         }
49         if (parseCommand($msg,$irc,$nick,$address,$channel,$heap->{disp},DB())){
50                 #Command parsed and run successfully
51         }
52 }
53
54
55 sub irc_msg {
56         my ($sender, $heap, $who, $where, $msg) = @_[SENDER, HEAP, ARG0 .. ARG2];
57         my ($nick,$username,$address) = ( split /[!@]/, $who );
58         my $irc = $sender->get_heap();
59
60         if (parseCommand($msg,$irc,$nick,$address,'pm',$heap->{disp},DB())){
61                 #Command parsed and run successfully
62         }
63 }
64
65 sub irc_join {
66         my ($sender, $heap, $who, $channel) = @_[SENDER, HEAP, ARG0 .. ARG1];
67         my ($nick,$username,$address) = ( split /[!@]/, $who );
68         my $irc = $sender->get_heap();
69
70         if($heap->{disp}->has_command('voice',$channel)){
71                 my $dbh = DB();
72                 my $flags = $dbh->prepare_cached(q{
73 SELECT DISTINCT flag
74 FROM users u
75         JOIN groupmembers g USING (uid)
76         JOIN channel_group_flags gf USING (gid)
77 WHERE u.hostmask = $1 AND channel = $2 AND flag IN ('o','v');
78                 });
79                 $flags->execute($address, $channel);
80                 my $mode = '';
81                 my @who;
82                 while (my ($flag) = $flags->fetchrow()){
83                         $mode .= $flag;
84                         push @who, $nick;
85                 }
86                 say "$mode - @who";
87                 $irc->yield(mode => $channel, $mode, @who) if $mode;
88         }
89 }
90
91 sub refresh {
92         my ($kernel,$heap) = @_[KERNEL,HEAP];
93         print 'Time: ' . time() . ' Lag: ' . $heap->{connector}->lag() . "\n";
94         $kernel->delay( refresh => 60 );
95         return;
96 }
97
98 1;