From 542259fcd74707c046074823f965054d5349b219 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 1 Jan 2004 20:17:55 +0000 Subject: [PATCH] Added options to kban. --- src/Channel.py | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/src/Channel.py b/src/Channel.py index 84feb2aad..c6162a20e 100755 --- a/src/Channel.py +++ b/src/Channel.py @@ -39,6 +39,7 @@ __revision__ = "$Id$" import fix import time +import getopt from itertools import imap import conf @@ -168,18 +169,29 @@ class Channel(callbacks.Privmsg): kick = privmsgs.checkChannelCapability(kick, 'op') def kban(self, irc, msg, args): - """[] [] + """[] [] [--{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 only necessary if the message isn't sent in the channel itself. """ channel = privmsgs.getChannel(msg, args) - (bannedNick, length) = privmsgs.getArgs(args, optional=1) + (optlist, rest) = getopt.getopt(args, '', ['exact', 'nick', + 'user', 'host']) + print 'rest:', rest + (bannedNick, length) = privmsgs.getArgs(rest, optional=1) + print 'length:', length # Check that they're not trying to make us kickban ourself. - if bannedNick == irc.nick: + 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(msg, 'I cowardly refuse to kickban myself.') return @@ -194,7 +206,24 @@ class Channel(callbacks.Privmsg): irc.error(msg, 'I haven\'t seen %s.' % bannedNick) return capability = ircdb.makeChannelCapability(channel, 'op') - banmask = ircutils.banmask(bannedHostmask) + if optlist: + (nick, user, host) = ircutils.splitHostmask(bannedHostmask) + 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):