~ubuntu-ru-irc/+junk/irckit

« back to all changes in this revision

Viewing changes to ubuntuhelp/ubuntubot/plugins/FloodProtect/plugin.py

  • Committer: rmPIC30 at gmail
  • Date: 2010-07-13 09:08:58 UTC
  • Revision ID: rmpic30@gmail.com-20100713090858-w5kkmk093hx38cen
Добавляю бота

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
###
 
2
# Copyright (c) 2008, Nicolas Coevoet
 
3
# All rights reserved.
 
4
#
 
5
# Redistribution and use in source and binary forms, with or without
 
6
# modification, are permitted provided that the following conditions are met:
 
7
#
 
8
#   * Redistributions of source code must retain the above copyright notice,
 
9
#     this list of conditions, and the following disclaimer.
 
10
#   * Redistributions in binary form must reproduce the above copyright notice,
 
11
#     this list of conditions, and the following disclaimer in the
 
12
#     documentation and/or other materials provided with the distribution.
 
13
#   * Neither the name of the author of this software nor the name of
 
14
#     contributors to this software may be used to endorse or promote products
 
15
#     derived from this software without specific prior written consent.
 
16
#
 
17
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
18
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
19
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
20
# ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
21
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
22
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
23
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
24
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
25
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
26
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
27
# POSSIBILITY OF SUCH DAMAGE.
 
28
###
 
29
 
 
30
import supybot.utils as utils
 
31
from supybot.commands import *
 
32
import supybot.plugins as plugins
 
33
import supybot.ircutils as ircutils
 
34
import supybot.ircmsgs as ircmsgs
 
35
import supybot.callbacks as callbacks
 
36
import supybot.conf as conf
 
37
import supybot.schedule as schedule
 
38
 
 
39
import time
 
40
import re
 
41
import fnmatch
 
42
 
 
43
class FloodProtect(callbacks.Plugin):
 
44
    """"""
 
45
 
 
46
    def __init__(self, irc):
 
47
        self.__parent = super(FloodProtect, self)
 
48
        self.__parent.__init__(irc)
 
49
        self.queueKick = ircutils.FloodQueue(self.registryValue('lifeQueueKick'))
 
50
        self.queueBan = ircutils.FloodQueue(self.registryValue('lifeQueueBan'))
 
51
        self.queueLongBan = ircutils.FloodQueue(self.registryValue('lifeQueueLongBan'))
 
52
        
 
53
    def doPrivmsg(self, irc, msg):
 
54
        """This is called everytime an IRC message is recieved."""
 
55
        (recipients,text) = msg.args
 
56
        for channel in recipients.split(','):
 
57
                if irc.isChannel(channel):
 
58
                        enable = self.registryValue('enable',channel=channel)
 
59
                        if enable:
 
60
                                maxKick = self.registryValue('maxKick',channel=channel)
 
61
                                self.queueKick.enqueue(msg)
 
62
                                if self.queueKick.len(msg) > maxKick:
 
63
                                        self.queueKick.reset(msg)
 
64
                                        self.queueBan.enqueue(msg)
 
65
                                        maxKickBeforeBan = self.registryValue('maxKickToBan',channel=channel)
 
66
                                        reason = self.registryValue('reasonKick',channel=channel)
 
67
                                        if self.queueBan.len(msg) > maxKickBeforeBan:
 
68
                                                self.queueBan.reset(msg)
 
69
                                                self.queueLongBan.enqueue(msg)
 
70
                                                maxBanToLongBan = self.registryValue('maxBanToLongBan',channel=channel)
 
71
                                                duration = int(0)
 
72
                                                if self.queueLongBan.len(msg) > maxBanToLongBan:
 
73
                                                        self.queueLongBan.reset(msg)
 
74
                                                        duration = int(self.registryValue('durationLongBan',channel=channel))
 
75
                                                else:
 
76
                                                        duration = int(self.registryValue('durationBan',channel=channel))
 
77
                                                hostmask = irc.state.nickToHostmask(msg.nick)
 
78
                                                (nick, user, host) = ircutils.splitHostmask(hostmask)
 
79
                                                banmask = ircutils.joinHostmask('*', '*', host)
 
80
                                                irc.queueMsg(ircmsgs.ban(channel,banmask))
 
81
                                                if duration > 0:
 
82
                                                        def ub():
 
83
                                                                if channel in irc.state.channels and banmask in irc.state.channels[channel].bans:
 
84
                                                                        irc.queueMsg(ircmsgs.unban(channel, banmask))
 
85
                                                        schedule.addEvent(ub,time.time()+duration)
 
86
                                                reason = self.registryValue('reasonBan',channel=channel)
 
87
                                                reason = reason % utils.timeElapsed(duration)
 
88
                                        irc.queueMsg(ircmsgs.IrcMsg('remove %s %s : %s' % (channel, msg.nick, reason)))
 
89
                                        self.log.info('remove %s %s : %s' % (channel, msg.nick, reason))
 
90
#                                       irc.queueMsg(ircmsgs.kick(channel, msg.nick, reason))
 
91
Class = FloodProtect
 
92
 
 
93
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
 
94
 
 
95
 
 
96
 
 
97