2005-01-19 14:14:38 +01:00
|
|
|
###
|
2005-01-19 14:33:05 +01:00
|
|
|
# Copyright (c) 2002-2005, Jeremiah Fincher
|
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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2005-02-07 07:10:41 +01:00
|
|
|
This module contains the basic callbacks for handling PRIVMSGs.
|
2005-01-19 14:14:38 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import supybot
|
|
|
|
|
|
|
|
import re
|
|
|
|
import copy
|
|
|
|
import time
|
|
|
|
import shlex
|
|
|
|
import getopt
|
|
|
|
import inspect
|
|
|
|
import operator
|
|
|
|
from cStringIO import StringIO
|
|
|
|
|
|
|
|
import supybot.log as log
|
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.world as world
|
|
|
|
import supybot.ircdb as ircdb
|
|
|
|
import supybot.irclib as irclib
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.registry as registry
|
2005-02-18 06:17:23 +01:00
|
|
|
from supybot.utils.iter import any, all
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def _addressed(nick, msg, prefixChars=None, nicks=None,
|
|
|
|
prefixStrings=None, whenAddressedByNick=None,
|
|
|
|
whenAddressedByNickAtEnd=None):
|
|
|
|
def get(group):
|
|
|
|
if ircutils.isChannel(target):
|
|
|
|
group = group.get(target)
|
|
|
|
return group()
|
|
|
|
def stripPrefixStrings(payload):
|
|
|
|
for prefixString in prefixStrings:
|
|
|
|
if payload.startswith(prefixString):
|
|
|
|
payload = payload[len(prefixString):].lstrip()
|
|
|
|
return payload
|
|
|
|
|
|
|
|
assert msg.command == 'PRIVMSG'
|
|
|
|
(target, payload) = msg.args
|
|
|
|
if not payload:
|
|
|
|
return ''
|
|
|
|
if prefixChars is None:
|
|
|
|
prefixChars = get(conf.supybot.reply.whenAddressedBy.chars)
|
|
|
|
if whenAddressedByNick is None:
|
|
|
|
whenAddressedByNick = get(conf.supybot.reply.whenAddressedBy.nick)
|
|
|
|
if whenAddressedByNickAtEnd is None:
|
|
|
|
r = conf.supybot.reply.whenAddressedBy.nick.atEnd
|
|
|
|
whenAddressedByNickAtEnd = get(r)
|
|
|
|
if prefixStrings is None:
|
|
|
|
prefixStrings = get(conf.supybot.reply.whenAddressedBy.strings)
|
|
|
|
# We have to check this before nicks -- try "@google supybot" with supybot
|
|
|
|
# and whenAddressedBy.nick.atEnd on to see why.
|
|
|
|
if any(payload.startswith, prefixStrings):
|
|
|
|
return stripPrefixStrings(payload)
|
|
|
|
elif payload[0] in prefixChars:
|
|
|
|
return payload[1:].strip()
|
|
|
|
if nicks is None:
|
|
|
|
nicks = get(conf.supybot.reply.whenAddressedBy.nicks)
|
|
|
|
nicks = map(ircutils.toLower, nicks)
|
|
|
|
else:
|
|
|
|
nicks = list(nicks) # Just in case.
|
|
|
|
nicks.insert(0, ircutils.toLower(nick))
|
|
|
|
# Ok, let's see if it's a private message.
|
|
|
|
if ircutils.nickEqual(target, nick):
|
|
|
|
payload = stripPrefixStrings(payload)
|
|
|
|
while payload and payload[0] in prefixChars:
|
|
|
|
payload = payload[1:].lstrip()
|
|
|
|
return payload
|
|
|
|
# Ok, not private. Does it start with our nick?
|
|
|
|
elif whenAddressedByNick:
|
|
|
|
for nick in nicks:
|
|
|
|
lowered = ircutils.toLower(payload)
|
|
|
|
if lowered.startswith(nick):
|
|
|
|
try:
|
|
|
|
(maybeNick, rest) = payload.split(None, 1)
|
|
|
|
toContinue = False
|
|
|
|
while not ircutils.isNick(maybeNick, strictRfc=True):
|
|
|
|
if maybeNick[-1].isalnum():
|
|
|
|
toContinue = True
|
|
|
|
break
|
|
|
|
maybeNick = maybeNick[:-1]
|
|
|
|
if toContinue:
|
|
|
|
continue
|
|
|
|
if ircutils.nickEqual(maybeNick, nick):
|
|
|
|
return rest
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
except ValueError: # split didn't work.
|
|
|
|
continue
|
|
|
|
elif whenAddressedByNickAtEnd and lowered.endswith(nick):
|
|
|
|
rest = payload[:-len(nick)]
|
|
|
|
possiblePayload = rest.rstrip(' \t,;')
|
|
|
|
if possiblePayload != rest:
|
|
|
|
# There should be some separator between the nick and the
|
|
|
|
# previous alphanumeric character.
|
|
|
|
return possiblePayload
|
|
|
|
if conf.supybot.reply.whenNotAddressed():
|
|
|
|
return payload
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def addressed(nick, msg, **kwargs):
|
|
|
|
"""If msg is addressed to 'name', returns the portion after the address.
|
|
|
|
Otherwise returns the empty string.
|
|
|
|
"""
|
|
|
|
payload = msg.addressed
|
|
|
|
if payload is not None:
|
|
|
|
return payload
|
|
|
|
else:
|
|
|
|
payload = _addressed(nick, msg, **kwargs)
|
|
|
|
msg.tag('addressed', payload)
|
|
|
|
return payload
|
|
|
|
|
|
|
|
def canonicalName(command):
|
|
|
|
"""Turn a command into its canonical form.
|
|
|
|
|
|
|
|
Currently, this makes everything lowercase and removes all dashes and
|
|
|
|
underscores.
|
|
|
|
"""
|
|
|
|
if isinstance(command, unicode):
|
|
|
|
command = command.encode('utf-8')
|
|
|
|
special = '\t -_'
|
|
|
|
reAppend = ''
|
|
|
|
while command and command[-1] in special:
|
|
|
|
reAppend = command[-1] + reAppend
|
|
|
|
command = command[:-1]
|
2005-01-27 07:59:08 +01:00
|
|
|
return command.translate(utils.str.chars, special).lower() + reAppend
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def reply(msg, s, prefixName=None, private=None,
|
|
|
|
notice=None, to=None, action=None, error=False):
|
|
|
|
msg.tag('repliedTo')
|
|
|
|
# Ok, let's make the target:
|
|
|
|
# XXX This isn't entirely right. Consider to=#foo, private=True.
|
|
|
|
target = ircutils.replyTo(msg)
|
|
|
|
if ircutils.isChannel(target):
|
|
|
|
channel = target
|
|
|
|
else:
|
|
|
|
channel = None
|
|
|
|
if notice is None:
|
|
|
|
notice = conf.get(conf.supybot.reply.withNotice, channel)
|
|
|
|
if private is None:
|
|
|
|
private = conf.get(conf.supybot.reply.inPrivate, channel)
|
|
|
|
if prefixName is None:
|
|
|
|
prefixName = conf.get(conf.supybot.reply.withNickPrefix, channel)
|
|
|
|
if error:
|
|
|
|
notice =conf.get(conf.supybot.reply.error.withNotice, channel) or notice
|
|
|
|
private=conf.get(conf.supybot.reply.error.inPrivate, channel) or private
|
|
|
|
s = 'Error: ' + s
|
|
|
|
if private:
|
|
|
|
prefixName = False
|
|
|
|
if to is None:
|
|
|
|
target = msg.nick
|
|
|
|
else:
|
|
|
|
target = to
|
|
|
|
if to is None:
|
|
|
|
to = msg.nick
|
|
|
|
# Ok, now let's make the payload:
|
|
|
|
s = ircutils.safeArgument(s)
|
|
|
|
if not s and not action:
|
|
|
|
s = 'Error: I tried to send you an empty message.'
|
|
|
|
if prefixName and ircutils.isChannel(target):
|
|
|
|
# Let's may sure we don't do, "#channel: foo.".
|
|
|
|
if not ircutils.isChannel(to):
|
|
|
|
s = '%s: %s' % (to, s)
|
|
|
|
if not ircutils.isChannel(target):
|
|
|
|
if conf.supybot.reply.withNoticeWhenPrivate():
|
|
|
|
notice = True
|
|
|
|
# And now, let's decide whether it's a PRIVMSG or a NOTICE.
|
|
|
|
msgmaker = ircmsgs.privmsg
|
|
|
|
if notice:
|
|
|
|
msgmaker = ircmsgs.notice
|
|
|
|
# We don't use elif here because actions can't be sent as NOTICEs.
|
|
|
|
if action:
|
|
|
|
msgmaker = ircmsgs.action
|
|
|
|
# Finally, we'll return the actual message.
|
|
|
|
ret = msgmaker(target, s)
|
|
|
|
ret.tag('inReplyTo', msg)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def error(msg, s, **kwargs):
|
|
|
|
"""Makes an error reply to msg with the appropriate error payload."""
|
|
|
|
kwargs['error'] = True
|
|
|
|
msg.tag('isError')
|
|
|
|
return reply(msg, s, **kwargs)
|
|
|
|
|
|
|
|
def getHelp(method, name=None):
|
|
|
|
if name is None:
|
|
|
|
name = method.__name__
|
|
|
|
doclines = method.__doc__.splitlines()
|
|
|
|
s = '%s %s' % (name, doclines.pop(0))
|
|
|
|
if doclines:
|
|
|
|
help = ' '.join(doclines)
|
|
|
|
s = '(%s) -- %s' % (ircutils.bold(s), help)
|
2005-01-27 07:59:08 +01:00
|
|
|
return utils.str.normalizeWhitespace(s)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def getSyntax(method, name=None):
|
|
|
|
if name is None:
|
|
|
|
name = method.__name__
|
|
|
|
doclines = method.__doc__.splitlines()
|
|
|
|
return '%s %s' % (name, doclines[0])
|
|
|
|
|
|
|
|
class Error(Exception):
|
|
|
|
"""Generic class for errors in Privmsg callbacks."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class ArgumentError(Error):
|
|
|
|
"""The bot replies with a help message when this is raised."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Tokenizer(object):
|
|
|
|
# This will be used as a global environment to evaluate strings in.
|
|
|
|
# Evaluation is, of course, necessary in order to allowed escaped
|
|
|
|
# characters to be properly handled.
|
|
|
|
#
|
|
|
|
# These are the characters valid in a token. Everything printable except
|
|
|
|
# double-quote, left-bracket, and right-bracket.
|
2005-01-27 07:59:08 +01:00
|
|
|
validChars = utils.str.chars.translate(utils.str.chars, '\x00\r\n \t')
|
2005-01-19 14:14:38 +01:00
|
|
|
def __init__(self, brackets='', pipe=False, quotes='"'):
|
|
|
|
if brackets:
|
2005-01-27 07:59:08 +01:00
|
|
|
self.validChars=self.validChars.translate(utils.str.chars, brackets)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.left = brackets[0]
|
|
|
|
self.right = brackets[1]
|
|
|
|
else:
|
|
|
|
self.left = ''
|
|
|
|
self.right = ''
|
|
|
|
self.pipe = pipe
|
|
|
|
if self.pipe:
|
2005-01-27 07:59:08 +01:00
|
|
|
self.validChars = self.validChars.translate(utils.str.chars, '|')
|
2005-01-19 14:14:38 +01:00
|
|
|
self.quotes = quotes
|
2005-01-27 07:59:08 +01:00
|
|
|
self.validChars = self.validChars.translate(utils.str.chars, quotes)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
def _handleToken(self, token):
|
|
|
|
if token[0] == token[-1] and token[0] in self.quotes:
|
|
|
|
token = token[1:-1]
|
|
|
|
token = token.decode('string-escape')
|
|
|
|
return token
|
|
|
|
|
|
|
|
def _insideBrackets(self, lexer):
|
|
|
|
ret = []
|
|
|
|
while True:
|
|
|
|
token = lexer.get_token()
|
|
|
|
if not token:
|
|
|
|
raise SyntaxError, 'Missing "%s". You may want to ' \
|
|
|
|
'quote your arguments with double ' \
|
|
|
|
'quotes in order to prevent extra ' \
|
|
|
|
'brackets from being evaluated ' \
|
|
|
|
'as nested commands.' % self.right
|
|
|
|
elif token == self.right:
|
|
|
|
return ret
|
|
|
|
elif token == self.left:
|
|
|
|
ret.append(self._insideBrackets(lexer))
|
|
|
|
else:
|
|
|
|
ret.append(self._handleToken(token))
|
|
|
|
firstToken = False
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def tokenize(self, s):
|
|
|
|
lexer = shlex.shlex(StringIO(s))
|
|
|
|
lexer.commenters = ''
|
|
|
|
lexer.quotes = self.quotes
|
|
|
|
lexer.wordchars = self.validChars
|
|
|
|
args = []
|
|
|
|
ends = []
|
|
|
|
while True:
|
|
|
|
token = lexer.get_token()
|
|
|
|
if not token:
|
|
|
|
break
|
|
|
|
elif token == '|' and self.pipe:
|
|
|
|
# The "and self.pipe" might seem redundant here, but it's there
|
|
|
|
# for strings like 'foo | bar', where a pipe stands alone as a
|
|
|
|
# token, but shouldn't be treated specially.
|
|
|
|
if not args:
|
|
|
|
raise SyntaxError, '"|" with nothing preceding. I ' \
|
|
|
|
'obviously can\'t do a pipe with ' \
|
|
|
|
'nothing before the |.'
|
|
|
|
ends.append(args)
|
|
|
|
args = []
|
|
|
|
elif token == self.left:
|
|
|
|
args.append(self._insideBrackets(lexer))
|
|
|
|
elif token == self.right:
|
|
|
|
raise SyntaxError, 'Spurious "%s". You may want to ' \
|
|
|
|
'quote your arguments with double ' \
|
|
|
|
'quotes in order to prevent extra ' \
|
|
|
|
'brackets from being evaluated ' \
|
|
|
|
'as nested commands.' % self.right
|
|
|
|
else:
|
|
|
|
args.append(self._handleToken(token))
|
|
|
|
if ends:
|
|
|
|
if not args:
|
|
|
|
raise SyntaxError, '"|" with nothing following. I ' \
|
|
|
|
'obviously can\'t do a pipe with ' \
|
|
|
|
'nothing before the |.'
|
|
|
|
args.append(ends.pop())
|
|
|
|
while ends:
|
|
|
|
args[-1].append(ends.pop())
|
|
|
|
return args
|
|
|
|
|
|
|
|
def tokenize(s, channel=None):
|
|
|
|
"""A utility function to create a Tokenizer and tokenize a string."""
|
|
|
|
pipe = False
|
|
|
|
brackets = ''
|
|
|
|
nested = conf.supybot.commands.nested
|
|
|
|
if nested():
|
|
|
|
brackets = conf.get(nested.brackets, channel)
|
|
|
|
if conf.get(nested.pipeSyntax, channel): # No nesting, no pipe.
|
|
|
|
pipe = True
|
|
|
|
quotes = conf.get(conf.supybot.commands.quotes, channel)
|
|
|
|
start = time.time()
|
|
|
|
try:
|
|
|
|
ret = Tokenizer(brackets=brackets,pipe=pipe,quotes=quotes).tokenize(s)
|
|
|
|
return ret
|
|
|
|
except ValueError, e:
|
|
|
|
raise SyntaxError, str(e)
|
|
|
|
|
|
|
|
def formatArgumentError(method, name=None):
|
|
|
|
if name is None:
|
|
|
|
name = method.__name__
|
|
|
|
if hasattr(method, '__doc__') and method.__doc__:
|
|
|
|
if conf.get(conf.supybot.reply.showSimpleSyntax, dynamic.channel):
|
|
|
|
return getSyntax(method, name=name)
|
|
|
|
else:
|
|
|
|
return getHelp(method, name=name)
|
|
|
|
else:
|
|
|
|
return 'Invalid arguments for %s.' % method.__name__
|
|
|
|
|
2005-02-18 06:17:23 +01:00
|
|
|
def formatCommand(command):
|
|
|
|
return ' '.join(command)
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def checkCommandCapability(msg, cb, commandName):
|
|
|
|
assert isinstance(commandName, basestring), commandName
|
|
|
|
plugin = cb.name().lower()
|
|
|
|
pluginCommand = '%s.%s' % (plugin, commandName)
|
|
|
|
def checkCapability(capability):
|
|
|
|
assert ircdb.isAntiCapability(capability)
|
|
|
|
if ircdb.checkCapability(msg.prefix, capability):
|
|
|
|
log.info('Preventing %s from calling %s because of %s.',
|
|
|
|
msg.prefix, pluginCommand, capability)
|
|
|
|
raise RuntimeError, capability
|
|
|
|
try:
|
|
|
|
antiPlugin = ircdb.makeAntiCapability(plugin)
|
|
|
|
antiCommand = ircdb.makeAntiCapability(commandName)
|
|
|
|
antiPluginCommand = ircdb.makeAntiCapability(pluginCommand)
|
|
|
|
checkCapability(antiPlugin)
|
|
|
|
checkCapability(antiCommand)
|
|
|
|
checkCapability(antiPluginCommand)
|
|
|
|
checkAtEnd = [commandName, pluginCommand]
|
|
|
|
default = conf.supybot.capabilities.default()
|
|
|
|
if ircutils.isChannel(msg.args[0]):
|
|
|
|
channel = msg.args[0]
|
|
|
|
checkCapability(ircdb.makeChannelCapability(channel, antiCommand))
|
|
|
|
checkCapability(ircdb.makeChannelCapability(channel, antiPlugin))
|
|
|
|
checkCapability(ircdb.makeChannelCapability(channel,
|
|
|
|
antiPluginCommand))
|
|
|
|
chanPlugin = ircdb.makeChannelCapability(channel, plugin)
|
|
|
|
chanCommand = ircdb.makeChannelCapability(channel, commandName)
|
|
|
|
chanPluginCommand = ircdb.makeChannelCapability(channel,
|
|
|
|
pluginCommand)
|
|
|
|
checkAtEnd += [chanCommand, chanPlugin, chanPluginCommand]
|
|
|
|
default &= ircdb.channels.getChannel(channel).defaultAllow
|
|
|
|
return not (default or \
|
|
|
|
any(lambda x: ircdb.checkCapability(msg.prefix, x),
|
|
|
|
checkAtEnd))
|
|
|
|
except RuntimeError, e:
|
|
|
|
s = ircdb.unAntiCapability(str(e))
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
class RichReplyMethods(object):
|
|
|
|
"""This is a mixin so these replies need only be defined once. It operates
|
|
|
|
under several assumptions, including the fact that 'self' is an Irc object
|
|
|
|
of some sort and there is a self.msg that is an IrcMsg."""
|
|
|
|
def __makeReply(self, prefix, s):
|
|
|
|
if s:
|
|
|
|
s = '%s %s' % (prefix, s)
|
|
|
|
else:
|
|
|
|
s = prefix
|
|
|
|
return ircutils.standardSubstitute(self, self.msg, s)
|
|
|
|
|
|
|
|
def _getConfig(self, wrapper):
|
|
|
|
return conf.get(wrapper, self.msg.args[0])
|
|
|
|
|
|
|
|
def replySuccess(self, s='', **kwargs):
|
|
|
|
v = self._getConfig(conf.supybot.replies.success)
|
|
|
|
if v:
|
|
|
|
s = self.__makeReply(v, s)
|
|
|
|
return self.reply(s, **kwargs)
|
|
|
|
else:
|
|
|
|
self.noReply()
|
|
|
|
|
|
|
|
def replyError(self, s='', **kwargs):
|
|
|
|
v = self._getConfig(conf.supybot.replies.error)
|
|
|
|
s = self.__makeReply(v, s)
|
|
|
|
return self.reply(s, **kwargs)
|
|
|
|
|
|
|
|
def replies(self, L, prefixer=None, joiner=None,
|
|
|
|
onlyPrefixFirst=False, **kwargs):
|
|
|
|
if prefixer is None:
|
|
|
|
prefixer = ''
|
|
|
|
if joiner is None:
|
2005-01-27 07:59:08 +01:00
|
|
|
joiner = utils.str.commaAndify
|
2005-01-19 14:14:38 +01:00
|
|
|
if isinstance(prefixer, basestring):
|
|
|
|
prefixer = prefixer.__add__
|
|
|
|
if isinstance(joiner, basestring):
|
|
|
|
joiner = joiner.join
|
|
|
|
if conf.supybot.reply.oneToOne():
|
|
|
|
return self.reply(prefixer(joiner(L)), **kwargs)
|
|
|
|
else:
|
|
|
|
msg = None
|
|
|
|
first = True
|
|
|
|
for s in L:
|
|
|
|
if onlyPrefixFirst:
|
|
|
|
if first:
|
|
|
|
first = False
|
|
|
|
msg = self.reply(prefixer(s), **kwargs)
|
|
|
|
else:
|
|
|
|
msg = self.reply(s, **kwargs)
|
|
|
|
else:
|
|
|
|
msg = self.reply(prefixer(s), **kwargs)
|
|
|
|
return msg
|
|
|
|
|
|
|
|
def noReply(self):
|
|
|
|
self.msg.tag('repliedTo')
|
|
|
|
|
|
|
|
def _error(self, s, Raise=False, **kwargs):
|
|
|
|
if Raise:
|
|
|
|
raise Error, s
|
|
|
|
else:
|
|
|
|
return self.error(s, **kwargs)
|
|
|
|
|
|
|
|
def errorNoCapability(self, capability, s='', **kwargs):
|
|
|
|
if 'Raise' not in kwargs:
|
|
|
|
kwargs['Raise'] = True
|
|
|
|
if isinstance(capability, basestring): # checkCommandCapability!
|
2005-02-01 14:43:57 +01:00
|
|
|
log.warning('Denying %s for lacking %q capability.',
|
|
|
|
self.msg.prefix, capability)
|
2005-01-19 14:14:38 +01:00
|
|
|
if not self._getConfig(conf.supybot.reply.error.noCapability):
|
|
|
|
v = self._getConfig(conf.supybot.replies.noCapability)
|
|
|
|
s = self.__makeReply(v % capability, s)
|
|
|
|
return self._error(s, **kwargs)
|
|
|
|
else:
|
|
|
|
log.debug('Not sending capability error, '
|
|
|
|
'supybot.reply.error.noCapability is False.')
|
|
|
|
else:
|
|
|
|
log.warning('Denying %s for some unspecified capability '
|
|
|
|
'(or a default).', self.msg.prefix)
|
|
|
|
v = self._getConfig(conf.supybot.replies.genericNoCapability)
|
|
|
|
return self._error(self.__makeReply(v, s), **kwargs)
|
|
|
|
|
|
|
|
def errorPossibleBug(self, s='', **kwargs):
|
|
|
|
v = self._getConfig(conf.supybot.replies.possibleBug)
|
|
|
|
if s:
|
|
|
|
s += ' (%s)' % v
|
|
|
|
else:
|
|
|
|
s = v
|
|
|
|
return self._error(s, **kwargs)
|
|
|
|
|
|
|
|
def errorNotRegistered(self, s='', **kwargs):
|
|
|
|
v = self._getConfig(conf.supybot.replies.notRegistered)
|
|
|
|
return self._error(self.__makeReply(v, s), **kwargs)
|
|
|
|
|
|
|
|
def errorNoUser(self, s='', name='that user', **kwargs):
|
|
|
|
if 'Raise' not in kwargs:
|
|
|
|
kwargs['Raise'] = True
|
|
|
|
v = self._getConfig(conf.supybot.replies.noUser)
|
|
|
|
try:
|
|
|
|
v = v % name
|
|
|
|
except TypeError:
|
|
|
|
log.warning('supybot.replies.noUser should have one "%s" in it.')
|
|
|
|
return self._error(self.__makeReply(v, s), **kwargs)
|
|
|
|
|
|
|
|
def errorRequiresPrivacy(self, s='', **kwargs):
|
|
|
|
v = self._getConfig(conf.supybot.replies.requiresPrivacy)
|
|
|
|
return self._error(self.__makeReply(v, s), **kwargs)
|
|
|
|
|
|
|
|
def errorInvalid(self, what, given=None, s='', repr=True, **kwargs):
|
|
|
|
if given is not None:
|
|
|
|
if repr:
|
|
|
|
given = _repr(given)
|
|
|
|
else:
|
|
|
|
given = '"%s"' % given
|
|
|
|
v = '%s is not a valid %s.' % (given, what)
|
|
|
|
else:
|
|
|
|
v = 'That\'s not a valid %s.' % what
|
|
|
|
if 'Raise' not in kwargs:
|
|
|
|
kwargs['Raise'] = True
|
|
|
|
return self._error(self.__makeReply(v, s), **kwargs)
|
|
|
|
|
|
|
|
_repr = repr
|
|
|
|
|
|
|
|
class IrcObjectProxy(RichReplyMethods):
|
|
|
|
"A proxy object to allow proper nested of commands (even threaded ones)."
|
2005-02-07 07:28:52 +01:00
|
|
|
_mores = ircutils.IrcDict()
|
2005-01-19 14:14:38 +01:00
|
|
|
def __init__(self, irc, msg, args, nested=0):
|
|
|
|
assert isinstance(args, list), 'Args should be a list, not a string.'
|
|
|
|
self.irc = irc
|
|
|
|
self.msg = msg
|
|
|
|
self.nested = nested
|
|
|
|
if not self.nested and isinstance(irc, self.__class__):
|
2005-02-18 00:26:11 +01:00
|
|
|
# This means we were given an IrcObjectProxy isntead of an
|
|
|
|
# irclib.Irc, and so we're obviously nested. But nested wasn't
|
|
|
|
# set! So we take our given Irc's nested value.
|
2005-01-19 14:14:38 +01:00
|
|
|
self.nested += irc.nested
|
|
|
|
maxNesting = conf.supybot.commands.nested.maximum()
|
|
|
|
if maxNesting and self.nested > maxNesting:
|
|
|
|
log.warning('%s attempted more than %s levels of nesting.',
|
|
|
|
self.msg.prefix, maxNesting)
|
|
|
|
return self.error('You\'ve attempted more nesting than is '
|
|
|
|
'currently allowed on this bot.')
|
|
|
|
# The deepcopy here is necessary for Scheduler; it re-runs already
|
2005-02-18 00:26:11 +01:00
|
|
|
# tokenized commands. There's a possibility a simple copy[:] would
|
|
|
|
# work, but we're being careful.
|
2005-01-19 14:14:38 +01:00
|
|
|
self.args = copy.deepcopy(args)
|
|
|
|
self.counter = 0
|
|
|
|
self._resetReplyAttributes()
|
|
|
|
if not args:
|
|
|
|
self.finalEvaled = True
|
|
|
|
self._callInvalidCommands()
|
|
|
|
else:
|
|
|
|
self.finalEvaled = False
|
|
|
|
world.commandsProcessed += 1
|
|
|
|
self.evalArgs()
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return other == self.getRealIrc()
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash(self.getRealIrc())
|
|
|
|
|
|
|
|
def _resetReplyAttributes(self):
|
|
|
|
self.to = None
|
|
|
|
self.action = None
|
|
|
|
self.notice = None
|
|
|
|
self.private = None
|
|
|
|
self.noLengthCheck = None
|
|
|
|
if ircutils.isChannel(self.msg.args[0]):
|
|
|
|
self.prefixName = conf.get(conf.supybot.reply.withNickPrefix,
|
|
|
|
self.msg.args[0])
|
|
|
|
else:
|
|
|
|
self.prefixName = conf.supybot.reply.withNickPrefix()
|
|
|
|
|
|
|
|
def evalArgs(self):
|
|
|
|
while self.counter < len(self.args):
|
|
|
|
if isinstance(self.args[self.counter], basestring):
|
2005-02-18 00:26:11 +01:00
|
|
|
# If it's a string, just go to the next arg. There is no
|
|
|
|
# evaluation to be done for strings. If, at some point,
|
|
|
|
# we decided to, say, convert every string using
|
|
|
|
# ircutils.standardSubstitute, this would be where we would
|
|
|
|
# probably put it.
|
2005-01-19 14:14:38 +01:00
|
|
|
self.counter += 1
|
|
|
|
else:
|
2005-02-18 00:26:11 +01:00
|
|
|
assert isinstance(self.args[self.counter], list)
|
|
|
|
# It's a list. So we spawn another IrcObjectProxy
|
|
|
|
# to evaluate its args. When that class has finished
|
|
|
|
# evaluating its args, it will call our reply method, which
|
|
|
|
# will subsequently call this function again, and we'll
|
|
|
|
# pick up where we left off via self.counter.
|
2005-01-19 14:14:38 +01:00
|
|
|
self.__class__(self, self.msg,
|
|
|
|
self.args[self.counter], nested=self.nested+1)
|
2005-02-23 18:40:44 +01:00
|
|
|
# We have to return here because the new IrcObjectProxy
|
2005-02-18 00:26:11 +01:00
|
|
|
# might not have called our reply method instantly, since
|
|
|
|
# its command might be threaded. So (obviously) we can't
|
|
|
|
# just fall through to self.finalEval.
|
2005-01-19 14:14:38 +01:00
|
|
|
return
|
2005-02-18 00:26:11 +01:00
|
|
|
# Once all the list args are evaluated, we then evaluate our own
|
|
|
|
# list of args, since we're assured that they're all strings now.
|
|
|
|
assert all(lambda x: isinstance(x, basestring), self.args)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.finalEval()
|
|
|
|
|
|
|
|
def _callInvalidCommands(self):
|
|
|
|
log.debug('Calling invalidCommands.')
|
|
|
|
for cb in self.irc.callbacks:
|
|
|
|
if hasattr(cb, 'invalidCommand'):
|
|
|
|
log.debug('Trying to call %s.invalidCommand.' % cb.name())
|
|
|
|
self._callInvalidCommand(cb)
|
|
|
|
if self.msg.repliedTo:
|
|
|
|
log.debug('Done calling invalidCommands: %s.',cb.name())
|
|
|
|
return
|
|
|
|
|
|
|
|
def _callInvalidCommand(self, cb):
|
|
|
|
try:
|
|
|
|
cb.invalidCommand(self, self.msg, self.args)
|
|
|
|
except Error, e:
|
|
|
|
return self.error(str(e))
|
|
|
|
except Exception, e:
|
|
|
|
log.exception('Uncaught exception in %s.invalidCommand.'%
|
|
|
|
cb.name())
|
|
|
|
|
2005-02-18 06:17:23 +01:00
|
|
|
def findCallbacksForArgs(self, args):
|
|
|
|
"""Returns a two-tuple of (command, plugins) that has the command
|
|
|
|
(a list of strings) and the plugins for which it was a command."""
|
2005-02-18 09:26:02 +01:00
|
|
|
assert isinstance(args, list)
|
2005-02-24 13:49:08 +01:00
|
|
|
args = map(canonicalName, args)
|
2005-02-18 06:17:23 +01:00
|
|
|
cbs = []
|
|
|
|
maxL = []
|
|
|
|
for cb in self.irc.callbacks:
|
2005-02-19 00:01:41 +01:00
|
|
|
if not hasattr(cb, 'getCommand'):
|
|
|
|
continue
|
2005-02-18 06:17:23 +01:00
|
|
|
L = cb.getCommand(args)
|
2005-02-18 07:13:47 +01:00
|
|
|
log.debug('%s.getCommand(%r) returned %r', cb.name(), args, L)
|
2005-02-18 06:17:23 +01:00
|
|
|
if L and L >= maxL:
|
|
|
|
maxL = L
|
|
|
|
cbs.append((cb, L))
|
|
|
|
assert isinstance(L, list), \
|
2005-02-24 13:49:08 +01:00
|
|
|
'getCommand now returns a list, not a method.'
|
2005-02-18 06:17:23 +01:00
|
|
|
assert utils.iter.startswith(L, args), \
|
2005-02-24 13:49:08 +01:00
|
|
|
'getCommand must return a prefix of the args given. ' \
|
|
|
|
'(args given: %r, returned: %r)' % (args, L)
|
2005-02-18 06:17:23 +01:00
|
|
|
log.debug('findCallbacksForCommands: %r', cbs)
|
|
|
|
cbs = [cb for (cb, L) in cbs if L == maxL]
|
|
|
|
if len(maxL) == 1:
|
|
|
|
# Special case: one arg determines the callback. In this case, we
|
|
|
|
# have to check defaultPlugins.
|
|
|
|
defaultPlugins = conf.supybot.commands.defaultPlugins
|
2005-01-19 14:14:38 +01:00
|
|
|
try:
|
2005-02-18 06:17:23 +01:00
|
|
|
defaultPlugin = defaultPlugins.get(maxL[0])()
|
|
|
|
log.debug('defaultPlugin: %r', defaultPlugin)
|
|
|
|
if defaultPlugin:
|
|
|
|
cb = self.irc.getCallback(defaultPlugin)
|
|
|
|
if cb in cbs:
|
|
|
|
# This is just a sanity check, but there's a small
|
|
|
|
# possibility that a default plugin for a command
|
|
|
|
# is configured to point to a plugin that doesn't
|
|
|
|
# actually have that command.
|
|
|
|
return (maxL, [cb])
|
|
|
|
except registry.NonExistentRegistryEntry:
|
|
|
|
pass # No default plugin defined.
|
2005-02-18 07:30:22 +01:00
|
|
|
important = defaultPlugins.importantPlugins()
|
|
|
|
important = map(canonicalName, important)
|
|
|
|
importants = []
|
|
|
|
for cb in cbs:
|
|
|
|
if cb.canonicalName() in important:
|
|
|
|
importants.append(cb)
|
|
|
|
if len(importants) == 1:
|
|
|
|
return (maxL, importants)
|
2005-02-18 06:17:23 +01:00
|
|
|
return (maxL, cbs)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def finalEval(self):
|
2005-02-18 00:39:21 +01:00
|
|
|
# Now that we've already iterated through our args and made sure
|
|
|
|
# that any list of args was evaluated (by spawning another
|
|
|
|
# IrcObjectProxy to evaluated it into a string), we can finally
|
|
|
|
# evaluated our own list of arguments.
|
2005-01-19 14:14:38 +01:00
|
|
|
assert not self.finalEvaled, 'finalEval called twice.'
|
|
|
|
self.finalEvaled = True
|
2005-02-18 06:17:23 +01:00
|
|
|
# Now, the way we call a command is we iterate over the loaded pluings,
|
|
|
|
# asking each one if the list of args we have interests it. The
|
|
|
|
# way we do that is by calling getCommand on the plugin.
|
|
|
|
# The plugin will return a list of args which it considers to be
|
|
|
|
# "interesting." We will then give our args to the plugin which
|
|
|
|
# has the *longest* list. The reason we pick the longest list is
|
|
|
|
# that it seems reasonable that the longest the list, the more
|
|
|
|
# specific the command is. That is, given a list of length X, a list
|
|
|
|
# of length X+1 would be even more specific (assuming that both lists
|
|
|
|
# used the same prefix. Of course, if two plugins return a list of the
|
|
|
|
# same length, we'll just error out with a message about ambiguity.
|
|
|
|
(command, cbs) = self.findCallbacksForArgs(self.args)
|
2005-01-19 14:14:38 +01:00
|
|
|
if not cbs:
|
2005-02-18 06:17:23 +01:00
|
|
|
# We used to handle addressedRegexps here, but I think we'll let
|
|
|
|
# them handle themselves in getCommand. They can always just
|
|
|
|
# return the full list of args as their "command".
|
2005-01-19 14:14:38 +01:00
|
|
|
self._callInvalidCommands()
|
|
|
|
elif len(cbs) > 1:
|
|
|
|
names = sorted([cb.name() for cb in cbs])
|
2005-02-18 06:17:23 +01:00
|
|
|
command = formatCommand(command)
|
|
|
|
self.error(format('The command %q is available in the %L '
|
|
|
|
'plugins. Please specify the plugin '
|
|
|
|
'whose command you wish to call by using '
|
|
|
|
'its name as a command before %q.',
|
|
|
|
command, names, command))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
|
|
|
cb = cbs[0]
|
2005-02-18 06:17:23 +01:00
|
|
|
args = self.args[len(command):]
|
2005-01-19 14:14:38 +01:00
|
|
|
if world.isMainThread() and \
|
|
|
|
(cb.threaded or conf.supybot.debug.threadAllCommands()):
|
2005-02-16 03:17:05 +01:00
|
|
|
t = CommandThread(target=cb._callCommand,
|
2005-02-18 06:17:23 +01:00
|
|
|
args=(command, self, self.msg, args))
|
2005-01-19 14:14:38 +01:00
|
|
|
t.start()
|
|
|
|
else:
|
2005-02-18 06:17:23 +01:00
|
|
|
cb._callCommand(command, self, self.msg, args)
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def reply(self, s, noLengthCheck=False, prefixName=None,
|
|
|
|
action=None, private=None, notice=None, to=None, msg=None):
|
|
|
|
"""reply(s) -> replies to msg with s
|
|
|
|
|
|
|
|
Keyword arguments:
|
|
|
|
noLengthCheck=False: True if the length shouldn't be checked
|
|
|
|
(used for 'more' handling)
|
|
|
|
prefixName=True: False if the nick shouldn't be prefixed to the
|
|
|
|
reply.
|
|
|
|
action=False: True if the reply should be an action.
|
|
|
|
private=False: True if the reply should be in private.
|
|
|
|
notice=False: True if the reply should be noticed when the
|
|
|
|
bot is configured to do so.
|
|
|
|
to=<nick|channel>: The nick or channel the reply should go to.
|
|
|
|
Defaults to msg.args[0] (or msg.nick if private)
|
|
|
|
"""
|
|
|
|
# These use and or or based on whether or not they default to True or
|
|
|
|
# False. Those that default to True use and; those that default to
|
|
|
|
# False use or.
|
|
|
|
assert not isinstance(s, ircmsgs.IrcMsg), \
|
|
|
|
'Old code alert: there is no longer a "msg" argument to reply.'
|
|
|
|
if msg is None:
|
|
|
|
msg = self.msg
|
|
|
|
if prefixName is not None:
|
|
|
|
self.prefixName = prefixName
|
|
|
|
if action is not None:
|
|
|
|
self.action = self.action or action
|
|
|
|
self.prefixName = False
|
|
|
|
if notice is not None:
|
|
|
|
self.notice = self.notice or notice
|
|
|
|
if private is not None:
|
|
|
|
self.private = self.private or private
|
|
|
|
if to is not None:
|
|
|
|
self.to = self.to or to
|
|
|
|
# action=True implies noLengthCheck=True and prefixName=False
|
|
|
|
self.noLengthCheck=noLengthCheck or self.noLengthCheck or self.action
|
|
|
|
target = self.private and self.to or self.msg.args[0]
|
|
|
|
if self.finalEvaled:
|
|
|
|
try:
|
|
|
|
if not isinstance(self.irc, irclib.Irc):
|
|
|
|
s = s[:conf.supybot.reply.maximumLength()]
|
|
|
|
return self.irc.reply(s, to=self.to,
|
|
|
|
notice=self.notice,
|
|
|
|
action=self.action,
|
|
|
|
private=self.private,
|
|
|
|
prefixName=self.prefixName,
|
|
|
|
noLengthCheck=self.noLengthCheck)
|
|
|
|
elif self.noLengthCheck:
|
|
|
|
# noLengthCheck only matters to IrcObjectProxy, so it's not
|
|
|
|
# used here. Just in case you were wondering.
|
|
|
|
m = reply(msg, s, to=self.to,
|
|
|
|
notice=self.notice,
|
|
|
|
action=self.action,
|
|
|
|
private=self.private,
|
|
|
|
prefixName=self.prefixName)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
else:
|
|
|
|
s = ircutils.safeArgument(s)
|
|
|
|
allowedLength = conf.get(conf.supybot.reply.mores.length,
|
|
|
|
target)
|
|
|
|
if not allowedLength: # 0 indicates this.
|
|
|
|
allowedLength = 450 - len(self.irc.prefix)
|
|
|
|
allowedLength -= len(msg.nick)
|
|
|
|
maximumMores = conf.get(conf.supybot.reply.mores.maximum,
|
|
|
|
target)
|
|
|
|
maximumLength = allowedLength * maximumMores
|
|
|
|
if len(s) > maximumLength:
|
|
|
|
log.warning('Truncating to %s bytes from %s bytes.',
|
|
|
|
maximumLength, len(s))
|
|
|
|
s = s[:maximumLength]
|
|
|
|
if len(s) < allowedLength or \
|
|
|
|
not conf.get(conf.supybot.reply.mores, target):
|
|
|
|
# In case we're truncating, we add 20 to allowedLength,
|
|
|
|
# because our allowedLength is shortened for the
|
|
|
|
# "(XX more messages)" trailer.
|
|
|
|
s = s[:allowedLength+20]
|
|
|
|
# There's no need for action=self.action here because
|
|
|
|
# action implies noLengthCheck, which has already been
|
|
|
|
# handled. Let's stick an assert in here just in case.
|
|
|
|
assert not self.action
|
|
|
|
m = reply(msg, s, to=self.to,
|
|
|
|
notice=self.notice,
|
|
|
|
private=self.private,
|
|
|
|
prefixName=self.prefixName)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
msgs = ircutils.wrap(s, allowedLength)
|
|
|
|
msgs.reverse()
|
|
|
|
instant = conf.get(conf.supybot.reply.mores.instant,target)
|
|
|
|
while instant > 1 and msgs:
|
|
|
|
instant -= 1
|
|
|
|
response = msgs.pop()
|
|
|
|
m = reply(msg, response, to=self.to,
|
|
|
|
notice=self.notice,
|
|
|
|
private=self.private,
|
|
|
|
prefixName=self.prefixName)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
# XXX We should somehow allow these to be returned, but
|
|
|
|
# until someone complains, we'll be fine :) We
|
|
|
|
# can't return from here, though, for obvious
|
|
|
|
# reasons.
|
|
|
|
# return m
|
|
|
|
if not msgs:
|
|
|
|
return
|
|
|
|
response = msgs.pop()
|
|
|
|
if msgs:
|
|
|
|
n = ircutils.bold('(%s)')
|
2005-02-10 02:28:38 +01:00
|
|
|
n %= format('%n', (len(msgs), 'more', 'message'))
|
2005-01-19 14:14:38 +01:00
|
|
|
response = '%s %s' % (response, n)
|
|
|
|
prefix = msg.prefix
|
|
|
|
if self.to and ircutils.isNick(self.to):
|
|
|
|
try:
|
|
|
|
state = self.getRealIrc().state
|
|
|
|
prefix = state.nickToHostmask(self.to)
|
|
|
|
except KeyError:
|
|
|
|
pass # We'll leave it as it is.
|
|
|
|
mask = prefix.split('!', 1)[1]
|
2005-02-07 07:28:52 +01:00
|
|
|
self._mores[mask] = msgs
|
2005-01-19 14:14:38 +01:00
|
|
|
public = ircutils.isChannel(msg.args[0])
|
|
|
|
private = self.private or not public
|
2005-02-07 07:28:52 +01:00
|
|
|
self._mores[msg.nick] = (private, msgs)
|
2005-01-19 14:14:38 +01:00
|
|
|
m = reply(msg, response, to=self.to,
|
|
|
|
action=self.action,
|
|
|
|
notice=self.notice,
|
|
|
|
private=self.private,
|
|
|
|
prefixName=self.prefixName)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
finally:
|
|
|
|
self._resetReplyAttributes()
|
|
|
|
else:
|
|
|
|
self.args[self.counter] = s
|
|
|
|
self.evalArgs()
|
|
|
|
|
|
|
|
def error(self, s='', Raise=False, **kwargs):
|
|
|
|
if Raise:
|
|
|
|
if s:
|
|
|
|
raise Error, s
|
|
|
|
else:
|
|
|
|
raise ArgumentError
|
|
|
|
if s:
|
|
|
|
if not isinstance(self.irc, irclib.Irc):
|
|
|
|
return self.irc.error(s, **kwargs)
|
|
|
|
else:
|
|
|
|
m = error(self.msg, s, **kwargs)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
else:
|
2005-02-16 03:17:05 +01:00
|
|
|
raise ArgumentError
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
def getRealIrc(self):
|
|
|
|
"""Returns the real irclib.Irc object underlying this proxy chain."""
|
|
|
|
if isinstance(self.irc, irclib.Irc):
|
|
|
|
return self.irc
|
|
|
|
else:
|
|
|
|
return self.irc.getRealIrc()
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
return getattr(self.irc, attr)
|
|
|
|
|
|
|
|
|
|
|
|
class CommandThread(world.SupyThread):
|
|
|
|
"""Just does some extra logging and error-recovery for commands that need
|
|
|
|
to run in threads.
|
|
|
|
"""
|
|
|
|
def __init__(self, target=None, args=(), kwargs={}):
|
2005-02-16 03:17:05 +01:00
|
|
|
self.command = args[0]
|
2005-02-17 23:39:44 +01:00
|
|
|
self.cb = target.im_self
|
2005-01-19 14:14:38 +01:00
|
|
|
threadName = 'Thread #%s (for %s.%s)' % (world.threadsSpawned,
|
2005-02-17 23:39:44 +01:00
|
|
|
self.cb.name(),
|
2005-02-16 03:17:05 +01:00
|
|
|
self.command)
|
2005-02-17 23:39:44 +01:00
|
|
|
log.debug('Spawning thread %s (args: %r)', threadName, args)
|
|
|
|
self.__parent = super(CommandThread, self)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.__parent.__init__(target=target, name=threadName,
|
|
|
|
args=args, kwargs=kwargs)
|
|
|
|
self.setDaemon(True)
|
|
|
|
self.originalThreaded = self.cb.threaded
|
|
|
|
self.cb.threaded = True
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
self.__parent.run()
|
|
|
|
finally:
|
|
|
|
self.cb.threaded = self.originalThreaded
|
|
|
|
|
|
|
|
|
|
|
|
class CanonicalString(registry.NormalizedString):
|
|
|
|
def normalize(self, s):
|
|
|
|
return canonicalName(s)
|
|
|
|
|
|
|
|
class CanonicalNameSet(utils.NormalizingSet):
|
|
|
|
def normalize(self, s):
|
|
|
|
return canonicalName(s)
|
|
|
|
|
|
|
|
class CanonicalNameDict(utils.InsensitivePreservingDict):
|
|
|
|
def key(self, s):
|
|
|
|
return canonicalName(s)
|
|
|
|
|
|
|
|
class Disabled(registry.SpaceSeparatedListOf):
|
|
|
|
sorted = True
|
|
|
|
Value = CanonicalString
|
|
|
|
List = CanonicalNameSet
|
|
|
|
|
|
|
|
conf.registerGlobalValue(conf.supybot.commands, 'disabled',
|
|
|
|
Disabled([], """Determines what commands are currently disabled. Such
|
|
|
|
commands will not appear in command lists, etc. They will appear not even
|
|
|
|
to exist."""))
|
|
|
|
|
|
|
|
class DisabledCommands(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.d = CanonicalNameDict()
|
|
|
|
for name in conf.supybot.commands.disabled():
|
|
|
|
if '.' in name:
|
|
|
|
(plugin, command) = name.split('.', 1)
|
|
|
|
if command in self.d:
|
|
|
|
if self.d[command] is not None:
|
|
|
|
self.d[command].add(plugin)
|
|
|
|
else:
|
|
|
|
self.d[command] = CanonicalNameSet([plugin])
|
|
|
|
else:
|
|
|
|
self.d[name] = None
|
|
|
|
|
|
|
|
def disabled(self, command, plugin=None):
|
|
|
|
if command in self.d:
|
|
|
|
if self.d[command] is None:
|
|
|
|
return True
|
|
|
|
elif plugin in self.d[command]:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def add(self, command, plugin=None):
|
|
|
|
if plugin is None:
|
|
|
|
self.d[command] = None
|
|
|
|
else:
|
|
|
|
if command in self.d:
|
|
|
|
if self.d[command] is not None:
|
|
|
|
self.d[command].add(plugin)
|
|
|
|
else:
|
|
|
|
self.d[command] = CanonicalNameSet([plugin])
|
|
|
|
|
|
|
|
def remove(self, command, plugin=None):
|
|
|
|
if plugin is None:
|
|
|
|
del self.d[command]
|
|
|
|
else:
|
|
|
|
if self.d[command] is not None:
|
|
|
|
self.d[command].remove(plugin)
|
|
|
|
|
2005-02-24 13:49:08 +01:00
|
|
|
class BasePlugin(object):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.cbs = []
|
|
|
|
for attr in dir(self):
|
|
|
|
if attr != canonicalName(attr):
|
|
|
|
continue
|
|
|
|
obj = getattr(self, attr)
|
|
|
|
if isinstance(obj, type) and issubclass(obj, BasePlugin):
|
|
|
|
cb = obj(*args, **kwargs)
|
|
|
|
setattr(self, attr, cb)
|
|
|
|
self.cbs.append(cb)
|
|
|
|
cb.log = log.getPluginLogger('%s.%s' % (self.name(),cb.name()))
|
|
|
|
super(BasePlugin, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
class Commands(BasePlugin):
|
2005-01-19 14:14:38 +01:00
|
|
|
# For awhile, a comment stood here to say, "Eventually callCommand." But
|
|
|
|
# that's wrong, because we can't do generic error handling in this
|
|
|
|
# callCommand -- plugins need to be able to override callCommand and do
|
|
|
|
# error handling there (see the Http plugin for an example).
|
2005-02-24 13:49:08 +01:00
|
|
|
__firewalled__ = {'isCommand': None,
|
|
|
|
'_callCommand': None}
|
2005-01-19 14:14:38 +01:00
|
|
|
commandArgs = ['self', 'irc', 'msg', 'args']
|
|
|
|
# These must be class-scope, so all plugins use the same one.
|
|
|
|
_disabled = DisabledCommands()
|
2005-02-18 01:16:06 +01:00
|
|
|
def name(self):
|
|
|
|
return self.__class__.__name__
|
|
|
|
|
|
|
|
def canonicalName(self):
|
|
|
|
return canonicalName(self.name())
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def isDisabled(self, command):
|
|
|
|
return self._disabled.disabled(command, self.name())
|
|
|
|
|
2005-02-18 06:17:23 +01:00
|
|
|
def isCommandMethod(self, name):
|
2005-01-19 14:14:38 +01:00
|
|
|
"""Returns whether a given method name is a command in this plugin."""
|
|
|
|
# This function is ugly, but I don't want users to call methods like
|
|
|
|
# doPrivmsg or __init__ or whatever, and this is good to stop them.
|
|
|
|
|
2005-02-04 04:19:05 +01:00
|
|
|
# Don't canonize this name: consider outFilter(self, irc, msg).
|
2005-01-19 14:14:38 +01:00
|
|
|
# name = canonicalName(name)
|
|
|
|
if self.isDisabled(name):
|
|
|
|
return False
|
|
|
|
if hasattr(self, name):
|
|
|
|
method = getattr(self, name)
|
|
|
|
if inspect.ismethod(method):
|
|
|
|
code = method.im_func.func_code
|
|
|
|
return inspect.getargs(code)[0] == self.commandArgs
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2005-02-18 06:17:23 +01:00
|
|
|
def isCommand(self, command):
|
2005-02-24 13:49:08 +01:00
|
|
|
"""Convenience, backwards-compatibility, semi-deprecated."""
|
2005-02-18 06:17:23 +01:00
|
|
|
if isinstance(command, basestring):
|
|
|
|
return self.isCommandMethod(command)
|
|
|
|
else:
|
|
|
|
# Since we're doing a little type dispatching here, let's not be
|
|
|
|
# too liberal.
|
|
|
|
assert isinstance(command, list)
|
|
|
|
return self.getCommand(command) == command
|
|
|
|
|
|
|
|
def getCommand(self, args):
|
2005-02-24 13:49:08 +01:00
|
|
|
first = args[0]
|
2005-02-18 06:17:23 +01:00
|
|
|
if len(args) >= 2 and first == self.canonicalName():
|
2005-02-24 13:49:08 +01:00
|
|
|
command = self.getCommand(args[1:])
|
|
|
|
if command:
|
|
|
|
command.insert(0, first)
|
|
|
|
return command
|
|
|
|
for cb in self.cbs:
|
|
|
|
if first == cb.canonicalName():
|
|
|
|
command = cb.getCommand(args[1:])
|
|
|
|
if command:
|
|
|
|
command.insert(0, first)
|
|
|
|
return command
|
2005-02-18 06:17:23 +01:00
|
|
|
if self.isCommandMethod(first):
|
2005-02-24 13:49:08 +01:00
|
|
|
return [first]
|
2005-02-18 06:17:23 +01:00
|
|
|
return []
|
|
|
|
|
|
|
|
def getCommandMethod(self, command):
|
2005-01-19 14:14:38 +01:00
|
|
|
"""Gets the given command from this plugin."""
|
2005-02-18 07:30:46 +01:00
|
|
|
assert not isinstance(command, basestring)
|
2005-02-24 13:49:08 +01:00
|
|
|
assert command == map(canonicalName, command)
|
2005-02-18 07:13:47 +01:00
|
|
|
assert self.getCommand(command) == command
|
2005-02-24 13:49:08 +01:00
|
|
|
if len(command) > 1:
|
|
|
|
if command[0] == self.canonicalName():
|
|
|
|
return self.getCommandMethod(command[1:])
|
|
|
|
for cb in self.cbs:
|
|
|
|
if command[0] == cb.canonicalName():
|
|
|
|
return cb.getCommandMethod(command)
|
2005-02-18 07:13:47 +01:00
|
|
|
else:
|
|
|
|
return getattr(self, command[0])
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2005-02-04 21:08:38 +01:00
|
|
|
def listCommands(self):
|
|
|
|
commands = []
|
|
|
|
for s in dir(self):
|
2005-02-18 07:30:46 +01:00
|
|
|
if self.isCommand(s):
|
|
|
|
commands.append(s)
|
2005-02-24 13:49:08 +01:00
|
|
|
for cb in self.cbs:
|
|
|
|
name = cb.canonicalName()
|
|
|
|
for command in cb.listCommands():
|
|
|
|
commands.append(' '.join([name, command]))
|
2005-02-04 21:08:38 +01:00
|
|
|
commands.sort()
|
|
|
|
return commands
|
|
|
|
|
2005-02-17 23:39:44 +01:00
|
|
|
def callCommand(self, command, irc, msg, *args, **kwargs):
|
|
|
|
method = self.getCommandMethod(command)
|
2005-02-16 03:17:05 +01:00
|
|
|
method(irc, msg, *args, **kwargs)
|
|
|
|
|
|
|
|
def _callCommand(self, command, irc, msg, *args, **kwargs):
|
2005-02-18 06:17:23 +01:00
|
|
|
self.log.info('%s called by %q.', formatCommand(command), msg.prefix)
|
2005-02-19 00:44:38 +01:00
|
|
|
# XXX I'm being extra-special-careful here, but we need to refactor
|
|
|
|
# this.
|
2005-01-19 14:14:38 +01:00
|
|
|
try:
|
2005-02-19 00:53:11 +01:00
|
|
|
for name in command:
|
|
|
|
cap = checkCommandCapability(msg, self, name)
|
|
|
|
if cap:
|
|
|
|
irc.errorNoCapability(cap)
|
|
|
|
return
|
2005-02-17 23:39:44 +01:00
|
|
|
try:
|
|
|
|
self.callingCommand = command
|
|
|
|
self.callCommand(command, irc, msg, *args, **kwargs)
|
|
|
|
finally:
|
|
|
|
self.callingCommand = None
|
2005-02-18 07:13:47 +01:00
|
|
|
except (getopt.GetoptError, ArgumentError), e:
|
|
|
|
self.log.debug('Got %s, giving argument error.',
|
|
|
|
utils.exnToString(e))
|
2005-02-17 23:39:44 +01:00
|
|
|
method = self.getCommandMethod(command)
|
2005-02-18 06:17:23 +01:00
|
|
|
irc.reply(formatArgumentError(method, name=formatCommand(command)))
|
2005-01-19 14:14:38 +01:00
|
|
|
except (SyntaxError, Error), e:
|
2005-02-15 14:57:57 +01:00
|
|
|
self.log.debug('Error return: %s', utils.exnToString(e))
|
2005-01-19 14:14:38 +01:00
|
|
|
irc.error(str(e))
|
2005-02-16 03:17:05 +01:00
|
|
|
except Error, e:
|
|
|
|
irc.error(str(e))
|
|
|
|
except Exception, e:
|
|
|
|
self.log.exception('Uncaught exception in %s.', command)
|
|
|
|
if conf.supybot.reply.error.detailed():
|
|
|
|
irc.error(utils.exnToString(e))
|
|
|
|
else:
|
|
|
|
irc.replyError()
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2005-02-18 06:17:23 +01:00
|
|
|
def getCommandHelp(self, command):
|
|
|
|
method = self.getCommandMethod(command)
|
|
|
|
if hasattr(method, '__doc__'):
|
2005-02-24 13:49:08 +01:00
|
|
|
return getHelp(method, name=formatCommand(command))
|
2005-01-19 14:14:38 +01:00
|
|
|
else:
|
2005-02-18 06:17:23 +01:00
|
|
|
return format('The %q command has no help.',formatCommand(command))
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2005-02-24 13:49:08 +01:00
|
|
|
class PluginMixin(BasePlugin, irclib.IrcCallback):
|
2005-02-10 03:46:18 +01:00
|
|
|
public = True
|
|
|
|
alwaysCall = ()
|
|
|
|
threaded = False
|
|
|
|
noIgnore = False
|
2005-02-18 07:14:17 +01:00
|
|
|
classModule = None
|
2005-02-10 03:46:18 +01:00
|
|
|
Proxy = IrcObjectProxy
|
|
|
|
def __init__(self, irc):
|
|
|
|
self.__parent = super(PluginMixin, self)
|
2005-02-24 13:49:08 +01:00
|
|
|
self.__parent.__init__(irc)
|
2005-02-10 03:46:18 +01:00
|
|
|
myName = self.name()
|
|
|
|
self.log = log.getPluginLogger(myName)
|
|
|
|
# We can't do this because of the specialness that Owner and Misc do.
|
|
|
|
# I guess plugin authors will have to get the capitalization right.
|
|
|
|
# self.callAfter = map(str.lower, self.callAfter)
|
|
|
|
# self.callBefore = map(str.lower, self.callBefore)
|
|
|
|
|
2005-02-18 01:16:06 +01:00
|
|
|
def canonicalName(self):
|
|
|
|
return canonicalName(self.name())
|
|
|
|
|
2005-02-10 03:46:18 +01:00
|
|
|
def __call__(self, irc, msg):
|
|
|
|
if msg.command == 'PRIVMSG':
|
|
|
|
if self.noIgnore or not ircdb.checkIgnored(msg.prefix,msg.args[0]):
|
|
|
|
self.__parent.__call__(irc, msg)
|
|
|
|
else:
|
|
|
|
self.__parent.__call__(irc, msg)
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def registryValue(self, name, channel=None, value=True):
|
|
|
|
plugin = self.name()
|
|
|
|
group = conf.supybot.plugins.get(plugin)
|
|
|
|
names = registry.split(name)
|
|
|
|
for name in names:
|
|
|
|
group = group.get(name)
|
|
|
|
if channel is not None:
|
|
|
|
if ircutils.isChannel(channel):
|
|
|
|
group = group.get(channel)
|
|
|
|
else:
|
|
|
|
self.log.debug('registryValue got channel=%r', channel)
|
|
|
|
if value:
|
|
|
|
return group()
|
|
|
|
else:
|
|
|
|
return group
|
|
|
|
|
|
|
|
def setRegistryValue(self, name, value, channel=None):
|
|
|
|
plugin = self.name()
|
|
|
|
group = conf.supybot.plugins.get(plugin)
|
|
|
|
names = registry.split(name)
|
|
|
|
for name in names:
|
|
|
|
group = group.get(name)
|
|
|
|
if channel is None:
|
|
|
|
group.setValue(value)
|
|
|
|
else:
|
|
|
|
group.get(channel).setValue(value)
|
|
|
|
|
|
|
|
def userValue(self, name, prefixOrName, default=None):
|
|
|
|
try:
|
|
|
|
id = str(ircdb.users.getUserId(prefixOrName))
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
plugin = self.name()
|
|
|
|
group = conf.users.plugins.get(plugin)
|
|
|
|
names = registry.split(name)
|
|
|
|
for name in names:
|
|
|
|
group = group.get(name)
|
|
|
|
return group.get(id)()
|
|
|
|
|
|
|
|
def setUserValue(self, name, prefixOrName, value,
|
|
|
|
ignoreNoUser=True, setValue=True):
|
|
|
|
try:
|
|
|
|
id = str(ircdb.users.getUserId(prefixOrName))
|
|
|
|
except KeyError:
|
|
|
|
if ignoreNoUser:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
plugin = self.name()
|
|
|
|
group = conf.users.plugins.get(plugin)
|
|
|
|
names = registry.split(name)
|
|
|
|
for name in names:
|
|
|
|
group = group.get(name)
|
|
|
|
group = group.get(id)
|
|
|
|
if setValue:
|
|
|
|
group.setValue(value)
|
|
|
|
else:
|
|
|
|
group.set(value)
|
|
|
|
|
2005-03-03 20:34:26 +01:00
|
|
|
def getPluginHelp(self):
|
|
|
|
if hasattr(self, '__doc__'):
|
|
|
|
return self.__doc__
|
|
|
|
else:
|
|
|
|
return None
|
2005-01-19 14:14:38 +01:00
|
|
|
|
2005-02-10 03:46:18 +01:00
|
|
|
class Plugin(PluginMixin, Commands):
|
|
|
|
pass
|
2005-02-18 06:17:23 +01:00
|
|
|
Privmsg = Plugin # Backwards compatibility.
|
2005-02-10 03:46:18 +01:00
|
|
|
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
class SimpleProxy(RichReplyMethods):
|
|
|
|
"""This class is a thin wrapper around an irclib.Irc object that gives it
|
|
|
|
the reply() and error() methods (as well as everything in RichReplyMethods,
|
|
|
|
based on those two)."""
|
|
|
|
def __init__(self, irc, msg):
|
|
|
|
self.irc = irc
|
|
|
|
self.msg = msg
|
|
|
|
|
|
|
|
def error(self, s, msg=None, **kwargs):
|
|
|
|
if 'Raise' in kwargs and kwargs['Raise']:
|
|
|
|
if s:
|
|
|
|
raise Error, s
|
|
|
|
else:
|
|
|
|
raise ArgumentError
|
|
|
|
if msg is None:
|
|
|
|
msg = self.msg
|
|
|
|
m = error(msg, s, **kwargs)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
|
|
|
|
def reply(self, s, msg=None, **kwargs):
|
|
|
|
if msg is None:
|
|
|
|
msg = self.msg
|
|
|
|
assert not isinstance(s, ircmsgs.IrcMsg), \
|
|
|
|
'Old code alert: there is no longer a "msg" argument to reply.'
|
|
|
|
m = reply(msg, s, **kwargs)
|
|
|
|
self.irc.queueMsg(m)
|
|
|
|
return m
|
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
|
|
|
return getattr(self.irc, attr)
|
|
|
|
|
2005-02-09 08:04:04 +01:00
|
|
|
class PluginRegexp(Plugin):
|
2005-02-09 22:50:12 +01:00
|
|
|
"""Same as Plugin, except allows the user to also include regexp-based
|
|
|
|
callbacks. All regexp-based callbacks must be specified in a set (or
|
|
|
|
list) attribute "regexps".
|
2005-01-19 14:14:38 +01:00
|
|
|
"""
|
|
|
|
flags = re.I
|
|
|
|
regexps = ()
|
|
|
|
addressedRegexps = ()
|
|
|
|
Proxy = SimpleProxy
|
2005-01-29 20:16:29 +01:00
|
|
|
def __init__(self, irc):
|
2005-02-09 22:50:12 +01:00
|
|
|
self.__parent = super(PluginRegexp, self)
|
2005-01-29 20:16:29 +01:00
|
|
|
self.__parent.__init__(irc)
|
2005-01-19 14:14:38 +01:00
|
|
|
self.res = []
|
|
|
|
self.addressedRes = []
|
|
|
|
for name in self.regexps:
|
2005-02-18 09:26:28 +01:00
|
|
|
method = getattr(self, name)
|
2005-01-19 14:14:38 +01:00
|
|
|
r = re.compile(method.__doc__, self.flags)
|
|
|
|
self.res.append((r, name))
|
|
|
|
for name in self.addressedRegexps:
|
2005-02-18 09:26:28 +01:00
|
|
|
method = getattr(self, name)
|
2005-01-19 14:14:38 +01:00
|
|
|
r = re.compile(method.__doc__, self.flags)
|
|
|
|
self.addressedRes.append((r, name))
|
|
|
|
|
2005-02-18 17:19:44 +01:00
|
|
|
def _callRegexp(self, name, irc, msg, m):
|
|
|
|
method = getattr(self, name)
|
|
|
|
try:
|
|
|
|
method(irc, msg, m)
|
|
|
|
except Error, e:
|
|
|
|
irc.error(str(e))
|
|
|
|
except Exception, e:
|
|
|
|
self.log.exception('Uncaught exception in _callRegexp:')
|
|
|
|
|
|
|
|
def invalidCommand(self, irc, msg, tokens):
|
|
|
|
s = ' '.join(tokens)
|
|
|
|
for (r, name) in self.addressedRes:
|
|
|
|
for m in r.finditer(s):
|
|
|
|
self._callRegexp(name, irc, msg, m)
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
def doPrivmsg(self, irc, msg):
|
|
|
|
if msg.isError:
|
|
|
|
return
|
2005-02-18 17:19:44 +01:00
|
|
|
proxy = self.Proxy(irc, msg)
|
2005-01-19 14:14:38 +01:00
|
|
|
for (r, name) in self.res:
|
|
|
|
for m in r.finditer(msg.args[1]):
|
2005-02-18 17:19:44 +01:00
|
|
|
self._callRegexp(name, proxy, msg, m)
|
2005-02-09 08:04:04 +01:00
|
|
|
PrivmsgCommandAndRegexp = PluginRegexp
|
|
|
|
|
2005-01-19 14:14:38 +01:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|