2003-03-12 07:26:59 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-03-12 07:26:59 +01:00
|
|
|
# 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-03-25 07:53:51 +01:00
|
|
|
"""
|
|
|
|
Provides commands for manipulating channel topics.
|
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
2004-04-30 10:13:12 +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-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import random
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
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-03-12 07:26:59 +01:00
|
|
|
|
2004-08-21 11:49:45 +02:00
|
|
|
class TopicFormat(registry.String):
|
|
|
|
"Value must include $topic, otherwise the actual topic would be left out."
|
|
|
|
def setValue(self, v):
|
|
|
|
if '$topic' in v or '${topic}' in v:
|
|
|
|
registry.String.setValue(self, v)
|
|
|
|
else:
|
|
|
|
self.error()
|
|
|
|
|
2004-08-25 01:00:48 +02:00
|
|
|
conf.registerPlugin('Topic')
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Topic, 'separator',
|
|
|
|
registry.StringSurroundedBySpaces(' || ', """Determines what separator is
|
|
|
|
used between individually added topics in the channel topic."""))
|
2004-08-21 09:30:39 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Topic, 'format',
|
2004-08-21 11:49:45 +02:00
|
|
|
TopicFormat('$topic ($nick)', """Determines what format is used to add
|
2004-08-21 09:30:39 +02:00
|
|
|
topics in the topic. All the standard substitutes apply, in addiction to
|
|
|
|
"$topic" for the topic itself."""))
|
2004-08-25 00:25:43 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Topic, 'recognizeTopiclen',
|
|
|
|
registry.Boolean(True, """Determines whether the bot will recognize the
|
|
|
|
TOPICLEN value sent to it by the server and thus refuse to send TOPICs
|
|
|
|
longer than the TOPICLEN. These topics are likely to be truncated by the
|
|
|
|
server anyway, so this defaults to True."""))
|
2004-08-25 01:00:48 +02:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Topic, 'default',
|
|
|
|
registry.String('', """Determines what the default topic for the channel
|
|
|
|
is. This is used by the default command to set this topic."""))
|
2004-08-25 00:48:56 +02:00
|
|
|
conf.registerGroup(conf.supybot.plugins.Topic, 'undo')
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Topic.undo, 'max',
|
|
|
|
registry.NonNegativeInteger(10, """Determines the number of previous
|
|
|
|
topics to keep around in case the undo command is called."""))
|
2004-01-26 20:17:59 +01:00
|
|
|
|
|
|
|
class Topic(callbacks.Privmsg):
|
2004-04-27 13:04:36 +02:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
2004-08-25 00:48:56 +02:00
|
|
|
self.undos = ircutils.IrcDict()
|
2004-04-27 13:04:36 +02:00
|
|
|
self.lastTopics = ircutils.IrcDict()
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-12-02 17:26:08 +01:00
|
|
|
def _splitTopic(self, topic, channel):
|
2004-01-26 20:17:59 +01:00
|
|
|
separator = self.registryValue('separator', channel)
|
2003-12-02 17:26:08 +01:00
|
|
|
return filter(None, topic.split(separator))
|
|
|
|
|
2004-04-27 13:04:36 +02:00
|
|
|
def _joinTopic(self, channel, topics):
|
2004-01-26 20:17:59 +01:00
|
|
|
separator = self.registryValue('separator', channel)
|
2003-12-02 17:26:08 +01:00
|
|
|
return separator.join(topics)
|
2003-10-28 06:49:31 +01:00
|
|
|
|
2004-08-21 09:30:39 +02:00
|
|
|
def _formatTopic(self, irc, msg, channel, topic):
|
|
|
|
formatter = self.registryValue('format', channel)
|
|
|
|
env = {'topic': topic}
|
|
|
|
return plugins.standardSubstitute(irc, msg, formatter, env)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-08-25 00:48:56 +02:00
|
|
|
def _addUndo(self, channel, topics):
|
|
|
|
try:
|
|
|
|
stack = self.undos[channel]
|
|
|
|
except KeyError:
|
|
|
|
stack = []
|
|
|
|
self.undos[channel] = stack
|
|
|
|
stack.append(topics)
|
|
|
|
maxLen = self.registryValue('undo.max', channel)
|
|
|
|
while len(stack) > maxLen:
|
|
|
|
del stack[0]
|
|
|
|
|
|
|
|
def _getUndo(self, channel):
|
|
|
|
try:
|
|
|
|
return self.undos[channel].pop()
|
|
|
|
except (KeyError, IndexError):
|
|
|
|
return None
|
|
|
|
|
2004-08-25 00:03:13 +02:00
|
|
|
def _sendTopics(self, irc, channel, topics):
|
2004-04-27 13:04:36 +02:00
|
|
|
topics = [s for s in topics if s and not s.isspace()]
|
|
|
|
self.lastTopics[channel] = topics
|
|
|
|
newTopic = self._joinTopic(channel, topics)
|
2004-08-25 00:25:43 +02:00
|
|
|
try:
|
|
|
|
maxLen = irc.state.supported['topiclen']
|
|
|
|
if len(newTopic) > maxLen:
|
|
|
|
if self.registryValue('recognizeTopiclen', channel):
|
|
|
|
irc.error('That topic is too long for this server '
|
|
|
|
'(maximum length: %s).' % maxLen, Raise=True)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2004-08-25 00:48:56 +02:00
|
|
|
self._addUndo(channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
irc.queueMsg(ircmsgs.topic(channel, newTopic))
|
|
|
|
|
2004-08-24 16:06:19 +02:00
|
|
|
def _canChangeTopic(self, irc, channel):
|
|
|
|
c = irc.state.channels[channel]
|
|
|
|
if irc.nick not in c.ops and 't' in c.modes:
|
|
|
|
irc.error('I can\'t change the topic, I\'m not opped and %s '
|
|
|
|
'is +t.' % channel, Raise=True)
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2004-08-27 09:06:59 +02:00
|
|
|
def _topicNumber(self, irc, n, topics=None, normalize=False):
|
2004-08-25 00:03:13 +02:00
|
|
|
try:
|
|
|
|
n = int(n)
|
|
|
|
if not n:
|
|
|
|
raise ValueError
|
|
|
|
if n > 0:
|
|
|
|
n -= 1
|
|
|
|
if topics is not None:
|
|
|
|
topics[n]
|
2004-08-27 09:06:59 +02:00
|
|
|
if normalize:
|
|
|
|
assert topics, 'Can\'t normalize without topics.'
|
|
|
|
if n < 0:
|
|
|
|
n += len(topics)
|
2004-08-25 00:03:13 +02:00
|
|
|
return n
|
|
|
|
except (ValueError, IndexError):
|
|
|
|
irc.error('That\'s not a valid topic number.', Raise=True)
|
|
|
|
|
|
|
|
def add(self, irc, msg, args, channel, insert=False):
|
2003-04-16 09:11:28 +02:00
|
|
|
"""[<channel>] <topic>
|
|
|
|
|
|
|
|
Adds <topic> to the topics for <channel>. <channel> is only necessary
|
|
|
|
if the message isn't sent in the channel itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2003-03-12 07:26:59 +01:00
|
|
|
topic = privmsgs.getArgs(args)
|
2004-01-26 20:17:59 +01:00
|
|
|
separator = self.registryValue('separator', channel)
|
2003-12-02 17:26:08 +01:00
|
|
|
if separator in topic:
|
|
|
|
s = 'You can\'t have %s in your topic' % separator
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error(s)
|
2003-09-18 00:38:03 +02:00
|
|
|
return
|
2004-08-25 00:03:13 +02:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2004-08-21 09:30:39 +02:00
|
|
|
formattedTopic = self._formatTopic(irc, msg, channel, topic)
|
2004-08-25 00:03:13 +02:00
|
|
|
if insert:
|
|
|
|
topics.insert(0, formattedTopic)
|
|
|
|
else:
|
|
|
|
topics.append(formattedTopic)
|
|
|
|
self._sendTopics(irc, channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
add = privmsgs.channel(add)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2004-08-25 00:03:13 +02:00
|
|
|
def insert(self, irc, msg, args):
|
|
|
|
"""[<channel>] <topic>
|
|
|
|
|
|
|
|
Adds <topic> to the topics for <channel> at the beginning of the topics
|
|
|
|
currently on <channel>. <channel> is only necessary if the message
|
|
|
|
isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
self.add(irc, msg, args, insert=True)
|
|
|
|
|
2003-10-21 06:03:25 +02:00
|
|
|
def shuffle(self, irc, msg, args, channel):
|
2003-04-16 09:11:28 +02:00
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Shuffles the topics in <channel>. <channel> is only necessary if the
|
|
|
|
message isn't sent in the channel itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2003-09-18 00:38:03 +02:00
|
|
|
newtopic = irc.state.getTopic(channel)
|
2003-12-02 17:26:08 +01:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2003-10-28 06:49:31 +01:00
|
|
|
if len(topics) == 0 or len(topics) == 1:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('I can\'t shuffle 1 or fewer topics.')
|
2003-10-28 06:49:31 +01:00
|
|
|
return
|
|
|
|
elif len(topics) == 2:
|
|
|
|
topics.reverse()
|
|
|
|
else:
|
2004-04-27 13:04:36 +02:00
|
|
|
original = topics[:]
|
|
|
|
while topics == original:
|
2003-10-28 06:49:31 +01:00
|
|
|
random.shuffle(topics)
|
2004-08-25 00:03:13 +02:00
|
|
|
self._sendTopics(irc, channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
shuffle = privmsgs.channel(shuffle)
|
2003-09-18 00:38:03 +02:00
|
|
|
|
2003-12-09 15:05:32 +01:00
|
|
|
def reorder(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>] <number> [<number> ...]
|
|
|
|
|
|
|
|
Reorders the topics from <channel> in the order of the specified
|
|
|
|
<number> arguments. <number> is a one-based index into the topics.
|
|
|
|
<channel> is only necessary if the message isn't sent in the channel
|
|
|
|
itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2003-12-09 15:05:32 +01:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2003-12-09 16:57:19 +01:00
|
|
|
num = len(topics)
|
|
|
|
if num == 0 or num == 1:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('I cannot reorder 1 or fewer topics.')
|
2003-12-09 16:57:19 +01:00
|
|
|
return
|
|
|
|
if len(args) != num:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('All topic numbers must be specified.')
|
2003-12-09 16:57:19 +01:00
|
|
|
return
|
|
|
|
order = privmsgs.getArgs(args, required=num)
|
2004-08-25 00:03:13 +02:00
|
|
|
for i,p in enumerate(order):
|
|
|
|
order[i] = self._topicNumber(irc, p, topics=topics)
|
|
|
|
if order[i] < 0:
|
|
|
|
order[i] += num
|
|
|
|
if sorted(order) != range(num):
|
|
|
|
irc.error('Duplicate topic numbers cannot be specified.')
|
|
|
|
return
|
|
|
|
newtopics = [topics[i] for i in order]
|
|
|
|
self._sendTopics(irc, channel, newtopics)
|
2004-04-27 13:04:36 +02:00
|
|
|
reorder = privmsgs.channel(reorder)
|
2003-12-09 15:05:32 +01:00
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
def list(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>] <number>
|
|
|
|
|
|
|
|
Returns a list of the topics in <channel>, prefixed by their indexes.
|
|
|
|
Mostly useful for topic reordering. <channel> is only necessary if the
|
|
|
|
message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
|
|
|
L = []
|
|
|
|
for (i, t) in enumerate(topics):
|
|
|
|
L.append('%s: %s' % (i+1, utils.ellipsisify(t, 30)))
|
|
|
|
s = utils.commaAndify(L)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2003-12-12 16:41:33 +01:00
|
|
|
list = privmsgs.channel(list)
|
|
|
|
|
2003-10-21 06:03:25 +02:00
|
|
|
def get(self, irc, msg, args, channel):
|
2003-04-16 09:11:28 +02:00
|
|
|
"""[<channel>] <number>
|
|
|
|
|
2003-10-03 12:09:49 +02:00
|
|
|
Returns topic number <number> from <channel>. <number> is a one-based
|
2003-04-16 09:11:28 +02:00
|
|
|
index into the topics. <channel> is only necessary if the message
|
|
|
|
isn't sent in the channel itself.
|
|
|
|
"""
|
2003-10-02 07:58:53 +02:00
|
|
|
number = privmsgs.getArgs(args)
|
2003-12-02 17:26:08 +01:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2003-10-28 06:49:31 +01:00
|
|
|
if topics:
|
2004-08-25 00:03:13 +02:00
|
|
|
number = self._topicNumber(irc, number, topics=topics)
|
|
|
|
irc.reply(topics[number])
|
2003-10-28 06:49:31 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('There are no topics to get.')
|
2003-10-21 06:03:25 +02:00
|
|
|
get = privmsgs.channel(get)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-10-21 06:03:25 +02:00
|
|
|
def change(self, irc, msg, args, channel):
|
2003-04-16 09:11:28 +02:00
|
|
|
"""[<channel>] <number> <regexp>
|
|
|
|
|
|
|
|
Changes the topic number <number> on <channel> according to the regular
|
2003-10-03 12:09:49 +02:00
|
|
|
expression <regexp>. <number> is the one-based index into the topics;
|
2003-04-16 09:11:28 +02:00
|
|
|
<regexp> is a regular expression of the form
|
|
|
|
s/regexp/replacement/flags. <channel> is only necessary if the message
|
|
|
|
isn't sent in the channel itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2003-11-11 14:20:06 +01:00
|
|
|
(number, regexp) = privmsgs.getArgs(args, required=2)
|
2004-08-25 00:03:13 +02:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
|
|
|
if not topics:
|
|
|
|
irc.error('There are no topics to change.')
|
2003-03-28 18:30:10 +01:00
|
|
|
return
|
2004-08-25 00:03:13 +02:00
|
|
|
number = self._topicNumber(irc, number, topics=topics)
|
2003-04-16 09:11:28 +02:00
|
|
|
try:
|
|
|
|
replacer = utils.perlReToReplacer(regexp)
|
|
|
|
except ValueError, e:
|
2004-08-25 00:03:13 +02:00
|
|
|
irc.error('The regexp wasn\'t valid: %s' % e)
|
2003-10-28 06:49:31 +01:00
|
|
|
return
|
2004-08-25 00:03:13 +02:00
|
|
|
topics[number] = replacer(topics[number])
|
|
|
|
self._sendTopics(irc, channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
change = privmsgs.channel(change)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2004-08-25 00:03:13 +02:00
|
|
|
def set(self, irc, msg, args, channel):
|
2004-08-25 01:06:16 +02:00
|
|
|
"""[<channel>] [<number>] <topic>
|
2004-08-25 00:03:13 +02:00
|
|
|
|
2004-08-25 01:06:16 +02:00
|
|
|
Sets the topic <number> to be <text>. If no <number> is given, this
|
|
|
|
sets the entire topic. <channel> is only necessary if the message
|
|
|
|
isn't sent in the channel itself.
|
2004-08-25 00:03:13 +02:00
|
|
|
"""
|
|
|
|
self._canChangeTopic(irc, channel)
|
2004-08-25 01:06:16 +02:00
|
|
|
(i, topic) = privmsgs.getArgs(args, optional=1)
|
2004-08-25 00:03:13 +02:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2004-08-25 01:06:16 +02:00
|
|
|
try:
|
|
|
|
int(i) # If this isn't a number, do something else.
|
|
|
|
except ValueError:
|
|
|
|
self._sendTopics(irc, channel, [privmsgs.getArgs(args)])
|
|
|
|
return
|
2004-08-25 00:03:13 +02:00
|
|
|
i = self._topicNumber(irc, i, topics=topics)
|
|
|
|
topic = self._formatTopic(irc, msg, channel, topic)
|
|
|
|
topics[i] = topic
|
|
|
|
self._sendTopics(irc, channel, topics)
|
|
|
|
set = privmsgs.channel(set)
|
|
|
|
|
2003-10-21 06:03:25 +02:00
|
|
|
def remove(self, irc, msg, args, channel):
|
2003-09-06 07:25:42 +02:00
|
|
|
"""[<channel>] <number>
|
|
|
|
|
|
|
|
Removes topic <number> from the topic for <channel> Topics are
|
2003-10-03 12:09:49 +02:00
|
|
|
numbered starting from 1; you can also use negative indexes to refer
|
2003-09-06 07:25:42 +02:00
|
|
|
to topics starting the from the end of the topic. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2004-08-25 00:03:13 +02:00
|
|
|
i = privmsgs.getArgs(args)
|
2003-12-02 17:26:08 +01:00
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
2004-08-25 00:03:13 +02:00
|
|
|
i = self._topicNumber(irc, i, topics=topics)
|
|
|
|
topic = topics.pop(i)
|
|
|
|
self._sendTopics(irc, channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
remove = privmsgs.channel(remove)
|
|
|
|
|
|
|
|
def lock(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2004-04-27 13:04:36 +02:00
|
|
|
Locks the topic (sets the mode +t) in <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
if irc.nick in irc.state.channels[channel].ops:
|
|
|
|
irc.queueMsg(ircmsgs.mode(channel, '+t'))
|
|
|
|
else:
|
|
|
|
irc.error('How can I unlock the topic, I\'m not opped!')
|
|
|
|
lock = privmsgs.channel(lock)
|
|
|
|
|
|
|
|
def unlock(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Locks the topic (sets the mode +t) in <channel>. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
if irc.nick in irc.state.channels[channel].ops:
|
|
|
|
irc.queueMsg(ircmsgs.mode(channel, '-t'))
|
|
|
|
else:
|
|
|
|
irc.error('How can I unlock the topic, I\'m not opped!')
|
|
|
|
unlock = privmsgs.channel(unlock)
|
|
|
|
|
|
|
|
def restore(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Restores the topic to the last topic set by the bot. <channel> is only
|
|
|
|
necessary if the message isn't sent in the channel itself.
|
|
|
|
"""
|
2004-08-24 16:06:19 +02:00
|
|
|
self._canChangeTopic(irc, channel)
|
2004-04-27 13:04:36 +02:00
|
|
|
try:
|
|
|
|
topics = self.lastTopics[channel]
|
|
|
|
except KeyError:
|
|
|
|
irc.error('I haven\'t yet set the topic in %s.' % channel)
|
|
|
|
return
|
2004-08-25 00:03:13 +02:00
|
|
|
self._sendTopics(irc, channel, topics)
|
2004-04-27 13:04:36 +02:00
|
|
|
restore = privmsgs.channel(restore)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2004-08-25 00:48:56 +02:00
|
|
|
def undo(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Restores the topic to the one previous to the last topic command that
|
2004-08-25 01:00:48 +02:00
|
|
|
set it. <channel> is only necessary if the message isn't sent in the
|
|
|
|
channel itself.
|
2004-08-25 00:48:56 +02:00
|
|
|
"""
|
|
|
|
topics = self._getUndo(channel) # This is the last topic sent.
|
|
|
|
topics = self._getUndo(channel) # This is the topic list we want.
|
|
|
|
if topics is not None:
|
|
|
|
self._sendTopics(irc, channel, topics)
|
|
|
|
else:
|
|
|
|
irc.error('There are no more undos for %s.' % channel)
|
|
|
|
undo = privmsgs.channel(undo)
|
|
|
|
|
2004-08-27 09:06:59 +02:00
|
|
|
def swap(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>] <first topic number> <second topic number>
|
|
|
|
|
|
|
|
Swaps the order of the first topic number and the second topic number.
|
|
|
|
<channel> is only necessary if the message isn't sent in the channel
|
|
|
|
itself.
|
|
|
|
"""
|
|
|
|
self._canChangeTopic(irc, channel)
|
|
|
|
(first, second) = privmsgs.getArgs(args, required=2)
|
|
|
|
topics = self._splitTopic(irc.state.getTopic(channel), channel)
|
|
|
|
first = self._topicNumber(irc, first, topics, normalize=True)
|
|
|
|
second = self._topicNumber(irc, second, topics, normalize=True)
|
|
|
|
if first == second:
|
|
|
|
irc.error('I refuse to swap the same topic with itself.')
|
|
|
|
return
|
|
|
|
t = topics[first]
|
|
|
|
topics[first] = topics[second]
|
|
|
|
topics[second] = t
|
|
|
|
self._sendTopics(irc, channel, topics)
|
|
|
|
swap = privmsgs.channel(swap)
|
|
|
|
|
2004-08-25 01:00:48 +02:00
|
|
|
def default(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Sets the topic in <channel> to the default topic for <channel>. The
|
|
|
|
default topic for a channel may be configured via the configuration
|
|
|
|
variable supybot.plugins.Topic.default.
|
|
|
|
"""
|
|
|
|
topic = self.registryValue('default', channel)
|
|
|
|
if topic:
|
|
|
|
self._sendTopics(irc, channel, [topic])
|
|
|
|
else:
|
|
|
|
irc.error('There is no default topic configured for %s.' % channel)
|
|
|
|
default = privmsgs.channel(default)
|
|
|
|
|
2003-10-19 17:48:44 +02:00
|
|
|
Class = Topic
|
2003-10-18 15:14:57 +02:00
|
|
|
|
|
|
|
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|