2005-01-19 14:14:38 +01:00
|
|
|
###
|
2005-01-19 14:33:05 +01:00
|
|
|
# Copyright (c) 2002-2005, Jeremiah Fincher
|
2009-03-08 07:09:25 +01:00
|
|
|
# Copyright (c) 2009, James Vega
|
2005-01-19 14:14:38 +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.
|
|
|
|
###
|
|
|
|
|
2011-06-05 20:30:32 +02:00
|
|
|
import re
|
2005-01-19 14:14:38 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
2005-02-13 03:53:31 +01:00
|
|
|
import supybot
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
from supybot.commands import *
|
|
|
|
import supybot.ircdb as ircdb
|
|
|
|
import supybot.irclib as irclib
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.callbacks as callbacks
|
2005-01-27 07:59:08 +01:00
|
|
|
from supybot.utils.iter import ifilter
|
2010-10-17 15:59:23 +02:00
|
|
|
from supybot.i18n import PluginInternationalization, internationalizeDocstring
|
|
|
|
_ = PluginInternationalization('Misc')
|
2005-01-27 07:59:08 +01:00
|
|
|
|
2005-02-09 08:04:04 +01:00
|
|
|
class Misc(callbacks.Plugin):
|
2005-01-29 20:16:29 +01:00
|
|
|
def __init__(self, irc):
|
|
|
|
self.__parent = super(Misc, self)
|
|
|
|
self.__parent.__init__(irc)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.invalidCommands = ircutils.FloodQueue(60)
|
|
|
|
|
|
|
|
def callPrecedence(self, irc):
|
|
|
|
return ([cb for cb in irc.callbacks if cb is not self], [])
|
|
|
|
|
|
|
|
def invalidCommand(self, irc, msg, tokens):
|
|
|
|
assert not msg.repliedTo, 'repliedTo msg in Misc.invalidCommand.'
|
|
|
|
assert self is irc.callbacks[-1], 'Misc isn\'t last callback.'
|
|
|
|
self.log.debug('Misc.invalidCommand called (tokens %s)', tokens)
|
|
|
|
# First, we check for invalidCommand floods. This is rightfully done
|
|
|
|
# here since this will be the last invalidCommand called, and thus it
|
|
|
|
# will only be called if this is *truly* an invalid command.
|
|
|
|
maximum = conf.supybot.abuse.flood.command.invalid.maximum()
|
|
|
|
self.invalidCommands.enqueue(msg)
|
|
|
|
if self.invalidCommands.len(msg) > maximum and \
|
2007-10-22 19:48:49 +02:00
|
|
|
conf.supybot.abuse.flood.command.invalid() and \
|
2005-01-19 14:14:38 +01:00
|
|
|
not ircdb.checkCapability(msg.prefix, 'owner'):
|
|
|
|
punishment = conf.supybot.abuse.flood.command.invalid.punishment()
|
|
|
|
banmask = '*!%s@%s' % (msg.user, msg.host)
|
|
|
|
self.log.info('Ignoring %s for %s seconds due to an apparent '
|
|
|
|
'invalid command flood.', banmask, punishment)
|
|
|
|
if tokens and tokens[0] == 'Error:':
|
|
|
|
self.log.warning('Apparent error loop with another Supybot '
|
2005-01-29 22:24:17 +01:00
|
|
|
'observed. Consider ignoring this bot '
|
|
|
|
'permanently.')
|
2005-01-19 14:14:38 +01:00
|
|
|
ircdb.ignores.add(banmask, time.time() + punishment)
|
2009-06-09 17:40:05 +02:00
|
|
|
if conf.supybot.abuse.flood.command.invalid.notify():
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(_('You\'ve given me %s invalid commands within the last '
|
|
|
|
'minute; I\'m now ignoring you for %s.') %
|
2009-06-09 17:40:05 +02:00
|
|
|
(maximum,
|
|
|
|
utils.timeElapsed(punishment, seconds=False)))
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
# Now, for normal handling.
|
|
|
|
channel = msg.args[0]
|
|
|
|
if conf.get(conf.supybot.reply.whenNotCommand, channel):
|
2005-06-01 03:10:08 +02:00
|
|
|
if len(tokens) >= 2:
|
|
|
|
cb = irc.getCallback(tokens[0])
|
|
|
|
if cb:
|
|
|
|
plugin = cb.name()
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(format(_('The %q plugin is loaded, but there is '
|
2005-06-01 03:10:08 +02:00
|
|
|
'no command named %q in it. Try "list '
|
|
|
|
'%s" to see the commands in the %q '
|
2010-10-17 15:59:23 +02:00
|
|
|
'plugin.'), plugin, tokens[1],
|
2005-06-01 03:10:08 +02:00
|
|
|
plugin, plugin))
|
|
|
|
else:
|
|
|
|
irc.errorInvalid('command', tokens[0], repr=False)
|
|
|
|
else:
|
|
|
|
command = tokens and tokens[0] or ''
|
|
|
|
irc.errorInvalid('command', command, repr=False)
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
if tokens:
|
|
|
|
# echo [] will get us an empty token set, but there's no need
|
|
|
|
# to log this in that case anyway, it being a nested command.
|
2005-05-18 06:18:35 +02:00
|
|
|
self.log.info('Not replying to %s, not a command.', tokens[0])
|
2005-05-05 15:24:11 +02:00
|
|
|
if irc.nested:
|
2005-01-19 14:14:38 +01:00
|
|
|
bracketConfig = conf.supybot.commands.nested.brackets
|
|
|
|
brackets = conf.get(bracketConfig, channel)
|
|
|
|
if brackets:
|
|
|
|
(left, right) = brackets
|
|
|
|
irc.reply(left + ' '.join(tokens) + right)
|
|
|
|
else:
|
|
|
|
pass # Let's just do nothing, I can't think of better.
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def list(self, irc, msg, args, optlist, cb):
|
|
|
|
"""[--private] [<plugin>]
|
|
|
|
|
|
|
|
Lists the commands available in the given plugin. If no plugin is
|
|
|
|
given, lists the public plugins available. If --private is given,
|
|
|
|
lists the private plugins.
|
|
|
|
"""
|
|
|
|
private = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
if option == 'private':
|
|
|
|
private = True
|
|
|
|
if not self.registryValue('listPrivatePlugins') and \
|
|
|
|
not ircdb.checkCapability(msg.prefix, 'owner'):
|
|
|
|
irc.errorNoCapability('owner')
|
|
|
|
if not cb:
|
|
|
|
def isPublic(cb):
|
|
|
|
name = cb.name()
|
|
|
|
return conf.supybot.plugins.get(name).public()
|
|
|
|
names = [cb.name() for cb in irc.callbacks
|
|
|
|
if (private and not isPublic(cb)) or
|
|
|
|
(not private and isPublic(cb))]
|
|
|
|
names.sort()
|
|
|
|
if names:
|
2005-01-31 15:52:27 +01:00
|
|
|
irc.reply(format('%L', names))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
if private:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(_('There are no private plugins.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(_('There are no public plugins.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2005-02-04 21:08:38 +01:00
|
|
|
commands = cb.listCommands()
|
|
|
|
if commands:
|
|
|
|
commands.sort()
|
|
|
|
irc.reply(format('%L', commands))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(format(_('That plugin exists, but has no commands. '
|
2005-03-26 18:52:40 +01:00
|
|
|
'This probably means that it has some '
|
|
|
|
'configuration variables that can be '
|
|
|
|
'changed in order to modify its behavior. '
|
2005-05-09 19:53:06 +02:00
|
|
|
'Try "config list supybot.plugins.%s" to see '
|
2010-10-17 15:59:23 +02:00
|
|
|
'what configuration variables it has.'),
|
2005-05-09 19:53:06 +02:00
|
|
|
cb.name()))
|
2005-01-19 14:14:38 +01:00
|
|
|
list = wrap(list, [getopts({'private':''}), additional('plugin')])
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def apropos(self, irc, msg, args, s):
|
|
|
|
"""<string>
|
|
|
|
|
|
|
|
Searches for <string> in the commands currently offered by the bot,
|
|
|
|
returning a list of the commands containing that string.
|
|
|
|
"""
|
|
|
|
commands = {}
|
|
|
|
L = []
|
|
|
|
for cb in irc.callbacks:
|
2005-02-09 08:04:04 +01:00
|
|
|
if isinstance(cb, callbacks.Plugin):
|
2005-02-18 06:21:15 +01:00
|
|
|
for command in cb.listCommands():
|
|
|
|
if s in command:
|
|
|
|
commands.setdefault(command, []).append(cb.name())
|
2005-01-19 14:14:38 +01:00
|
|
|
for (key, names) in commands.iteritems():
|
2010-04-27 18:46:22 +02:00
|
|
|
for name in names:
|
|
|
|
L.append('%s %s' % (name, key))
|
2005-01-19 14:14:38 +01:00
|
|
|
if L:
|
|
|
|
L.sort()
|
2005-01-31 15:52:27 +01:00
|
|
|
irc.reply(format('%L', L))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(_('No appropriate commands were found.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
apropos = wrap(apropos, ['lowered'])
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-18 06:21:15 +01:00
|
|
|
def help(self, irc, msg, args, command):
|
2005-01-19 14:14:38 +01:00
|
|
|
"""[<plugin>] [<command>]
|
|
|
|
|
|
|
|
This command gives a useful description of what <command> does.
|
|
|
|
<plugin> is only necessary if the command is in more than one plugin.
|
|
|
|
"""
|
2005-02-24 13:50:09 +01:00
|
|
|
command = map(callbacks.canonicalName, command)
|
2005-02-18 06:21:15 +01:00
|
|
|
(maxL, cbs) = irc.findCallbacksForArgs(command)
|
|
|
|
if maxL == command:
|
2005-02-19 20:44:49 +01:00
|
|
|
if len(cbs) > 1:
|
2005-01-19 14:14:38 +01:00
|
|
|
names = sorted([cb.name() for cb in cbs])
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(format(_('That command exists in the %L plugins. '
|
2005-01-31 15:52:27 +01:00
|
|
|
'Please specify exactly which plugin command '
|
2010-10-17 15:59:23 +02:00
|
|
|
'you want help with.'), names))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2005-02-19 20:44:49 +01:00
|
|
|
assert cbs, 'Odd, maxL == command, but no cbs.'
|
2010-11-01 11:42:33 +01:00
|
|
|
irc.reply(_.__call__(cbs[0].getCommandHelp(command, False)))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(format(_('There is no command %q.'),
|
2005-02-19 20:48:48 +01:00
|
|
|
callbacks.formatCommand(command)))
|
2005-02-18 06:21:15 +01:00
|
|
|
help = wrap(help, [many('something')])
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def version(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns the version of the current bot.
|
|
|
|
"""
|
|
|
|
try:
|
2011-06-05 20:30:32 +02:00
|
|
|
newestUrl = 'https://github.com/ProgVal/Limnoria/raw/%s/' + \
|
|
|
|
'src/version.py'
|
|
|
|
versions = {}
|
|
|
|
for branch in ('master', 'testing'):
|
|
|
|
file = utils.web.getUrl(newestUrl % branch)
|
|
|
|
match = re.search(r"^version = '([^']+)'$", file, re.M)
|
|
|
|
if match is None:
|
|
|
|
continue
|
|
|
|
versions[branch] = match.group(1)
|
|
|
|
newest = _('The newest versions available online are %s.') % \
|
2011-06-06 19:06:52 +02:00
|
|
|
', '.join([_('%s (in %s)') % (y,x)
|
2011-06-05 20:30:32 +02:00
|
|
|
for x,y in versions.items()])
|
2005-01-27 07:59:08 +01:00
|
|
|
except utils.web.Error, e:
|
2005-02-02 03:44:58 +01:00
|
|
|
self.log.info('Couldn\'t get website version: %s', e)
|
2010-10-17 15:59:23 +02:00
|
|
|
newest = _('I couldn\'t fetch the newest version '
|
2011-06-05 20:30:32 +02:00
|
|
|
'from the Limnoria repository.')
|
2010-10-17 15:59:23 +02:00
|
|
|
s = _('The current (running) version of this Supybot is %s. %s') % \
|
2005-01-19 14:14:38 +01:00
|
|
|
(conf.version, newest)
|
|
|
|
irc.reply(s)
|
|
|
|
version = wrap(thread(version))
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def source(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
2011-07-16 13:45:43 +02:00
|
|
|
Returns a URL saying where to get Limnoria.
|
2005-01-19 14:14:38 +01:00
|
|
|
"""
|
2011-07-10 17:08:20 +02:00
|
|
|
irc.reply(_('My source is at https://github.com/ProgVal/Limnoria'))
|
2005-01-19 14:14:38 +01:00
|
|
|
source = wrap(source)
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def more(self, irc, msg, args, nick):
|
|
|
|
"""[<nick>]
|
|
|
|
|
|
|
|
If the last command was truncated due to IRC message length
|
|
|
|
limitations, returns the next chunk of the result of the last command.
|
|
|
|
If <nick> is given, it takes the continuation of the last command from
|
|
|
|
<nick> instead of the person sending this message.
|
|
|
|
"""
|
|
|
|
userHostmask = msg.prefix.split('!', 1)[1]
|
|
|
|
if nick:
|
|
|
|
try:
|
2005-02-07 07:28:52 +01:00
|
|
|
(private, L) = irc._mores[nick]
|
2005-01-19 14:14:38 +01:00
|
|
|
if not private:
|
2005-02-07 07:28:52 +01:00
|
|
|
irc._mores[userHostmask] = L[:]
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('%s has no public mores.') % nick)
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
except KeyError:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('Sorry, I can\'t find any mores for %s') % nick)
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
try:
|
2005-02-07 07:28:52 +01:00
|
|
|
L = irc._mores[userHostmask]
|
2005-01-19 14:14:38 +01:00
|
|
|
chunk = L.pop()
|
|
|
|
if L:
|
2010-10-17 15:59:23 +02:00
|
|
|
if len(L) < 2:
|
|
|
|
more = _('more message')
|
|
|
|
else:
|
|
|
|
more = _('more messages')
|
|
|
|
chunk += format(' \x02(%s)\x0F', more)
|
2005-01-19 14:14:38 +01:00
|
|
|
irc.reply(chunk, True)
|
|
|
|
except KeyError:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('You haven\'t asked me a command; perhaps you want '
|
2005-01-19 14:14:38 +01:00
|
|
|
'to see someone else\'s more. To do so, call this '
|
2010-10-17 15:59:23 +02:00
|
|
|
'command with that person\'s nick.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
except IndexError:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('That\'s all, there is no more.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
more = wrap(more, [additional('seenNick')])
|
|
|
|
|
|
|
|
def _validLastMsg(self, msg):
|
|
|
|
return msg.prefix and \
|
|
|
|
msg.command == 'PRIVMSG' and \
|
|
|
|
ircutils.isChannel(msg.args[0])
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def last(self, irc, msg, args, optlist):
|
|
|
|
"""[--{from,in,on,with,without,regexp} <value>] [--nolimit]
|
|
|
|
|
|
|
|
Returns the last message matching the given criteria. --from requires
|
|
|
|
a nick from whom the message came; --in requires a channel the message
|
|
|
|
was sent to; --on requires a network the message was sent on; --with
|
|
|
|
requires some string that had to be in the message; --regexp requires
|
|
|
|
a regular expression the message must match; --nolimit returns all
|
|
|
|
the messages that can be found. By default, the channel this command is
|
|
|
|
given in is searched.
|
|
|
|
"""
|
|
|
|
predicates = {}
|
|
|
|
nolimit = False
|
2005-06-10 14:19:10 +02:00
|
|
|
skipfirst = True
|
2005-01-19 14:14:38 +01:00
|
|
|
if ircutils.isChannel(msg.args[0]):
|
|
|
|
predicates['in'] = lambda m: ircutils.strEqual(m.args[0],
|
|
|
|
msg.args[0])
|
2005-06-10 14:19:10 +02:00
|
|
|
else:
|
|
|
|
skipfirst = False
|
2005-01-19 14:14:38 +01:00
|
|
|
for (option, arg) in optlist:
|
|
|
|
if option == 'from':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
return ircutils.hostmaskPatternEqual(arg, m.nick)
|
|
|
|
predicates['from'] = f
|
|
|
|
elif option == 'in':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
return ircutils.strEqual(m.args[0], arg)
|
|
|
|
predicates['in'] = f
|
2005-06-10 14:19:10 +02:00
|
|
|
if arg != msg.args[0]:
|
|
|
|
skipfirst = False
|
2005-01-19 14:14:38 +01:00
|
|
|
elif option == 'on':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
return m.receivedOn == arg
|
|
|
|
predicates['on'] = f
|
|
|
|
elif option == 'with':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
return arg.lower() in m.args[1].lower()
|
|
|
|
predicates.setdefault('with', []).append(f)
|
|
|
|
elif option == 'without':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
return arg.lower() not in m.args[1].lower()
|
|
|
|
predicates.setdefault('without', []).append(f)
|
|
|
|
elif option == 'regexp':
|
|
|
|
def f(m, arg=arg):
|
|
|
|
if ircmsgs.isAction(m):
|
|
|
|
return arg.search(ircmsgs.unAction(m))
|
|
|
|
else:
|
|
|
|
return arg.search(m.args[1])
|
|
|
|
predicates.setdefault('regexp', []).append(f)
|
|
|
|
elif option == 'nolimit':
|
|
|
|
nolimit = True
|
|
|
|
iterable = ifilter(self._validLastMsg, reversed(irc.state.history))
|
2005-06-10 14:19:10 +02:00
|
|
|
if skipfirst:
|
|
|
|
# Drop the first message only if our current channel is the same as
|
|
|
|
# the channel we've been instructed to look at.
|
|
|
|
iterable.next()
|
2005-01-27 07:59:08 +01:00
|
|
|
predicates = list(utils.iter.flatten(predicates.itervalues()))
|
2009-03-08 07:09:25 +01:00
|
|
|
# Make sure the user can't get messages from channels they aren't in
|
|
|
|
def userInChannel(m):
|
|
|
|
return m.args[0] in irc.state.channels \
|
|
|
|
and msg.nick in irc.state.channels[m.args[0]].users
|
|
|
|
predicates.append(userInChannel)
|
|
|
|
# Make sure the user can't get messages from a +s channel unless
|
|
|
|
# they're calling the command from that channel or from a query
|
|
|
|
def notSecretMsg(m):
|
|
|
|
return not irc.isChannel(msg.args[0]) \
|
|
|
|
or msg.args[0] == m.args[0] \
|
|
|
|
or (m.args[0] in irc.state.channels \
|
|
|
|
and 's' not in irc.state.channels[m.args[0]].modes)
|
|
|
|
predicates.append(notSecretMsg)
|
2005-01-19 14:14:38 +01:00
|
|
|
resp = []
|
|
|
|
if irc.nested and not \
|
|
|
|
self.registryValue('last.nested.includeTimestamp'):
|
|
|
|
tsf = None
|
|
|
|
else:
|
|
|
|
tsf = self.registryValue('timestampFormat')
|
|
|
|
if irc.nested and not self.registryValue('last.nested.includeNick'):
|
|
|
|
showNick = False
|
|
|
|
else:
|
|
|
|
showNick = True
|
|
|
|
for m in iterable:
|
|
|
|
for predicate in predicates:
|
|
|
|
if not predicate(m):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
if nolimit:
|
|
|
|
resp.append(ircmsgs.prettyPrint(m,
|
|
|
|
timestampFormat=tsf,
|
|
|
|
showNick=showNick))
|
|
|
|
else:
|
|
|
|
irc.reply(ircmsgs.prettyPrint(m,
|
|
|
|
timestampFormat=tsf,
|
|
|
|
showNick=showNick))
|
|
|
|
return
|
|
|
|
if not resp:
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('I couldn\'t find a message matching that criteria in '
|
|
|
|
'my history of %s messages.') % len(irc.state.history))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2005-01-31 15:52:27 +01:00
|
|
|
irc.reply(format('%L', resp))
|
2005-01-19 14:14:38 +01:00
|
|
|
last = wrap(last, [getopts({'nolimit': '',
|
|
|
|
'on': 'something',
|
|
|
|
'with': 'something',
|
|
|
|
'from': 'something',
|
|
|
|
'without': 'something',
|
|
|
|
'in': 'callerInGivenChannel',
|
|
|
|
'regexp': 'regexpMatcher',})])
|
|
|
|
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-01-19 14:14:38 +01:00
|
|
|
def tell(self, irc, msg, args, target, text):
|
|
|
|
"""<nick> <text>
|
|
|
|
|
|
|
|
Tells the <nick> whatever <text> is. Use nested commands to your
|
|
|
|
benefit here.
|
|
|
|
"""
|
|
|
|
if target.lower() == 'me':
|
|
|
|
target = msg.nick
|
|
|
|
if ircutils.isChannel(target):
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('Dude, just give the command. No need for the tell.'))
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
|
|
|
if not ircutils.isNick(target):
|
|
|
|
irc.errorInvalid('nick', target)
|
|
|
|
if ircutils.nickEqual(target, irc.nick):
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.error(_('You just told me, why should I tell myself?'),
|
|
|
|
Raise=True)
|
2005-01-19 14:14:38 +01:00
|
|
|
if target not in irc.state.nicksToHostmasks and \
|
|
|
|
not ircdb.checkCapability(msg.prefix, 'owner'):
|
|
|
|
# We'll let owners do this.
|
2010-10-17 15:59:23 +02:00
|
|
|
s = _('I haven\'t seen %s, I\'ll let you do the telling.') % target
|
2005-01-19 14:14:38 +01:00
|
|
|
irc.error(s, Raise=True)
|
|
|
|
if irc.action:
|
|
|
|
irc.action = False
|
|
|
|
text = '* %s %s' % (irc.nick, text)
|
2010-10-17 15:59:23 +02:00
|
|
|
s = _('%s wants me to tell you: %s') % (msg.nick, text)
|
2005-01-19 14:14:38 +01:00
|
|
|
irc.reply(s, to=target, private=True)
|
|
|
|
tell = wrap(tell, ['something', 'text'])
|
|
|
|
|
2010-10-17 15:59:23 +02:00
|
|
|
@internationalizeDocstring
|
2005-02-02 04:26:22 +01:00
|
|
|
def ping(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Checks to see if the bot is alive.
|
|
|
|
"""
|
2010-10-17 15:59:23 +02:00
|
|
|
irc.reply(_('pong'), prefixNick=False)
|
2005-02-02 04:26:22 +01:00
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
Class = Misc
|
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|