2003-10-16 16:53:42 +02:00
|
|
|
#!/usr/bin/env python
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-10-01 13:12:06 +02: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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2004-08-19 14:12:38 +02:00
|
|
|
Various commands relating to Python (the programming language Supybot is
|
2003-10-01 13:12:06 +02:00
|
|
|
written in) somehow.
|
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
import os
|
2003-11-02 19:55:08 +01:00
|
|
|
import re
|
2003-10-01 13:12:06 +02:00
|
|
|
import imp
|
2003-10-04 16:57:20 +02:00
|
|
|
import sys
|
2003-10-05 22:05:53 +02:00
|
|
|
import math
|
2003-10-01 13:12:06 +02:00
|
|
|
import random
|
2003-10-04 16:57:20 +02:00
|
|
|
import string
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
# Stupid printing on import...
|
|
|
|
from cStringIO import StringIO
|
2004-06-02 07:16:54 +02:00
|
|
|
try:
|
2004-08-20 17:26:03 +02:00
|
|
|
# We used to use sys.__stdout__ here, but that caused problems with
|
|
|
|
# daemonization, since sys.stdout is replaced with a StringIO.
|
|
|
|
original = sys.stdout
|
2004-06-02 07:16:54 +02:00
|
|
|
sys.stdout = StringIO()
|
|
|
|
import this
|
|
|
|
finally:
|
2004-08-20 17:26:03 +02:00
|
|
|
sys.stdout = original
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.webutils as webutils
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.registry as registry
|
|
|
|
import supybot.callbacks as callbacks
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2003-10-05 23:37:29 +02:00
|
|
|
L = [os.__file__]
|
|
|
|
if hasattr(math, '__file__'):
|
|
|
|
L.append(math.__file__)
|
|
|
|
pythonPath = map(os.path.dirname, L)
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2004-01-30 00:58:27 +01:00
|
|
|
def configure(advanced):
|
2004-07-25 20:24:51 +02:00
|
|
|
from supybot.questions import output, expect, anything, something, yn
|
2004-01-27 16:28:00 +01:00
|
|
|
conf.registerPlugin('Python', True)
|
2003-11-20 00:34:53 +01:00
|
|
|
if yn("""This plugin provides a snarfer for ASPN Python Recipe URLs;
|
|
|
|
it will output the name of the Recipe when it sees such a URL.
|
2004-01-31 23:24:43 +01:00
|
|
|
Would you like to enable this snarfer?"""):
|
2004-01-27 16:28:00 +01:00
|
|
|
conf.supybot.plugins.Python.aspnSnarfer.setValue(True)
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2004-01-27 16:28:00 +01:00
|
|
|
conf.registerPlugin('Python')
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Python, 'aspnSnarfer',
|
|
|
|
registry.Boolean(False, """Determines whether the ASPN Python recipe
|
|
|
|
snarfer is enabled. If so, it will message the channel with the name of
|
|
|
|
the recipe when it see an ASPN Python recipe link on the channel."""))
|
|
|
|
|
|
|
|
class Python(callbacks.PrivmsgCommandAndRegexp):
|
2003-10-01 13:12:06 +02:00
|
|
|
modulechars = '%s%s%s' % (string.ascii_letters, string.digits, '_.')
|
2003-11-02 19:55:08 +01:00
|
|
|
regexps = ['aspnRecipes']
|
2003-10-01 13:12:06 +02:00
|
|
|
def pydoc(self, irc, msg, args):
|
|
|
|
"""<python function>
|
|
|
|
|
|
|
|
Returns the __doc__ string for a given Python function.
|
|
|
|
"""
|
2003-10-20 08:43:59 +02:00
|
|
|
def normalize(s):
|
2003-11-13 18:56:51 +01:00
|
|
|
return utils.normalizeWhitespace(s.replace('\n\n', '. '))
|
2003-11-04 07:26:24 +01:00
|
|
|
def getModule(name, path=pythonPath):
|
|
|
|
if name in sys.modules:
|
|
|
|
return sys.modules[name]
|
2003-10-01 13:12:06 +02:00
|
|
|
else:
|
2003-11-04 07:26:24 +01:00
|
|
|
parts = name.split('.')
|
2003-10-20 08:43:59 +02:00
|
|
|
for name in parts:
|
|
|
|
try:
|
|
|
|
info = imp.find_module(name, path)
|
|
|
|
newmodule = imp.load_module(name, *info)
|
|
|
|
path = [os.path.dirname(newmodule.__file__)]
|
2003-10-21 00:37:33 +02:00
|
|
|
if info[0] is not None:
|
|
|
|
info[0].close()
|
2003-10-20 08:43:59 +02:00
|
|
|
except ImportError:
|
2003-10-22 05:55:03 +02:00
|
|
|
if parts == ['os', 'path']:
|
2003-11-04 07:26:24 +01:00
|
|
|
return os.path
|
2003-10-22 05:55:03 +02:00
|
|
|
else:
|
2003-11-04 07:26:24 +01:00
|
|
|
return None
|
|
|
|
return newmodule
|
|
|
|
name = privmsgs.getArgs(args)
|
|
|
|
if name.translate(string.ascii, self.modulechars) != '':
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('That\'s not a valid module or function name.')
|
2003-11-04 07:26:24 +01:00
|
|
|
return
|
|
|
|
if '.' in name:
|
|
|
|
(moduleName, funcName) = rsplit(name, '.', 1)
|
|
|
|
if moduleName in __builtins__:
|
|
|
|
obj = __builtins__[moduleName]
|
|
|
|
if hasattr(obj, funcName):
|
|
|
|
obj = getattr(obj, funcName)
|
|
|
|
if hasattr(obj, '__doc__'):
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(normalize(obj.__doc__))
|
2003-10-20 08:43:59 +02:00
|
|
|
else:
|
2004-08-19 14:19:18 +02:00
|
|
|
irc.reply('%s has no documentation.' % name)
|
2003-10-20 08:43:59 +02:00
|
|
|
else:
|
2004-08-19 14:19:18 +02:00
|
|
|
s = '%s has no method %s.' % (moduleName, funcName)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2003-11-04 07:26:24 +01:00
|
|
|
elif moduleName:
|
|
|
|
newmodule = getModule(moduleName)
|
|
|
|
if newmodule is None:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No module %s exists.' % moduleName)
|
2004-07-21 21:36:35 +02:00
|
|
|
else:
|
2003-11-04 07:26:24 +01:00
|
|
|
if hasattr(newmodule, funcName):
|
|
|
|
f = getattr(newmodule, funcName)
|
2003-11-17 07:00:56 +01:00
|
|
|
if hasattr(f, '__doc__') and f.__doc__:
|
2003-11-04 07:26:24 +01:00
|
|
|
s = normalize(f.__doc__)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2003-11-04 07:26:24 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('%s has no documentation.' % name)
|
2003-11-04 07:26:24 +01:00
|
|
|
else:
|
2004-08-19 14:19:18 +02:00
|
|
|
s = '%s has no function %s.' % (moduleName, funcName)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error(s)
|
2003-10-01 13:12:06 +02:00
|
|
|
else:
|
2003-11-04 07:26:24 +01:00
|
|
|
if name in sys.modules:
|
|
|
|
newmodule = sys.modules[name]
|
|
|
|
if hasattr(newmodule, '__doc__') and newmodule.__doc__:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(normalize(newmodule.__doc__))
|
2003-11-04 07:26:24 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply('Module %s has no documentation.' % name)
|
2003-11-04 07:26:24 +01:00
|
|
|
elif name in __builtins__:
|
|
|
|
f = __builtins__[name]
|
2003-11-17 07:00:56 +01:00
|
|
|
if hasattr(f, '__doc__') and f.__doc__:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(normalize(f.__doc__))
|
2003-10-01 13:12:06 +02:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('That function has no documentation.')
|
2003-11-04 07:26:24 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No function or module %s exists.' % name)
|
2003-12-01 00:24:09 +01:00
|
|
|
|
2003-10-01 13:12:06 +02:00
|
|
|
_these = [str(s) for s in this.s.decode('rot13').splitlines() if s]
|
|
|
|
_these.pop(0) # Initial line (The Zen of Python...)
|
|
|
|
def zen(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns one of the zen of Python statements.
|
|
|
|
"""
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(random.choice(self._these))
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2003-11-02 19:55:08 +01:00
|
|
|
_title = re.compile(r'<b>(Title):</b> (.*)', re.I)
|
|
|
|
_submit = re.compile(r'<b>(Submitter):</b> (.*)', re.I)
|
|
|
|
_update = re.compile(r'<b>Last (Updated):</b> (.*)', re.I)
|
|
|
|
_version = re.compile(r'<b>(Version) no:</b> (.*)', re.I)
|
|
|
|
_category = re.compile(r'<b>(Category):</b>.*?<a href[^>]+>(.*?)</a>',
|
|
|
|
re.I | re.S)
|
|
|
|
_description = re.compile(r'<p><b>(Description):</b></p>.+?<p>(.+?)</p>',
|
|
|
|
re.I | re.S)
|
|
|
|
_searches = (_title, _submit, _update, _version, _category, _description)
|
|
|
|
_bold = lambda self, g: (ircutils.bold(g[0]),) + g[1:]
|
|
|
|
def aspnRecipes(self, irc, msg, match):
|
|
|
|
r"http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/\d+"
|
2004-01-27 16:28:00 +01:00
|
|
|
if not self.registryValue('aspnSnarfer', msg.args[0]):
|
2003-11-02 19:55:08 +01:00
|
|
|
return
|
|
|
|
url = match.group(0)
|
2003-12-02 12:18:51 +01:00
|
|
|
s = webutils.getUrl(url)
|
2003-11-02 19:55:08 +01:00
|
|
|
resp = []
|
|
|
|
for r in self._searches:
|
|
|
|
m = r.search(s)
|
|
|
|
if m:
|
|
|
|
resp.append('%s: %s' % self._bold(m.groups()))
|
|
|
|
if resp:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply('; '.join(resp), prefixName = False)
|
2003-11-08 09:12:25 +01:00
|
|
|
aspnRecipes = privmsgs.urlSnarfer(aspnRecipes)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
Class = Python
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|