mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
Updated.
This commit is contained in:
parent
0ff6b8927c
commit
3944b00001
@ -36,13 +36,14 @@ bots. This module makes supybot automatically part certain channels as soon
|
||||
as he joins.
|
||||
"""
|
||||
|
||||
import plugins
|
||||
import sets
|
||||
|
||||
import conf
|
||||
import utils
|
||||
import ircdb
|
||||
import ircmsgs
|
||||
import ircutils
|
||||
import plugins
|
||||
import privmsgs
|
||||
import callbacks
|
||||
|
||||
@ -78,34 +79,30 @@ example = utils.wrapLines("""
|
||||
""")
|
||||
|
||||
class Parter(callbacks.Privmsg):
|
||||
def autopartchannel(self, irc, msg, args):
|
||||
def __init__(self):
|
||||
super(self.__class__, self).__init__()
|
||||
self.channels = sets.Set([])
|
||||
|
||||
def autopart(self, irc, msg, args):
|
||||
"""<channel>
|
||||
|
||||
|
||||
Makes the bot part <channel> automatically, as soon as he joins it.
|
||||
"""
|
||||
channel = privmsgs.getArgs(args)
|
||||
if ircdb.checkCapability(msg.prefix, 'admin'):
|
||||
if not hasattr(self, 'channels'):
|
||||
self.channels = [channel]
|
||||
else:
|
||||
self.channels.append(channel)
|
||||
self.channels.add(channel)
|
||||
irc.reply(msg, conf.replySuccess)
|
||||
else:
|
||||
irc.error(msg, conf.replyNoCapability % 'admin')
|
||||
autopart = privmsgs.checkCapability(autopart, 'admin')
|
||||
|
||||
def removeautopartchannel(self, irc, msg, args):
|
||||
def removeautopart(self, irc, msg, args):
|
||||
"""<channel>
|
||||
|
||||
Removes the channel from the auto-part list.
|
||||
"""
|
||||
channel = privmsgs.getArgs(args)
|
||||
if ircdb.checkCapability(msg.prefix, 'admin'):
|
||||
if hasattr(self, 'channels'):
|
||||
self.channels = [x for x in self.channels if x != channel]
|
||||
self.channels.discard(channel)
|
||||
irc.reply(msg, conf.replySuccess)
|
||||
else:
|
||||
irc.error(msg, conf.replyNoCapability % 'admin')
|
||||
removeautopart = privmsgs.checkCapability(removeautopart, 'admin')
|
||||
|
||||
def doJoin(self, irc, msg):
|
||||
if irc.nick == msg.nick:
|
||||
|
@ -36,7 +36,7 @@ import ircmsgs
|
||||
class ParterTestCase(PluginTestCase, PluginDocumentation):
|
||||
plugins = ('Parter',)
|
||||
def test(self):
|
||||
self.assertNotError('autopartchannel #foo')
|
||||
self.assertNotError('autopart #foo')
|
||||
self.irc.feedMsg(ircmsgs.join('#foo', prefix=self.prefix))
|
||||
m = self.getMsg(' ')
|
||||
if m.command == 'WHO':
|
||||
|
Loading…
Reference in New Issue
Block a user