2003-10-16 16:53:42 +02:00
|
|
|
#!/usr/bin/env python
|
2003-10-10 15:47:06 +02:00
|
|
|
|
|
|
|
###
|
2003-10-11 20:40:22 +02:00
|
|
|
# Copyright (c) 2003, James Vega
|
2003-10-10 15:47: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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2003-10-11 20:40:22 +02:00
|
|
|
Accesses Sourceforge.net for various things
|
2003-10-10 15:47:06 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
2003-10-11 22:52:35 +02:00
|
|
|
import sets
|
2003-10-10 15:47:06 +02:00
|
|
|
import urllib2
|
|
|
|
|
2003-10-11 20:40:22 +02:00
|
|
|
from itertools import ifilter
|
2003-10-10 15:47:06 +02:00
|
|
|
|
2003-10-20 19:52:09 +02:00
|
|
|
import conf
|
2003-10-10 15:47:06 +02:00
|
|
|
import debug
|
|
|
|
import utils
|
2003-10-29 07:06:56 +01:00
|
|
|
import plugins
|
2003-10-11 20:40:22 +02:00
|
|
|
import ircutils
|
2003-10-10 15:47:06 +02:00
|
|
|
import privmsgs
|
|
|
|
import callbacks
|
|
|
|
|
|
|
|
|
|
|
|
def configure(onStart, afterConnect, advanced):
|
|
|
|
# This will be called by setup.py to configure this module. onStart and
|
|
|
|
# afterConnect are both lists. Append to onStart the commands you would
|
|
|
|
# like to be run when the bot is started; append to afterConnect the
|
|
|
|
# commands you would like to be run when the bot has finished connecting.
|
|
|
|
from questions import expect, anything, something, yn
|
2003-10-21 18:43:02 +02:00
|
|
|
onStart.append('load Sourceforge')
|
2003-10-27 21:24:32 +01:00
|
|
|
if advanced:
|
|
|
|
print 'The Sourceforge plugin has the functionality to watch for URLs'
|
|
|
|
print 'that match a specific pattern (we call this a snarfer). When'
|
|
|
|
print 'supybot sees such a URL, he will parse the web page for'
|
|
|
|
print 'information and reply with the results.\n'
|
|
|
|
if yn('Do you want the Sourceforge snarfer enabled by default?') =='n':
|
2003-10-29 07:06:56 +01:00
|
|
|
onStart.append('Sourceforge toggle tracker off')
|
2003-10-27 21:24:32 +01:00
|
|
|
|
|
|
|
print 'The bugs and rfes commands of the Sourceforge plugin can be set'
|
|
|
|
print 'to query a default project when no project is specified. If this'
|
|
|
|
print 'project is not set, calling either of those commands will display'
|
|
|
|
print 'the associated help. With the default project set, calling'
|
|
|
|
print 'bugs/rfes with no arguments will find the most recent bugs/rfes'
|
|
|
|
print 'for the default project.\n'
|
|
|
|
if yn('Do you want to specify a default project?') == 'y':
|
|
|
|
project = anything('Project name:')
|
|
|
|
if project:
|
|
|
|
onStart.append('Sourceforge setdefault %s' % project)
|
2003-10-10 15:47:06 +02:00
|
|
|
|
|
|
|
example = utils.wrapLines("""
|
2003-10-10 15:55:38 +02:00
|
|
|
<@jamessan|work> @bugs
|
|
|
|
< supybot> jamessan|work: Bug #820702: ChannelDB bugs in stats., Bug #797823: Time reporting errors on win9x, Bug #794330: Website documentation isn't finished., Bug #708327: FreeBSD plugin doesn't automatically download the new INDEX, and Bug #708158: FreeBSD plugin's searchports doesn't do depends correctly.
|
|
|
|
<@jamessan|work> @bugs supybot 797823
|
|
|
|
< supybot> jamessan|work: Time reporting errors on win9x <http://sourceforge.net/tracker/index.php?func=detail&aid=797823&group_id=58965&atid=489447>
|
|
|
|
<@jamessan|work> @bugs gaim
|
|
|
|
< supybot> jamessan|work: Bug #821118: MSN Plugin cannot be loaded
|
|
|
|
in 0.71, Bug #820961: dock icon doesn't show up with..., Bug #820879: Cannot connect to a particular irc..., Bug #820831: © or ® render im null, Bug #820776: gaim 0.70 segfaults using certain..., Bug #820691: gaim 0.70 fails to start up on..., Bug #820687: MSN duplicating buddies at signon, Bug (6 more messages)
|
|
|
|
<@jamessan|work> @rfes pythoggoras
|
|
|
|
< supybot> jamessan|work: RFE #728701: Ability to specify 'themed' configs at command line, RFE #720757: Improve CLI interface, RFE #719248: Add config file support, and RFE #717761: Tracker for adding GUI
|
|
|
|
<@jamessan|work> @rfes pythoggoras 720757
|
|
|
|
< supybot> jamessan|work: Improve CLI interface <http://sourceforge.net/tracker/index.php?func=detail&aid=720757&group_id=75946&atid=545548>
|
2003-10-10 15:47:06 +02:00
|
|
|
""")
|
|
|
|
|
2003-10-29 07:06:56 +01:00
|
|
|
class Sourceforge(callbacks.PrivmsgCommandAndRegexp, plugins.Toggleable):
|
2003-10-11 20:40:22 +02:00
|
|
|
"""
|
|
|
|
Module for Sourceforge stuff. Currently contains commands to query a
|
|
|
|
project's most recent bugs and rfes.
|
|
|
|
"""
|
2003-10-10 15:47:06 +02:00
|
|
|
threaded = True
|
2003-10-21 23:10:20 +02:00
|
|
|
regexps = ['sfSnarfer']
|
2003-10-10 15:47:06 +02:00
|
|
|
|
2003-10-24 14:38:45 +02:00
|
|
|
_reopts = re.I
|
2003-10-27 21:24:32 +01:00
|
|
|
_infoRe = re.compile(r'<td nowrap>(\d+)</td><td><a href='\
|
|
|
|
'"([^"]+)">([^<]+)</a>', _reopts)
|
|
|
|
_hrefOpts = '&set=custom&_assigned_to=0&_status=1&_category'\
|
|
|
|
'=100&_group=100&order=artifact_id&sort=DESC'
|
|
|
|
_resolution = re.compile(r'<b>Resolution:</b> <a.+?<br>(.+?)</td>',_reopts)
|
2003-10-24 14:38:45 +02:00
|
|
|
_assigned = re.compile(r'<b>Assigned To:</b> <a.+?<br>(.+?)</td>', _reopts)
|
|
|
|
_submitted = re.compile(r'<b>Submitted By:</b><br>([^<]+)</td>', _reopts)
|
|
|
|
_priority = re.compile(r'<b>Priority:</b> <a.+?<br>(.+?)</td>', _reopts)
|
|
|
|
_status = re.compile(r'<b>Status:</b> <a.+?<br>(.+?)</td>', _reopts)
|
2003-10-27 21:24:32 +01:00
|
|
|
_res ={'Resolution':_resolution,'Assigned to':_assigned,
|
|
|
|
'Submitted by':_submitted, 'Priority':_priority,
|
|
|
|
'Status':_status}
|
2003-10-18 16:19:06 +02:00
|
|
|
|
2003-10-29 07:06:56 +01:00
|
|
|
toggles = plugins.ToggleDictionary({'tracker' : True})
|
|
|
|
project = None
|
|
|
|
|
2003-10-20 19:52:09 +02:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.PrivmsgCommandAndRegexp.__init__(self)
|
2003-10-29 08:23:20 +01:00
|
|
|
plugins.Toggleable.__init__(self)
|
2003-10-20 19:52:09 +02:00
|
|
|
|
2003-10-11 20:40:22 +02:00
|
|
|
def _formatResp(self, num, text):
|
|
|
|
"""
|
|
|
|
Parses the Sourceforge query to return a list of tuples that
|
|
|
|
contain the bug/rfe information.
|
|
|
|
"""
|
|
|
|
|
|
|
|
matches = []
|
|
|
|
try:
|
|
|
|
int(num)
|
|
|
|
for item in ifilter(lambda s, n=num: s is not None and n in s,
|
|
|
|
self._infoRe.findall(text)):
|
|
|
|
matches.append((ircutils.bold(utils.htmlToText(item[2])),
|
|
|
|
utils.htmlToText(item[1])))
|
|
|
|
except ValueError:
|
|
|
|
for item in ifilter(None, self._infoRe.findall(text)):
|
|
|
|
matches.append((item[0], utils.htmlToText(item[2])))
|
|
|
|
return matches
|
|
|
|
|
2003-10-27 21:24:32 +01:00
|
|
|
def setdefault(self, irc, msg, args):
|
|
|
|
"""<project>
|
2003-10-20 19:52:09 +02:00
|
|
|
|
2003-10-27 21:24:32 +01:00
|
|
|
Sets the default project to be used with bugs and rfes
|
2003-10-20 19:52:09 +02:00
|
|
|
"""
|
2003-10-27 21:24:32 +01:00
|
|
|
project = privmsgs.getArgs(args)
|
|
|
|
self.project = project
|
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
setdefault = privmsgs.checkCapability(setdefault, 'admin')
|
|
|
|
|
|
|
|
def _getTrackerInfo(self, irc, msg, url, regex, num):
|
2003-10-10 15:47:06 +02:00
|
|
|
try:
|
|
|
|
fd = urllib2.urlopen(url)
|
|
|
|
text = fd.read()
|
|
|
|
fd.close()
|
2003-10-27 21:24:32 +01:00
|
|
|
m = regex.search(text)
|
2003-10-10 15:47:06 +02:00
|
|
|
if m is None:
|
2003-10-27 21:24:32 +01:00
|
|
|
irc.reply(msg, 'Can\'t find the proper Tracker link.')
|
2003-10-10 15:47:06 +02:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
url = 'http://sourceforge.net%s%s' %\
|
2003-10-11 20:40:22 +02:00
|
|
|
(utils.htmlToText(m.group(1)), self._hrefOpts)
|
2003-10-10 15:47:06 +02:00
|
|
|
except ValueError, e:
|
|
|
|
irc.error(msg, str(e))
|
2003-10-11 20:40:22 +02:00
|
|
|
except urllib2.HTTPError, e:
|
2003-10-10 15:47:06 +02:00
|
|
|
irc.error(msg, e.msg())
|
|
|
|
except Exception, e:
|
|
|
|
irc.error(msg, debug.exnToString(e))
|
|
|
|
|
|
|
|
try:
|
|
|
|
fd = urllib2.urlopen(url)
|
|
|
|
text = fd.read()
|
|
|
|
fd.close()
|
2003-10-11 20:40:22 +02:00
|
|
|
resp = []
|
2003-10-27 21:24:32 +01:00
|
|
|
if num != '':
|
2003-10-11 20:40:22 +02:00
|
|
|
head = '%s <http://sourceforge.net%s>'
|
2003-10-27 21:24:32 +01:00
|
|
|
for match in self._formatResp(num, text):
|
|
|
|
resp.append(head % match)
|
2003-10-10 15:47:06 +02:00
|
|
|
if resp:
|
|
|
|
irc.reply(msg, resp[0])
|
|
|
|
return
|
|
|
|
else:
|
2003-10-27 21:24:32 +01:00
|
|
|
head = '#%s: %s'
|
|
|
|
for entry in self._formatResp(num, text):
|
|
|
|
resp.append(head % entry)
|
2003-10-10 15:47:06 +02:00
|
|
|
if resp:
|
|
|
|
if len(resp) > 10:
|
|
|
|
resp = map(lambda s: utils.ellipsisify(s, 50), resp)
|
|
|
|
irc.reply(msg, '%s' % utils.commaAndify(resp))
|
|
|
|
return
|
2003-10-27 21:24:32 +01:00
|
|
|
irc.reply(msg, 'No Trackers were found.')
|
2003-10-10 15:47:06 +02:00
|
|
|
except ValueError, e:
|
|
|
|
irc.error(msg, str(e))
|
|
|
|
except Exception, e:
|
|
|
|
irc.error(msg, debug.exnToString(e))
|
|
|
|
|
2003-10-27 21:24:32 +01:00
|
|
|
_bugLink = re.compile(r'"([^"]+)">Bugs')
|
|
|
|
def bugs(self, irc, msg, args):
|
|
|
|
"""[<project> [<num>]]
|
|
|
|
|
|
|
|
Returns a list of the most recent bugs filed against <project>.
|
|
|
|
Defaults to searching for supybot bugs. If <num> is specified, the bug
|
|
|
|
description and link are retrieved.
|
|
|
|
"""
|
|
|
|
(project, bugnum) = privmsgs.getArgs(args, needed=0, optional=2)
|
|
|
|
if not project:
|
|
|
|
if self.project is None:
|
|
|
|
raise callbacks.ArgumentError
|
|
|
|
else:
|
|
|
|
project = self.project
|
|
|
|
elif not bugnum:
|
|
|
|
try:
|
|
|
|
bugnum = int(project)
|
|
|
|
project = self.project
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
url = 'http://sourceforge.net/projects/%s' % project
|
|
|
|
self._getTrackerInfo(irc, msg, url, self._bugLink, bugnum)
|
|
|
|
|
2003-10-10 15:47:06 +02:00
|
|
|
_rfeLink = re.compile(r'"([^"]+)">RFE')
|
|
|
|
def rfes(self, irc, msg, args):
|
|
|
|
"""[<project> [<num>]]
|
|
|
|
|
2003-10-11 20:40:22 +02:00
|
|
|
Returns a list of the most recent RFEs filed against <project>.
|
|
|
|
Defaults to searching for supybot RFEs. If <num> is specified, the rfe
|
2003-10-10 15:47:06 +02:00
|
|
|
description and link are retrieved.
|
|
|
|
"""
|
|
|
|
(project, rfenum) = privmsgs.getArgs(args, needed=0, optional=2)
|
|
|
|
if not project:
|
2003-10-27 21:24:32 +01:00
|
|
|
if self.project is None:
|
|
|
|
raise callbacks.ArgumentError
|
2003-10-10 15:47:06 +02:00
|
|
|
else:
|
2003-10-27 21:24:32 +01:00
|
|
|
project = self.project
|
|
|
|
elif not rfenum:
|
|
|
|
try:
|
|
|
|
rfenum = int(project)
|
|
|
|
project = self.project
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
url = 'http://sourceforge.net/projects/%s' % project
|
|
|
|
self._getTrackerInfo(irc, msg, url, self._rfeLink, rfenum)
|
2003-10-10 15:47:06 +02:00
|
|
|
|
2003-10-27 21:24:32 +01:00
|
|
|
_getSnarferInfo = lambda self, k, v, s: '%s: %s' % (ircutils.bold(k),
|
|
|
|
v.search(s).group(1))
|
2003-10-11 22:52:35 +02:00
|
|
|
_sfTitle = re.compile(r'Detail:(\d+) - ([^<]+)</title>', re.I)
|
|
|
|
_linkType = re.compile(r'(\w+ \w+|\w+): Tracker Detailed View', re.I)
|
2003-10-21 14:20:23 +02:00
|
|
|
def sfSnarfer(self, irc, msg, match):
|
2003-10-22 17:58:07 +02:00
|
|
|
r"https?://(?:www\.)?(?:sourceforge|sf)\.net/tracker/(?:index\.php)?\?(?:&?func=detail|&?aid=\d+|&?group_id=\d+|&?atid=\d+){4}"
|
2003-10-29 07:06:56 +01:00
|
|
|
if not self.toggles.get('tracker', channel=msg.args[0]):
|
2003-10-20 19:52:09 +02:00
|
|
|
return
|
2003-10-11 22:52:35 +02:00
|
|
|
url = match.group(0)
|
|
|
|
fd = urllib2.urlopen(url)
|
|
|
|
s = fd.read()
|
|
|
|
fd.close()
|
|
|
|
try:
|
|
|
|
(num, desc) = self._sfTitle.search(s).groups()
|
2003-10-18 16:19:06 +02:00
|
|
|
resp = [desc]
|
2003-10-16 04:42:47 +02:00
|
|
|
linktype = self._linkType.search(s).group(1)
|
2003-10-27 21:24:32 +01:00
|
|
|
for k,v in self._res.iteritems():
|
2003-10-18 16:19:06 +02:00
|
|
|
try:
|
2003-10-27 21:24:32 +01:00
|
|
|
resp.append(self._getSnarferInfo(k, v, s))
|
2003-10-18 16:19:06 +02:00
|
|
|
except AttributeError:
|
|
|
|
pass
|
2003-10-18 16:21:03 +02:00
|
|
|
linktype = utils.depluralize(linktype)
|
2003-10-18 16:19:06 +02:00
|
|
|
irc.reply(msg, '%s #%s: %s' % (ircutils.bold(linktype),
|
2003-10-21 18:43:02 +02:00
|
|
|
ircutils.bold(num), '; '.join(resp)), prefixName = False)
|
2003-10-11 22:52:35 +02:00
|
|
|
except AttributeError, e:
|
2003-10-17 16:18:00 +02:00
|
|
|
irc.error(msg, 'That doesn\'t appear to be a proper Sourceforge '\
|
2003-10-21 18:43:02 +02:00
|
|
|
'Tracker page. (%s)' % conf.replyPossibleBug)
|
2003-10-11 22:52:35 +02:00
|
|
|
except Exception, e:
|
|
|
|
irc.error(msg, debug.exnToString(e))
|
|
|
|
|
2003-10-21 18:43:02 +02:00
|
|
|
Class = Sourceforge
|
2003-10-10 15:47:06 +02:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|