Limnoria/src/MiscCommands.py

233 lines
9.0 KiB
Python
Raw Normal View History

2003-03-27 07:34:48 +01:00
#!/usr/bin/env python
###
# Copyright (c) 2002, Jeremiah Fincher
# 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.
###
"""
Miscellaneous commands.
"""
import os
import pprint
import conf
import debug
import privmsgs
import callbacks
class MiscCommands(callbacks.Privmsg):
def list(self, irc, msg, args):
"""[<module name>]
2003-09-07 06:05:34 +02:00
Lists the commands available in the given plugin. If no plugin is
given, lists the public plugins available.
2003-03-27 07:34:48 +01:00
"""
name = privmsgs.getArgs(args, needed=0, optional=1)
name = name.lower()
if not name:
names = [cb.name() for cb in irc.callbacks
2003-03-27 07:34:48 +01:00
if hasattr(cb, 'public') and cb.public]
2003-03-28 08:23:12 +01:00
names.sort()
2003-03-27 07:34:48 +01:00
irc.reply(msg, ', '.join(names))
else:
for cb in irc.callbacks:
cls = cb.__class__
2003-04-20 03:02:29 +02:00
if cb.name().lower().startswith(name) and \
2003-03-27 07:34:48 +01:00
not issubclass(cls, callbacks.PrivmsgRegexp) and \
issubclass(cls, callbacks.Privmsg):
commands = [x for x in dir(cls)
2003-03-27 07:34:48 +01:00
if cb.isCommand(x) and \
hasattr(getattr(cb, x), '__doc__')]
2003-03-28 08:23:12 +01:00
commands.sort()
2003-03-27 07:34:48 +01:00
irc.reply(msg, ', '.join(commands))
return
2003-09-07 06:05:34 +02:00
irc.error(msg, 'There is no plugin named %s, ' \
'or that plugin has no commands.' % name)
2003-03-27 07:34:48 +01:00
def help(self, irc, msg, args):
"""<command>
Gives the help for a specific command. To find commands,
2003-09-07 06:05:34 +02:00
use the 'list' command to go see the commands offered by a plugin.
The 'list' command by itself will show you what plugins have commands.
2003-03-27 07:34:48 +01:00
"""
command = privmsgs.getArgs(args, needed=0, optional=1)
if not command:
command = 'help'
command = callbacks.canonicalName(command)
cb = irc.findCallback(command)
if cb:
method = getattr(cb, command)
2003-04-08 09:20:42 +02:00
if hasattr(method, '__doc__') and method.__doc__ is not None:
2003-08-30 21:52:56 +02:00
doclines = method.__doc__.strip().splitlines()
2003-03-27 07:34:48 +01:00
help = doclines.pop(0)
if doclines:
s = '%s %s (for more help use the morehelp command)'
else:
s = '%s %s'
irc.reply(msg, s % (command, help))
else:
irc.reply(msg, 'That command exists, but has no help.')
else:
2003-08-30 21:52:56 +02:00
cb = irc.getCallback(command)
if cb:
if hasattr(cb, '__doc__') and cb.__doc__ is not None:
doclines = cb.__doc__.strip().splitlines()
help = ' '.join(map(str.strip, doclines))
2003-09-07 06:05:34 +02:00
if not help.endswith('.'):
help += '.'
help += ' Use the list command to see what commands ' \
'this plugin supports.'
2003-08-30 21:52:56 +02:00
irc.reply(msg, help)
else:
module = __import__(cb.__module__)
if hasattr(module, '__doc__') and module.__doc__:
doclines = module.__doc__.strip().splitlines()
2003-03-27 07:34:48 +01:00
help = ' '.join(map(str.strip, doclines))
2003-09-07 06:05:34 +02:00
if not help.endswith('.'):
help += '.'
help += ' Use the list command to see what ' \
'commands this plugin supports.'
2003-03-27 07:34:48 +01:00
irc.reply(msg, help)
else:
2003-09-07 06:05:34 +02:00
irc.error(msg, 'That plugin has no help.')
2003-03-27 07:34:48 +01:00
else:
2003-09-07 06:05:34 +02:00
irc.error(msg, 'There is no such command or plugin.')
2003-03-27 07:34:48 +01:00
def morehelp(self, irc, msg, args):
"""<command>
This command gives more help than is provided by the simple argument
list given by the command 'help'.
"""
command = callbacks.canonicalName(privmsgs.getArgs(args))
cb = irc.findCallback(command)
if cb:
method = getattr(cb, command)
if hasattr(method, '__doc__') and method.__doc__ is not None:
2003-03-27 07:34:48 +01:00
doclines = method.__doc__.splitlines()
simplehelp = doclines.pop(0)
if doclines:
doclines = filter(None, doclines)
doclines = map(str.strip, doclines)
help = ' '.join(doclines)
irc.reply(msg, help)
else:
irc.reply(msg, 'That command has no more help. '\
'The original help is this: %s %s' % \
(command, simplehelp))
else:
irc.error(msg, 'That command has no help at all.')
2003-08-20 18:26:23 +02:00
2003-03-27 07:34:48 +01:00
def bug(self, irc, msg, args):
"""takes no arguments
Log a recent bug. A revent (long) history of the messages received
will be logged, so don't abuse this command or you'll have an upset
admin to deal with.
"""
2003-04-03 12:06:11 +02:00
debug.msg(pprint.pformat(irc.state.history), 'normal')
2003-03-27 07:34:48 +01:00
irc.reply(msg, conf.replySuccess)
def version(self, irc, msg, args):
"""takes no arguments
Returns the version of the current bot.
"""
2003-08-28 15:59:07 +02:00
irc.reply(msg, conf.version)
2003-03-27 07:34:48 +01:00
2003-03-28 09:41:11 +01:00
def source(self, irc, msg, args):
"""takes no arguments
Returns a URL saying where to get SupyBot.
"""
2003-04-08 09:20:42 +02:00
irc.reply(msg, 'My source is at http://www.sf.net/projects/supybot/')
2003-03-28 09:41:11 +01:00
2003-03-27 07:34:48 +01:00
def logfilesize(self, irc, msg, args):
"""[<logfile>]
2003-03-27 07:34:48 +01:00
Returns the size of the various logfiles in use. If given a specific
logfile, returns only the size of that logfile.
2003-03-27 07:34:48 +01:00
"""
filename = privmsgs.getArgs(args, needed=0, optional=1)
if filename:
2003-04-14 16:55:28 +02:00
if not filename.endswith('.log'):
irc.error(msg, 'That filename doesn\'t appear to be a log.')
return
filenames = [filename]
else:
filenames = os.listdir(conf.logDir)
2003-03-27 07:34:48 +01:00
result = []
2003-04-14 16:56:59 +02:00
for file in filenames:
2003-03-27 07:34:48 +01:00
if file.endswith('.log'):
stats = os.stat(os.path.join(conf.logDir, file))
result.append((file, str(stats.st_size)))
irc.reply(msg, ', '.join(map(': '.join, result)))
2003-03-27 22:34:50 +01:00
def getprefixchar(self, irc, msg, args):
"""takes no arguments
Returns the prefix character(s) the bot is currently using.
"""
irc.reply(msg, repr(conf.prefixChars))
2003-09-07 06:05:34 +02:00
def plugin(self, irc, msg, args):
2003-04-14 07:54:33 +02:00
"""<command>
2003-09-07 06:05:34 +02:00
Returns the plugin <command> is in.
2003-04-14 07:54:33 +02:00
"""
command = callbacks.canonicalName(privmsgs.getArgs(args))
cb = irc.findCallback(command)
if cb is not None:
irc.reply(msg, cb.name())
2003-04-14 07:54:33 +02:00
else:
irc.error(msg, 'There is no such command %s' % command)
2003-09-07 06:05:34 +02:00
def more(self, irc, msg, args):
"""takes no arguments
If the last command was truncated due to IRC message length
limitations, returns the next chunk of the result of the last command.
"""
userHostmask = msg.prefix.split('!', 1)[1]
try:
chunk = self._mores[userHostmask].pop()
2003-09-07 06:56:26 +02:00
if self._mores[userHostmask]:
chunk += ' \x02(more)\x0F'
2003-09-07 06:56:26 +02:00
irc.reply(msg, chunk, True)
2003-09-07 06:05:34 +02:00
except KeyError:
irc.error(msg, 'You haven\'t asked me a command!')
except IndexError:
irc.error(msg, 'That\'s all, there is no more.')
2003-03-27 07:34:48 +01:00
Class = MiscCommands
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: