### # Copyright (c) 2002-2004, 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. ### """ Basic channel management commands. Many of these commands require their caller to have the .op capability. This plugin is loaded by default. """ import supybot __revision__ = "$Id$" __author__ = supybot.authors.jemfinch import supybot.fix as fix import sys import time import getopt from itertools import imap import supybot.conf as conf import supybot.ircdb as ircdb import supybot.utils as utils import supybot.ircmsgs as ircmsgs from supybot.commands import wrap import supybot.schedule as schedule import supybot.ircutils as ircutils import supybot.registry as registry import supybot.callbacks as callbacks conf.registerPlugin('Channel') conf.registerChannelValue(conf.supybot.plugins.Channel, 'alwaysRejoin', registry.Boolean(True, """Determines whether the bot will always try to rejoin a channel whenever it's kicked from the channel.""")) # XXX We need a lot of noReply calls in here; otherwise, we should add a # wrapper of some sort to handle that for us. Perhaps we can abstract out # the very repetitive commands.wrap calls in here while we're at it. class Channel(callbacks.Privmsg): def doKick(self, irc, msg): channel = msg.args[0] if msg.args[1] == irc.nick: if self.registryValue('alwaysRejoin', channel): irc.sendMsg(ircmsgs.join(channel)) # Fix for keys. def mode(self, irc, msg, args, channel): """[] [ ...] Sets the mode in to , sending the arguments given. is only necessary if the message isn't sent in the channel itself. """ irc.queueMsg(ircmsgs.mode(channel, args)) mode = wrap(mode, [('checkChannelCapability', 'op'), ('haveOp', 'change the mode')], requireExtra=True) def limit(self, irc, msg, args, channel, limit): """[] [] Sets the channel limit to . If is 0, or isn't given, removes the channel limit. is only necessary if the message isn't sent in the channel itself. """ if limit: irc.queueMsg(ircmsgs.mode(channel, ['+l', limit])) else: irc.queueMsg(ircmsgs.mode(channel, ['-l'])) limit = wrap(mode, [('checkChannelCapability', 'op'), ('haveOp', 'change the limit'), ('?nonNegativeInt', 0)]) def moderate(self, irc, msg, args, channel): """[] Sets +m on , making it so only ops and voiced users can send messages to the channel. is only necessary if the message isn't sent in the channel itself. """ irc.queueMsg(ircmsgs.mode(channel, ['+m'])) moderate = wrap(moderate, [('checkChannelCapability', 'op'), ('haveOp', 'moderate the channel')]) def unmoderate(self, irc, msg, args, channel): """[] Sets -m on , making it so everyone can send messages to the channel. is only necessary if the message isn't sent in the channel itself. """ irc.queueMsg(ircmsgs.mode(channel, ['-m'])) unmoderate = wrap(unmoderate, [('checkChannelCapability', 'op'), ('haveOp', 'unmoderate the channel')]) def key(self, irc, msg, args, channel, key): """[] [] Sets the keyword in to . If is not given, removes the keyword requirement to join . is only necessary if the message isn't sent in the channel itself. """ if key: irc.queueMsg(ircmsgs.mode(channel, ['+k', key])) else: irc.queueMsg(ircmsgs.mode(channel, ['-k'])) key = wrap(key, [('checkChannelCapability', 'op'), ('haveOp', 'change the keyword'), '?capability']) def op(self, irc, msg, args, channel): """[] [ ...] If you have the #channel,op capability, this will give all the s you provide ops. If you don't provide any s, this will op you. is only necessary if the message isn't sent in the channel itself. """ if not args: args = [msg.nick] irc.queueMsg(ircmsgs.ops(channel, args)) op = wrap(op, [('checkChannelCapability', 'op'), ('haveOp', 'op someone')], allowExtra=True) def halfop(self, irc, msg, args, channel): """[] If you have the #channel,halfop capability, this will give all the s you provide halfops. If you don't provide any s, this will give you halfops. is only necessary if the message isn't sent in the channel itself. """ if not args: args = [msg.nick] irc.queueMsg(ircmsgs.halfops(channel, args)) halfop = wrap(halfop, [('checkChannelCapability', 'halfop'), ('haveOp', 'halfop someone')], allowExtra=True) def voice(self, irc, msg, args, channel): """[] If you have the #channel,voice capability, this will voice all the s you provide. If you don't provide any s, this will voice you. is only necessary if the message isn't sent in the channel itself. """ if not args: args = [msg.nick] irc.queueMsg(ircmsgs.voices(channel, args)) voice = wrap(voice, [('checkChannelCapability', 'voice'), ('haveOp', 'voice someone')], allowExtra=True) def deop(self, irc, msg, args, channel): """[] [ ...] If you have the #channel,op capability, this will remove operator privileges from all the nicks given. If no nicks are given, removes operator privileges from the person sending the message. """ if not args: args.append(msg.nick) if irc.nick in args: irc.error('I cowardly refuse to deop myself. If you really want ' 'me deopped, tell me to op you and then deop me ' 'yourself.') else: irc.queueMsg(ircmsgs.deops(channel, args)) deop = wrap(deop, [('checkChannelCapability', 'op'), ('haveOp', 'deop someone')], allowExtra=True) def dehalfop(self, irc, msg, args, channel): """[] [ ...] If you have the #channel,op capability, this will remove half-operator privileges from all the nicks given. If no nicks are given, removes half-operator privileges from the person sending the message. """ if not args: args.append(msg.nick) if irc.nick in args: irc.error('I cowardly refuse to dehalfop myself. If you really ' 'want me dehalfopped, tell me to op you and then ' 'dehalfop me yourself.') else: irc.queueMsg(ircmsgs.dehalfops(channel, args)) dehalfop = wrap(dehalfop, [('checkChannelCapability', 'halfop'), ('haveOp', 'dehalfop someone')],allowExtra=True) def devoice(self, irc, msg, args, channel): """[] [ ...] If you have the #channel,op capability, this will remove voice from all the nicks given. If no nicks are given, removes voice from the person sending the message. """ if not args: args.append(msg.nick) if irc.nick in args: irc.error('I cowardly refuse to devoice myself. If you really ' 'want me devoiced, tell me to op you and then devoice ' 'me yourself.') else: irc.queueMsg(ircmsgs.devoices(channel, args)) devoice = wrap(devoice, [('checkChannelCapability', 'voice'), ('haveOp', 'devoice someone')], allowExtra=True) def cycle(self, irc, msg, args, channel, key): """[] [] If you have the #channel,op capability, this will cause the bot to "cycle", or PART and then JOIN the channel. If is given, join the channel using that key. is only necessary if the message isn't sent in the channel itself. """ if not key: key = None irc.queueMsg(ircmsgs.part(channel)) irc.queueMsg(ircmsgs.join(channel, key)) irc.noReply() cycle = wrap(cycle, [('checkChannelCapability','op'),'?anything']) def kick(self, irc, msg, args, channel, nick, reason): """[] [] Kicks from for . If isn't given, uses the nick of the person making the command as the reason. is only necessary if the message isn't sent in the channel itself. """ if nick not in irc.state.channels[channel].users: irc.error('%s isn\'t in %s.' % (nick, channel)) return if not reason: reason = msg.nick kicklen = irc.state.supported.get('kicklen', sys.maxint) if len(reason) > kicklen: irc.error('The reason you gave is longer than the allowed ' 'length for a KICK reason on this server.') return irc.queueMsg(ircmsgs.kick(channel, nick, reason)) irc.noReply() kick = wrap(kick, [('checkChannelCapability', 'op'), ('haveOp', 'kick someone'), 'nick', '?anything']) def kban(self, irc, msg, args, optlist, channel, bannedNick, length, reason): """[] [--{exact,nick,user,host}] [] [] If you have the #channel,op capability, this will kickban for as many seconds as you specify, or else (if you specify 0 seconds or don't specify a number of seconds) it will ban the person indefinitely. --exact bans only the exact hostmask; --nick bans just the nick; --user bans just the user, and --host bans just the host. You can combine these options as you choose. is a reason to give for the kick. is only necessary if the message isn't sent in the channel itself. """ # Check that they're not trying to make us kickban ourself. self.log.debug('In kban') if not ircutils.isNick(bannedNick): self.log.warning('%r tried to kban a non nick: %r', msg.prefix, bannedNick) raise callbacks.ArgumentError elif bannedNick == irc.nick: self.log.warning('%r tried to make me kban myself.', msg.prefix) irc.error('I cowardly refuse to kickban myself.') return if not reason: reason = msg.nick try: bannedHostmask = irc.state.nickToHostmask(bannedNick) except KeyError: irc.error('I haven\'t seen %s.' % bannedNick, Raise=True) capability = ircdb.makeChannelCapability(channel, 'op') if optlist: (nick, user, host) = ircutils.splitHostmask(bannedHostmask) self.log.debug('*** nick: %s' % nick) self.log.debug('*** user: %s' % user) self.log.debug('*** host: %s' % host) bnick = '*' buser = '*' bhost = '*' for (option, _) in optlist: if option == 'nick': bnick = nick elif option == 'user': buser = user elif option == 'host': bhost = host elif option == 'exact': (bnick, buser, bhost) = \ ircutils.splitHostmask(bannedHostmask) banmask = ircutils.joinHostmask(bnick, buser, bhost) else: banmask = ircutils.banmask(bannedHostmask) # Check (again) that they're not trying to make us kickban ourself. if ircutils.hostmaskPatternEqual(banmask, irc.prefix): if ircutils.hostmaskPatternEqual(banmask, irc.prefix): self.log.warning('%r tried to make me kban myself.',msg.prefix) irc.error('I cowardly refuse to ban myself.') return else: banmask = bannedHostmask # Now, let's actually get to it. Check to make sure they have # #channel,op and the bannee doesn't have #channel,op; or that the # bannee and the banner are both the same person. def doBan(): if bannedNick in irc.state.channels[channel].ops: irc.queueMsg(ircmsgs.deop(channel, bannedNick)) irc.queueMsg(ircmsgs.ban(channel, banmask)) irc.queueMsg(ircmsgs.kick(channel, bannedNick, reason)) if length > 0: def f(): if channel in irc.state.channels and \ banmask in irc.state.channels[channel].bans: irc.queueMsg(ircmsgs.unban(channel, banmask)) schedule.addEvent(f, time.time() + length) if bannedNick == msg.nick: doBan() elif ircdb.checkCapability(msg.prefix, capability): if ircdb.checkCapability(bannedHostmask, capability): self.log.warning('%s tried to ban %r, but both have %s', msg.prefix, bannedHostmask, capability) irc.error('%s has %s too, you can\'t ban him/her/it.' % (bannedNick, capability)) else: doBan() else: self.log.warning('%r attempted kban without %s', msg.prefix, capability) irc.errorNoCapability(capability) exact,nick,user,host kban = wrap(kban, [('checkChannelCapability', 'op'), ('haveOp', 'kick or ban someone'), 'nick', ('expiry?', 0), '?anything'], getopts={'exact': None, 'nick': None, 'user': None, 'host': None}) def unban(self, irc, msg, args, channel, hostmask): """[] Unbans on . Especially useful for unbanning yourself when you get unexpectedly (or accidentally) banned from the channel. is only necessary if the message isn't sent in the channel itself. """ irc.queueMsg(ircmsgs.unban(channel, hostmask)) unban = wrap(unban, [('checkChannelCapability', 'op'), ('haveOp', 'unban someone'), 'hostmask']) def invite(self, irc, msg, args, channel, nick): """[] If you have the #channel,op capability, this will invite to join . is only necessary if the message isn't sent in the channel itself. """ irc.queueMsg(ircmsgs.invite(nick, channel)) invite = wrap(invite, [('checkChannelCapability', 'op'), ('haveOp', 'invite someone'), 'nick']) def lobotomize(self, irc, msg, args, channel): """[] If you have the #channel,op capability, this will "lobotomize" the bot, making it silent and unanswering to all requests made in the channel. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.lobotomized = True ircdb.channels.setChannel(channel, c) irc.replySuccess() lobotomize = wrap(lobotomize, [('checkChannelCapability', 'op')]) def unlobotomize(self, irc, msg, args, channel): """[] If you have the #channel,op capability, this will unlobotomize the bot, making it respond to requests made in the channel again. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.lobotomized = False ircdb.channels.setChannel(channel, c) irc.replySuccess() unlobotomize = wrap(unlobotomize, [('checkChannelCapability', 'op')]) def permban(self, irc, msg, args, channel, banmask, expires): """[] [] If you have the #channel,op capability, this will effect a permanent (persistent) ban from interacting with the bot on the given (or the current hostmask associated with . Other plugins may enforce this ban by actually banning users with matching hostmasks when they join. is an optional argument specifying when (in "seconds from now") the ban should expire; if none is given, the ban will never automatically expire. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.addBan(banmask, expires) ircdb.channels.setChannel(channel, c) irc.replySuccess() permban = wrap(permban, [('checkChannelCapability', 'op'), 'hostmask', ('?expiry', 0)]) def unpermban(self, irc, msg, args, channel, banmask): """[] If you have the #channel,op capability, this will remove the permanent ban on . is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.removeBan(banmask) ircdb.channels.setChannel(channel, c) irc.replySuccess() unpermban = wrap(unpermban, [('checkChannelCapability', 'op'), 'hostmask']) def permbans(self, irc, msg, args, channel): """[] If you have the #channel,op capability, this will show you the current bans on #channel. """ # XXX Add the expirations. c = ircdb.channels.getChannel(channel) if c.bans: irc.reply(utils.commaAndify(map(utils.dqrepr, c.bans))) else: irc.reply('There are currently no permanent bans on %s' % channel) permbans = wrap(permbans, [('checkChannelCapability', 'op')]) def ignore(self, irc, msg, args, channel, banmask, expires): """[] [] If you have the #channel,op capability, this will set a permanent (persistent) ignore on or the hostmask currently associated with . is an optional argument specifying when (in "seconds from now") the ignore will expire; if it isn't given, the ignore will never automatically expire. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.addIgnore(banmask, expires) ircdb.channels.setChannel(channel, c) irc.replySuccess() ignore = wrap(ignore, [('checkChannelCapability', 'op'), 'hostmask', ('?expiry', 0)]) def unignore(self, irc, msg, args, channel, banmask): """[] If you have the #channel,op capability, this will remove the permanent ignore on in the channel. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) c.removeIgnore(banmask) ircdb.channels.setChannel(channel, c) irc.replySuccess() unignore = wrap(unignore, [('checkChannelCapability', 'op'), 'hostmask']) def ignores(self, irc, msg, args, channel): """[] Lists the hostmasks that the bot is ignoring on the given channel. is only necessary if the message isn't sent in the channel itself. """ # XXX Add the expirations. c = ircdb.channels.getChannel(channel) if len(c.ignores) == 0: s = 'I\'m not currently ignoring any hostmasks in %r' % channel irc.reply(s) else: L = sorted(c.ignores) irc.reply(utils.commaAndify(imap(repr, L))) ignores = wrap(ignores, [('checkChannelCapability', 'op')]) def addcapability(self, irc, msg, args, channel, hostmask, capabilities): """[] [ ...] If you have the #channel,op capability, this will give the user currently identified as (or the user to whom maps) the capability in the channel. is only necessary if the message isn't sent in the channel itself. """ try: id = ircdb.users.getUserId(hostmask) user = ircdb.users.getUser(id) except KeyError: irc.errorNoUser(Raise=True) for c in capabilities.split(): c = ircdb.makeChannelCapability(channel, c) user.addCapability(c) ircdb.users.setUser(id, user) irc.replySuccess() addcapability = wrap(addcapability, [('checkChannelCapability', 'op'), 'hostmask', 'capability']) def removecapability(self, irc, msg, args, channel, hostmask, capabilities): """[] [ ...] If you have the #channel,op capability, this will take from the user currently identified as (or the user to whom maps) the capability in the channel. is only necessary if the message isn't sent in the channel itself. """ try: id = ircdb.users.getUserId(hostmask) except KeyError: irc.errorNoUser(Raise=True) user = ircdb.users.getUser(id) fail = [] for c in capabilities.split(): cap = ircdb.makeChannelCapability(channel, c) try: user.removeCapability(cap) except KeyError: fail.append(c) ircdb.users.setUser(id, user) if fail: irc.error('That user didn\'t have the %s %s.' % (utils.commaAndify(fail), utils.pluralize('capability', len(fail))), Raise=True) irc.replySuccess() removecapability = wrap(removecapability, [('checkChannelCapability', 'op'), 'hostmask', 'capability']) # XXX This needs to be fix0red to be like Owner.defaultcapability. Or # something else. This is a horrible interface. def setdefaultcapability(self, irc, msg, args, channel, v): """[] {True|False} If you have the #channel,op capability, this will set the default response to non-power-related (that is, not {op, halfop, voice} capabilities to be the value you give. is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) if v: c.setDefaultCapability(True) else: c.setDefaultCapability(False) ircdb.channels.setChannel(channel, c) irc.replySuccess() setdefaultcapability = wrap(setdefaultcapability, [('checkChannelCapability', 'op'), 'boolean']) def setcapability(self, irc, msg, args, channel, capabilities): """[] [ ...] If you have the #channel,op capability, this will add the channel capability for all users in the channel. is only necessary if the message isn't sent in the channel itself. """ chan = ircdb.channels.getChannel(channel) for c in capabilities: chan.addCapability(c) ircdb.channels.setChannel(channel, chan) irc.replySuccess() setcapability = wrap(setcapability, [('checkChannelCapability', 'op'), 'capability+']) def unsetcapability(self, irc, msg, args, channel, capabilities): """[] [ ...] If you have the #channel,op capability, this will unset the channel capability so each user's specific capability or the channel default capability will take precedence. is only necessary if the message isn't sent in the channel itself. """ chan = ircdb.channels.getChannel(channel) fail = [] for c in capabilities: try: chan.removeCapability(c) except KeyError: fail.append(c) ircdb.channels.setChannel(channel, chan) if fail: irc.error('I do not know about the %s %s.' % (utils.commaAndify(fail), utils.pluralize('capability', len(fail))), Raise=True) irc.replySuccess() unsetcapability = wrap(unsetcapability, [('checkChannelCapability', 'op'), 'capability+']) def capabilities(self, irc, msg, args, channel): """[] Returns the capabilities present on the . is only necessary if the message isn't sent in the channel itself. """ c = ircdb.channels.getChannel(channel) L = sorted(c.capabilities) irc.reply(' '.join(L)) capabilities = wrap(capabilities, ['channel']) def lobotomies(self, irc, msg, args): """takes no arguments Returns the channels in which this bot is lobotomized. """ L = [] for (channel, c) in ircdb.channels.iteritems(): if c.lobotomized: L.append(channel) if L: L.sort() s = 'I\'m currently lobotomized in %s.' % utils.commaAndify(L) irc.reply(s) else: irc.reply('I\'m not currently lobotomized in any channels.') def nicks(self, irc, msg, args, channel): """[] Returns the nicks in . is only necessary if the message isn't sent in the channel itself. """ L = list(irc.state.channels[channel].users) utils.sortBy(str.lower, L) irc.reply(utils.commaAndify(L)) nicks = wrap(nicks, ['channel']) def alertOps(self, irc, channel, s, frm=None): """Internal message for notifying all the #channel,ops in a channel of a given situation.""" capability = ircdb.makeChannelCapability(channel, 'op') s = 'Alert to all %s ops: %s' % (channel, s) if frm is not None: s += ' (from %s)' % frm for nick in irc.state.channels[channel].users: hostmask = irc.state.nickToHostmask(nick) if ircdb.checkCapability(hostmask, capability): irc.reply(s, to=nick, private=True) def alert(self, irc, msg, args, channel, text): """[] Sends to all the users in who have the ,op capability. """ self.alertOps(irc, channel, text, frm=msg.nick) alert = wrap(alert, [('checkChannelCapability', 'op'), 'text']) Class = Channel # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: