2003-04-08 10:40:50 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2003-09-03 20:45:29 +02:00
|
|
|
Enforcer: Enforces capabilities on a channel, watching MODEs, KICKs,
|
2004-01-31 00:47:30 +01:00
|
|
|
JOINs, etc. to make sure they match the channel's config. Also handles
|
|
|
|
auto-opping, auto-halfopping, or auto-voicing, as well as cycling an otherwise
|
|
|
|
empty channel in order to get ops.
|
2003-04-08 10:40:50 +02:00
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
2004-04-28 08:30:55 +02:00
|
|
|
__author__ = 'Jeremy Fincher (jemfinch) <jemfinch@users.sf.net>'
|
2003-11-25 09:23:47 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-04-08 10:40:50 +02:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.ircdb as ircdb
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.plugins as plugins
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.registry as registry
|
|
|
|
import supybot.callbacks as callbacks
|
2003-04-08 10:40:50 +02:00
|
|
|
|
2004-01-30 00:58:27 +01:00
|
|
|
def configure(advanced):
|
2004-07-25 20:24:51 +02:00
|
|
|
from supybot.questions import output, expect, anything, something, yn
|
2004-01-28 23:19:25 +01:00
|
|
|
conf.registerPlugin('Enforcer', True)
|
2004-01-31 00:47:30 +01:00
|
|
|
chanserv = anything("""What\'s the name of ChanServ on your network? If
|
2004-01-31 23:24:43 +01:00
|
|
|
there is no ChanServ on your network, just press
|
|
|
|
enter without entering anything.""")
|
|
|
|
revenge = yn('Do you want the bot to take revenge on rule breakers?')
|
2004-01-31 00:47:30 +01:00
|
|
|
conf.supybot.plugins.Enforcer.ChanServ.set(chanserv)
|
2004-01-28 23:19:25 +01:00
|
|
|
conf.supybot.plugins.Enforcer.takeRevenge.setValue(revenge)
|
2003-09-03 22:41:28 +02:00
|
|
|
|
2004-01-30 20:00:04 +01:00
|
|
|
class ValidNickOrEmptyString(registry.String):
|
|
|
|
def setValue(self, v):
|
|
|
|
if v and not ircutils.isNick(v):
|
|
|
|
raise registry.InvalidRegistryValue, \
|
|
|
|
'Value must be a valid nick or the empty string.'
|
|
|
|
self.value = v
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-27 16:36:49 +01:00
|
|
|
conf.registerPlugin('Enforcer')
|
2004-07-01 19:55:10 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'enforce',
|
|
|
|
registry.Boolean(True, """Determines whether the bot will enforce
|
|
|
|
capabilities on this channel. Basically, if False, it 'turns off' the
|
|
|
|
plugin for this channel."""))
|
2004-01-27 16:36:49 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'autoOp',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will automatically op
|
2004-01-30 17:33:21 +01:00
|
|
|
people with the <channel>,op capability when they join the channel."""))
|
2004-01-27 16:36:49 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'autoHalfop',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will automatically
|
2004-01-30 17:33:21 +01:00
|
|
|
halfop people with the <channel>,halfop capability when they join the
|
2004-01-27 16:36:49 +01:00
|
|
|
channel."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'autoVoice',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will automatically
|
2004-01-30 17:33:21 +01:00
|
|
|
voice people with the <channel>,voice capability when they join the
|
2004-01-27 16:36:49 +01:00
|
|
|
channel."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'takeRevenge',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will take revenge on
|
|
|
|
people who do things it doesn't like (somewhat like 'bitch mode' in other
|
|
|
|
IRC bots)."""))
|
2004-04-05 12:15:05 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'takeRevengeOnOps',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will even take
|
|
|
|
revenge on ops (people with the #channel,op capability) who violate the
|
|
|
|
channel configuration."""))
|
2004-01-30 20:00:04 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'cycleToGetOps',
|
|
|
|
registry.Boolean(True, """Determines whether the bot will cycle the channel
|
|
|
|
if it doesn't have ops and there's no one else in the channel."""))
|
|
|
|
# This is a network value, not a channel value.
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Enforcer, 'ChanServ',
|
|
|
|
ValidNickOrEmptyString('', """Determines what nick the bot will consider to
|
|
|
|
be the ChanServ on the network. ChanServ (on networks that support it) is
|
|
|
|
obviously beyond our abilities to enforce, and so we would ignore all
|
|
|
|
messages from it."""))
|
|
|
|
|
2003-04-08 10:40:50 +02:00
|
|
|
_chanCap = ircdb.makeChannelCapability
|
2004-01-27 16:36:49 +01:00
|
|
|
class Enforcer(callbacks.Privmsg):
|
2004-02-12 08:06:12 +01:00
|
|
|
"""Manages various things concerning channel security. Check out the
|
|
|
|
supybot.plugins.Enforcer.autoOp, supybot.plugins.Enforcer.autoHalfop,
|
|
|
|
supybot.plugins.Enforcer.autoVoice, supybot.plugins.Enforcer.takeRevenge,
|
|
|
|
supybot.plugins.Enforcer.cycleToGetOps, and
|
|
|
|
supybot.plugins.Enforcer.ChanServ to configure the behavior of this plugin.
|
|
|
|
"""
|
2004-01-31 00:47:30 +01:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
|
|
|
self.topics = ircutils.IrcDict()
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-04-08 10:40:50 +02:00
|
|
|
def doJoin(self, irc, msg):
|
|
|
|
channel = msg.args[0]
|
|
|
|
c = ircdb.channels.getChannel(channel)
|
|
|
|
if c.checkBan(msg.prefix):
|
|
|
|
irc.queueMsg(ircmsgs.ban(channel, ircutils.banmask(msg.prefix)))
|
|
|
|
irc.queueMsg(ircmsgs.kick(channel, msg.nick))
|
|
|
|
elif ircdb.checkCapability(msg.prefix, _chanCap(channel, 'op')):
|
2004-01-27 16:36:49 +01:00
|
|
|
if self.registryValue('autoOp', channel):
|
2003-10-29 01:04:30 +01:00
|
|
|
irc.queueMsg(ircmsgs.op(channel, msg.nick))
|
2003-04-08 10:40:50 +02:00
|
|
|
elif ircdb.checkCapability(msg.prefix, _chanCap(channel, 'halfop')):
|
2004-01-27 16:36:49 +01:00
|
|
|
if self.registryValue('autoHalfop', channel):
|
2003-10-29 01:04:30 +01:00
|
|
|
irc.queueMsg(ircmsgs.halfop(channel, msg.nick))
|
2003-04-08 10:40:50 +02:00
|
|
|
elif ircdb.checkCapability(msg.prefix, _chanCap(channel, 'voice')):
|
2004-01-27 16:36:49 +01:00
|
|
|
if self.registryValue('autoVoice', channel):
|
2003-10-29 01:04:30 +01:00
|
|
|
irc.queueMsg(ircmsgs.voice(channel, msg.nick))
|
2003-04-08 10:40:50 +02:00
|
|
|
|
|
|
|
def doTopic(self, irc, msg):
|
|
|
|
channel = msg.args[0]
|
|
|
|
topic = msg.args[1]
|
2004-01-31 00:47:30 +01:00
|
|
|
if msg.nick != irc.nick and channel in self.topics and \
|
2003-04-08 10:40:50 +02:00
|
|
|
not ircdb.checkCapabilities(msg.prefix,
|
|
|
|
(_chanCap(channel, 'op'),
|
|
|
|
_chanCap(channel, 'topic'))):
|
|
|
|
irc.queueMsg(ircmsgs.topic(channel, self.topics[channel]))
|
2004-01-27 16:36:49 +01:00
|
|
|
if self.registryValue('takeRevenge', channel):
|
2003-04-08 10:40:50 +02:00
|
|
|
irc.queueMsg(ircmsgs.kick(channel, msg.nick,
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.replies.noCapability() %
|
2004-01-09 00:03:48 +01:00
|
|
|
_chanCap(channel, 'topic')))
|
2003-04-08 10:40:50 +02:00
|
|
|
else:
|
|
|
|
self.topics[channel] = msg.args[1]
|
|
|
|
|
|
|
|
def do332(self, irc, msg):
|
|
|
|
# This command gets sent right after joining a channel.
|
|
|
|
(channel, topic) = msg.args[1:]
|
|
|
|
self.topics[channel] = topic
|
|
|
|
|
|
|
|
def _isProtected(self, channel, hostmask):
|
|
|
|
capabilities = [_chanCap(channel, 'op'),_chanCap(channel, 'protected')]
|
|
|
|
return ircdb.checkCapabilities(hostmask, capabilities)
|
|
|
|
|
2004-03-25 13:14:01 +01:00
|
|
|
def _isPowerful(self, irc, msg):
|
|
|
|
if msg.nick == irc.nick:
|
|
|
|
return True # It's me.
|
|
|
|
if not ircutils.isUserHostmask(msg.prefix):
|
|
|
|
return True # It's a server.
|
|
|
|
chanserv = self.registryValue('ChanServ')
|
|
|
|
if ircutils.nickEqual(msg.nick, chanserv):
|
|
|
|
return True # It's ChanServ.
|
|
|
|
capability = _chanCap(msg.args[0], 'op')
|
|
|
|
if ircdb.checkCapability(msg.prefix, capability):
|
|
|
|
return True # It's a chanop.
|
|
|
|
return False # Default.
|
|
|
|
|
2003-04-08 10:40:50 +02:00
|
|
|
def _revenge(self, irc, channel, hostmask):
|
2004-04-26 17:35:56 +02:00
|
|
|
nick = ircutils.nickFromHostmask(hostmask)
|
|
|
|
if irc.nick != nick:
|
|
|
|
irc.queueMsg(ircmsgs.ban(channel, ircutils.banmask(hostmask)))
|
|
|
|
irc.queueMsg(ircmsgs.kick(channel, nick))
|
|
|
|
else:
|
|
|
|
# This can happen if takeRevengeOnOps is True.
|
|
|
|
self.log.info('Tried to take revenge on myself. '
|
|
|
|
'Are you sure you want takeRevengeOnOps to be True?')
|
2003-04-08 10:40:50 +02:00
|
|
|
|
|
|
|
def doKick(self, irc, msg):
|
|
|
|
channel = msg.args[0]
|
|
|
|
kicked = msg.args[1].split(',')
|
|
|
|
deop = False
|
2004-04-05 12:15:05 +02:00
|
|
|
if not self._isPowerful(irc, msg) or \
|
|
|
|
self.registryValue('takeRevengeOnOps', channel):
|
2003-04-08 10:40:50 +02:00
|
|
|
for nick in kicked:
|
|
|
|
hostmask = irc.state.nickToHostmask(nick)
|
2003-09-11 12:27:49 +02:00
|
|
|
if nick == irc.nick:
|
|
|
|
# Must be a sendMsg so he joins the channel before MODEing.
|
|
|
|
irc.sendMsg(ircmsgs.join(channel))
|
|
|
|
deop = True
|
2003-04-08 10:40:50 +02:00
|
|
|
if self._isProtected(channel, hostmask):
|
|
|
|
deop = True
|
2004-03-25 13:14:01 +01:00
|
|
|
irc.queueMsg(ircmsgs.invite(msg.args[1], channel))
|
2003-04-08 10:40:50 +02:00
|
|
|
if deop:
|
|
|
|
deop = False
|
2004-01-27 16:36:49 +01:00
|
|
|
if self.registryValue('takeRevenge', channel):
|
2003-04-08 10:40:50 +02:00
|
|
|
self._revenge(irc, channel, msg.prefix)
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, msg.nick))
|
|
|
|
|
|
|
|
def doMode(self, irc, msg):
|
|
|
|
channel = msg.args[0]
|
2004-01-31 00:47:30 +01:00
|
|
|
chanserv = self.registryValue('ChanServ', channel)
|
2004-04-05 12:15:05 +02:00
|
|
|
if not ircutils.isChannel(channel) or \
|
2004-04-05 17:57:22 +02:00
|
|
|
(self._isPowerful(irc, msg) and
|
|
|
|
not self.registryValue('takeRevengeOnOps', channel)):
|
2003-04-08 10:40:50 +02:00
|
|
|
return
|
2004-03-25 13:14:01 +01:00
|
|
|
for (mode, value) in ircutils.separateModes(msg.args[1:]):
|
|
|
|
if value == msg.nick:
|
|
|
|
continue
|
|
|
|
elif mode == '+o' and value != irc.nick:
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if ircdb.checkCapability(channel,
|
|
|
|
ircdb.makeAntiCapability('op')):
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, value))
|
|
|
|
elif mode == '+h' and value != irc.nick:
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if ircdb.checkCapability(channel,
|
|
|
|
ircdb.makeAntiCapability('halfop')):
|
|
|
|
irc.queueMsg(ircmsgs.dehalfop(channel, value))
|
|
|
|
elif mode == '+v' and value != irc.nick:
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if ircdb.checkCapability(channel,
|
|
|
|
ircdb.makeAntiCapability('voice')):
|
|
|
|
irc.queueMsg(ircmsgs.devoice(channel, value))
|
|
|
|
elif mode == '-o':
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if self._isProtected(channel, hostmask):
|
|
|
|
irc.queueMsg(ircmsgs.op(channel, value))
|
|
|
|
if self.registryValue('takeRevenge', channel):
|
|
|
|
self._revenge(irc, channel, msg.prefix)
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, msg.nick))
|
|
|
|
elif mode == '-h':
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if self._isProtected(channel, hostmask):
|
|
|
|
irc.queueMsg(ircmsgs.halfop(channel, value))
|
|
|
|
if self.registryValue('takeRevenge', channel):
|
|
|
|
self._revenge(irc, channel, msg.prefix)
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, msg.nick))
|
|
|
|
elif mode == '-v':
|
|
|
|
hostmask = irc.state.nickToHostmask(value)
|
|
|
|
if self._isProtected(channel, hostmask):
|
|
|
|
irc.queueMsg(ircmsgs.voice(channel, value))
|
|
|
|
if self.registryValue('takeRevenge', channel):
|
|
|
|
self._revenge(irc, channel, msg.prefix)
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, msg.nick))
|
|
|
|
elif mode == '+b':
|
|
|
|
irc.queueMsg(ircmsgs.unban(channel, value))
|
|
|
|
if self.registryValue('takeRevenge', channel):
|
|
|
|
self._revenge(irc, channel, msg.prefix)
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.deop(channel, msg.nick))
|
2003-04-08 10:40:50 +02:00
|
|
|
|
2004-01-30 20:00:04 +01:00
|
|
|
def _cycle(self, irc, channel):
|
|
|
|
if self.registryValue('cycleToGetOps', channel):
|
|
|
|
if 'i' not in irc.state.channels[channel].modes:
|
2004-07-24 04:29:51 +02:00
|
|
|
# XXX: What about keywords?
|
2004-01-30 20:00:04 +01:00
|
|
|
self.log.info('Cycling %s: I\'m the only one left.', channel)
|
|
|
|
irc.queueMsg(ircmsgs.part(channel))
|
|
|
|
irc.queueMsg(ircmsgs.join(channel))
|
|
|
|
else:
|
2004-07-24 04:29:51 +02:00
|
|
|
self.log.info('Not cycling %s: it\'s +i', channel)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-30 20:00:04 +01:00
|
|
|
def doPart(self, irc, msg):
|
2004-01-31 00:47:30 +01:00
|
|
|
if msg.prefix != irc.prefix:
|
|
|
|
channel = msg.args[0]
|
2004-02-06 11:48:52 +01:00
|
|
|
c = irc.state.channels[channel]
|
|
|
|
if len(c.users) == 1:
|
|
|
|
if irc.nick not in c.ops:
|
|
|
|
self._cycle(irc, channel)
|
2004-01-30 20:00:04 +01:00
|
|
|
|
|
|
|
def doQuit(self, irc, msg):
|
|
|
|
for (channel, c) in irc.state.channels.iteritems():
|
|
|
|
if len(c.users) == 1:
|
|
|
|
self._cycle(irc, channel)
|
|
|
|
|
2003-04-08 10:40:50 +02:00
|
|
|
def __call__(self, irc, msg):
|
2004-07-01 19:55:10 +02:00
|
|
|
channel = msg.args[0]
|
|
|
|
if ircutils.isChannel(channel) and \
|
|
|
|
self.registryValue('enforce', channel):
|
|
|
|
chanserv = self.registryValue('ChanServ', irc.network)
|
|
|
|
if chanserv:
|
|
|
|
if ircutils.isUserHostmask(msg.prefix):
|
|
|
|
if msg.nick != chanserv:
|
|
|
|
callbacks.Privmsg.__call__(self, irc, msg)
|
|
|
|
else:
|
|
|
|
callbacks.Privmsg.__call__(self, irc, msg)
|
2003-04-08 10:40:50 +02:00
|
|
|
|
|
|
|
|
2003-09-03 20:45:29 +02:00
|
|
|
Class = Enforcer
|
2003-04-08 10:40:50 +02:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|