2003-08-22 02:46:05 +02: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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2003-08-27 20:06:26 +02:00
|
|
|
This is a module to contain Debian-specific commands.
|
2003-08-22 02:46:05 +02:00
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
2004-04-28 10:45:00 +02:00
|
|
|
__author__ = "James Vega (jamessan) <jamessan@users.sf.net>"
|
2003-11-25 09:23:47 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-08-22 02:46:05 +02:00
|
|
|
|
2003-08-26 19:08:46 +02:00
|
|
|
import re
|
2003-08-22 02:46:05 +02:00
|
|
|
import gzip
|
2003-09-11 20:46:17 +02:00
|
|
|
import sets
|
2003-10-03 02:23:03 +02:00
|
|
|
import getopt
|
2003-08-22 02:46:05 +02:00
|
|
|
import popen2
|
2003-11-21 19:16:27 +01:00
|
|
|
import socket
|
2003-10-20 19:23:08 +02:00
|
|
|
import urllib
|
2003-09-29 08:08:16 +02:00
|
|
|
import fnmatch
|
2003-08-23 01:00:10 +02:00
|
|
|
import os.path
|
2003-08-22 02:46:05 +02:00
|
|
|
from itertools import imap, ifilter
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.registry as registry
|
2004-01-21 05:17:18 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.webutils as webutils
|
|
|
|
import supybot.callbacks as callbacks
|
2003-08-22 02:46:05 +02:00
|
|
|
|
|
|
|
|
2004-01-30 00:51:20 +01:00
|
|
|
def configure(advanced):
|
2004-02-06 05:34:52 +01:00
|
|
|
from questions import output, expect, anything, something, yn
|
2004-01-28 23:19:25 +01:00
|
|
|
conf.registerPlugin('Debian', True)
|
2004-02-06 05:34:52 +01:00
|
|
|
if not utils.findBinaryInPath('zgrep'):
|
2003-08-22 02:46:05 +02:00
|
|
|
if not advanced:
|
2004-02-06 05:34:52 +01:00
|
|
|
output("""I can't find zgrep in your path. This is necessary
|
2004-01-31 23:24:43 +01:00
|
|
|
to run the file command. I'll disable this command
|
2004-02-06 05:34:52 +01:00
|
|
|
now. When you get zgrep in your path, use the command
|
2004-02-09 19:36:39 +01:00
|
|
|
'enable Debian.file' to re-enable the command.""")
|
2004-02-04 22:03:06 +01:00
|
|
|
conf.supybot.defaultCapabilities().add('-Debian.file')
|
2003-08-22 02:46:05 +02:00
|
|
|
else:
|
2004-02-06 05:34:52 +01:00
|
|
|
output("""I can't find zgrep in your path. If you want to run
|
2004-01-31 23:24:43 +01:00
|
|
|
the file command with any sort of expediency, you'll
|
|
|
|
need it. You can use a python equivalent, but it's
|
|
|
|
about two orders of magnitude slower. THIS MEANS IT
|
|
|
|
WILL TAKE AGES TO RUN THIS COMMAND. Don't do this.""")
|
2004-02-06 05:34:52 +01:00
|
|
|
if yn('Do you want to use a Python equivalent of zgrep?'):
|
2004-02-12 00:39:47 +01:00
|
|
|
conf.supybot.plugins.Debian.pythonZgrep.setValue(True)
|
2003-08-22 02:46:05 +02:00
|
|
|
else:
|
2004-01-31 23:24:43 +01:00
|
|
|
output('I\'ll disable file now.')
|
2004-02-04 22:03:06 +01:00
|
|
|
conf.supybot.defaultCapabilities().add('-Debian.file')
|
2003-08-22 02:46:05 +02:00
|
|
|
|
2004-01-21 05:17:18 +01:00
|
|
|
conf.registerPlugin('Debian')
|
2004-02-06 05:34:52 +01:00
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Debian, 'pythonZgrep',
|
2004-01-21 05:17:18 +01:00
|
|
|
registry.Boolean(False, """An advanced option, mostly just for testing;
|
2004-02-06 05:34:52 +01:00
|
|
|
uses a Python-coded zgrep rather than the actual zgrep executable,
|
2004-01-21 05:17:18 +01:00
|
|
|
generally resulting in a 50x slowdown. What would take 2 seconds will
|
|
|
|
take 100 with this enabled. Don't enable this."""))
|
2003-11-22 05:23:59 +01:00
|
|
|
class Debian(callbacks.Privmsg,
|
|
|
|
plugins.PeriodicFileDownloader):
|
2003-08-22 02:46:05 +02:00
|
|
|
threaded = True
|
|
|
|
periodicFiles = {
|
2003-10-03 06:21:37 +02:00
|
|
|
# This file is only updated once a week, so there's no sense in
|
|
|
|
# downloading a new one every day.
|
2003-08-22 02:46:05 +02:00
|
|
|
'Contents-i386.gz': ('ftp://ftp.us.debian.org/'
|
|
|
|
'debian/dists/unstable/Contents-i386.gz',
|
2003-10-03 06:21:37 +02:00
|
|
|
604800, None)
|
2003-08-22 02:46:05 +02:00
|
|
|
}
|
2004-01-18 08:58:26 +01:00
|
|
|
contents = os.path.join(conf.supybot.directories.data(),'Contents-i386.gz')
|
2003-08-22 02:46:05 +02:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
2003-10-05 14:56:56 +02:00
|
|
|
plugins.PeriodicFileDownloader.__init__(self)
|
2003-08-22 02:46:05 +02:00
|
|
|
|
2003-11-22 05:23:59 +01:00
|
|
|
def die(self):
|
|
|
|
callbacks.Privmsg.die(self)
|
2003-08-22 02:46:05 +02:00
|
|
|
|
2003-10-21 07:11:53 +02:00
|
|
|
def file(self, irc, msg, args):
|
2003-10-03 06:21:37 +02:00
|
|
|
"""[--{regexp,exact}=<value>] [<glob>]
|
2003-09-06 20:29:44 +02:00
|
|
|
|
2003-10-03 06:21:37 +02:00
|
|
|
Returns packages in Debian that includes files matching <glob>. If
|
|
|
|
--regexp is given, returns packages that include files matching the
|
|
|
|
given regexp. If --exact is given, returns packages that include files
|
|
|
|
matching exactly the string given.
|
2003-09-06 20:29:44 +02:00
|
|
|
"""
|
2003-08-22 02:46:05 +02:00
|
|
|
self.getFile('Contents-i386.gz')
|
2003-08-23 01:00:10 +02:00
|
|
|
# Make sure it's anchored, make sure it doesn't have a leading slash
|
|
|
|
# (the filenames don't have leading slashes, and people may not know
|
|
|
|
# that).
|
2003-10-03 06:21:37 +02:00
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['regexp=', 'exact='])
|
2003-10-16 03:59:17 +02:00
|
|
|
if not optlist and not rest:
|
|
|
|
raise callbacks.ArgumentError
|
2003-10-03 06:21:37 +02:00
|
|
|
if len(optlist) + len(rest) > 1:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('Only one search option is allowed.')
|
2003-10-03 06:21:37 +02:00
|
|
|
return
|
|
|
|
for (option, arg) in optlist:
|
|
|
|
if option == '--exact':
|
|
|
|
regexp = arg.lstrip('/')
|
|
|
|
elif option == '--regexp':
|
|
|
|
regexp = arg
|
|
|
|
if rest:
|
|
|
|
glob = rest.pop()
|
|
|
|
regexp = fnmatch.translate(glob.lstrip('/'))
|
2004-01-30 00:51:20 +01:00
|
|
|
regexp = regexp.rstrip('$')
|
2004-04-28 09:54:04 +02:00
|
|
|
regexp = ".*%s.* " % regexp
|
2003-08-22 02:46:05 +02:00
|
|
|
try:
|
2003-09-15 04:45:39 +02:00
|
|
|
re_obj = re.compile(regexp, re.I)
|
2003-11-22 05:23:59 +01:00
|
|
|
except re.error, e:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error("Error in regexp: %s" % e)
|
2003-08-22 02:46:05 +02:00
|
|
|
return
|
2004-02-12 00:39:47 +01:00
|
|
|
if self.registryValue('pythonZgrep'):
|
2003-09-15 04:45:39 +02:00
|
|
|
fd = gzip.open(self.contents)
|
2004-04-28 09:54:04 +02:00
|
|
|
r = imap(lambda tup: tup[0],
|
2003-11-22 05:23:59 +01:00
|
|
|
ifilter(lambda tup: tup[0],
|
|
|
|
imap(lambda line:(re_obj.search(line), line),fd)))
|
2003-10-03 06:21:37 +02:00
|
|
|
else:
|
2003-11-22 05:23:59 +01:00
|
|
|
try:
|
2004-04-28 09:54:04 +02:00
|
|
|
(r, w) = popen2.popen4(['zgrep', '-ie', regexp, self.contents])
|
2003-11-22 05:23:59 +01:00
|
|
|
w.close()
|
|
|
|
except TypeError:
|
|
|
|
# We're on Windows.
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('This command won\'t work on this platform. '
|
2004-02-06 05:34:52 +01:00
|
|
|
'If you think it should (i.e., you know that '
|
|
|
|
'you have a zgrep binary somewhere) then file '
|
|
|
|
'a bug about it at http://supybot.sf.net/ .')
|
2003-11-22 05:23:59 +01:00
|
|
|
return
|
2003-09-11 20:46:17 +02:00
|
|
|
packages = sets.Set() # Make packages unique
|
2003-09-05 08:47:12 +02:00
|
|
|
try:
|
2003-09-06 03:06:28 +02:00
|
|
|
for line in r:
|
2003-10-03 06:21:37 +02:00
|
|
|
if len(packages) > 100:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('More than 100 packages matched, '
|
2003-10-03 06:21:37 +02:00
|
|
|
'please narrow your search.')
|
|
|
|
return
|
2003-09-05 08:47:12 +02:00
|
|
|
try:
|
2004-04-28 09:54:04 +02:00
|
|
|
if hasattr(line, 'group'): # we're actually using
|
|
|
|
line = line.group(0) # pythonZgrep :(
|
|
|
|
(filename, pkg_list) = line.split()
|
2003-09-05 08:47:12 +02:00
|
|
|
if filename == 'FILE':
|
|
|
|
# This is the last line before the actual files.
|
|
|
|
continue
|
|
|
|
except ValueError: # Unpack list of wrong size.
|
|
|
|
continue # We've not gotten to the files yet.
|
2003-09-11 20:46:17 +02:00
|
|
|
packages.update(pkg_list.split(','))
|
2003-09-05 08:47:12 +02:00
|
|
|
finally:
|
2003-11-22 05:23:59 +01:00
|
|
|
if hasattr(r, 'close'):
|
|
|
|
r.close()
|
2003-08-22 02:46:05 +02:00
|
|
|
if len(packages) == 0:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply('I found no packages with that file.')
|
2003-08-22 02:46:05 +02:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(packages))
|
2004-04-28 09:54:04 +02:00
|
|
|
|
2003-08-22 02:52:10 +02:00
|
|
|
_debreflags = re.DOTALL | re.IGNORECASE
|
2004-01-21 05:17:18 +01:00
|
|
|
_debbrre = re.compile(r'<li><a href[^>]+>(.*?)</a> \(', _debreflags)
|
2004-02-12 00:39:47 +01:00
|
|
|
_debverre = re.compile(r'<br>(?:\d+:)?(\S+):', _debreflags)
|
2004-01-21 05:17:18 +01:00
|
|
|
_deblistre = re.compile(r'<h3>Package ([^<]+)</h3>(.*?)</ul>', _debreflags)
|
2003-08-22 02:52:10 +02:00
|
|
|
_debBranches = ('stable', 'testing', 'unstable', 'experimental')
|
2003-10-21 07:11:53 +02:00
|
|
|
def version(self, irc, msg, args):
|
2004-04-28 09:54:04 +02:00
|
|
|
"""[--exact] [stable|testing|unstable|experimental] <package name>
|
2003-08-22 02:52:10 +02:00
|
|
|
|
|
|
|
Returns the current version(s) of a Debian package in the given branch
|
2004-04-28 09:54:04 +02:00
|
|
|
(if any, otherwise all available ones are displayed). If --exact is
|
|
|
|
specified, only packages whose name exactly matches <package name>
|
|
|
|
will be reported.
|
2003-08-22 02:52:10 +02:00
|
|
|
"""
|
2004-04-28 09:54:04 +02:00
|
|
|
url = 'http://packages.debian.org/cgi-bin/search_packages.pl?keywords'\
|
|
|
|
'=%s&searchon=names&version=%s&release=all&subword=1'
|
2003-10-20 19:23:08 +02:00
|
|
|
if not args:
|
|
|
|
raise callbacks.ArgumentError
|
2004-04-28 09:54:04 +02:00
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['exact'])
|
|
|
|
for (option, _) in optlist:
|
|
|
|
if option == '--exact':
|
|
|
|
url = url.replace('&subword=1','')
|
|
|
|
if rest and rest[0] in self._debBranches:
|
|
|
|
branch = rest.pop(0)
|
2003-08-22 02:52:10 +02:00
|
|
|
else:
|
|
|
|
branch = 'all'
|
2004-04-28 09:54:04 +02:00
|
|
|
if not rest:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('You must give a package name.')
|
2003-10-20 19:23:08 +02:00
|
|
|
return
|
2003-08-22 02:52:10 +02:00
|
|
|
responses = []
|
2004-04-28 09:54:04 +02:00
|
|
|
package = privmsgs.getArgs(rest)
|
|
|
|
if '*' in package:
|
|
|
|
irc.error('Wildcard characters can not be specified.')
|
|
|
|
return
|
2003-10-16 16:03:12 +02:00
|
|
|
package = urllib.quote(package)
|
2004-04-28 09:54:04 +02:00
|
|
|
url = url % (package, branch)
|
2003-11-18 11:49:15 +01:00
|
|
|
try:
|
2004-01-21 05:17:18 +01:00
|
|
|
html = webutils.getUrl(url)
|
|
|
|
except webutils.WebError, e:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('I couldn\'t reach the search page (%s).' % e)
|
2003-11-18 11:49:15 +01:00
|
|
|
return
|
2003-12-09 01:32:53 +01:00
|
|
|
|
|
|
|
if 'is down at the moment' in html:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('Packages.debian.org is down at the moment. '
|
2003-12-09 01:32:53 +01:00
|
|
|
'Please try again later.')
|
|
|
|
return
|
2004-01-21 05:17:18 +01:00
|
|
|
pkgs = self._deblistre.findall(html)
|
2004-01-31 01:34:46 +01:00
|
|
|
#self.log.warning(pkgs)
|
2004-01-21 05:17:18 +01:00
|
|
|
if not pkgs:
|
2004-01-09 00:03:48 +01:00
|
|
|
irc.reply('No package found for %s (%s)' %
|
|
|
|
(urllib.unquote(package), branch))
|
2003-10-16 16:03:12 +02:00
|
|
|
else:
|
2004-01-21 05:17:18 +01:00
|
|
|
for pkg in pkgs:
|
|
|
|
pkgMatch = pkg[0]
|
|
|
|
brMatch = self._debbrre.findall(pkg[1])
|
|
|
|
verMatch = self._debverre.findall(pkg[1])
|
|
|
|
if pkgMatch and brMatch and verMatch:
|
|
|
|
versions = zip(brMatch, verMatch)
|
|
|
|
for version in versions:
|
|
|
|
s = '%s (%s)' % (pkgMatch, ': '.join(version))
|
|
|
|
responses.append(s)
|
|
|
|
resp = '%s matches found: %s' % \
|
|
|
|
(len(responses), '; '.join(responses))
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(resp)
|
2003-08-22 02:52:10 +02:00
|
|
|
|
2003-10-03 02:23:03 +02:00
|
|
|
_incomingRe = re.compile(r'<a href="(.*?\.deb)">', re.I)
|
2003-10-21 07:11:53 +02:00
|
|
|
def incoming(self, irc, msg, args):
|
2003-12-08 17:59:46 +01:00
|
|
|
"""[--{regexp,arch}=<value>] <glob>
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-10-03 02:23:03 +02:00
|
|
|
Checks debian incoming for a matching package name. The arch
|
|
|
|
parameter defaults to i386; --regexp returns only those package names
|
|
|
|
that match a given regexp, and normal matches use standard *nix
|
|
|
|
globbing.
|
|
|
|
"""
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['regexp=', 'arch='])
|
|
|
|
predicates = []
|
|
|
|
archPredicate = lambda s: ('_i386.' in s)
|
|
|
|
for (option, arg) in optlist:
|
|
|
|
if option == '--regexp':
|
|
|
|
try:
|
|
|
|
r = utils.perlReToPythonRe(arg)
|
|
|
|
predicates.append(r.search)
|
|
|
|
except ValueError:
|
|
|
|
irc.error('%r is not a valid regexp.' % arg)
|
|
|
|
return
|
|
|
|
elif option == '--arch':
|
|
|
|
arg = '_%s.' % arg
|
|
|
|
archPredicate = lambda s, arg=arg: (arg in s)
|
|
|
|
predicates.append(archPredicate)
|
2004-04-01 17:01:26 +02:00
|
|
|
globs = privmsgs.getArgs(rest).split()
|
2003-12-08 17:59:46 +01:00
|
|
|
for glob in globs:
|
2004-04-01 17:01:26 +02:00
|
|
|
glob = glob.replace('*', '.*').replace('?', '.?')
|
|
|
|
predicates.append(re.compile(r'.*%s.*' % glob).search)
|
2003-09-29 08:08:16 +02:00
|
|
|
packages = []
|
2004-01-21 05:17:18 +01:00
|
|
|
try:
|
|
|
|
fd = webutils.getUrlFd('http://incoming.debian.org/')
|
|
|
|
except webutils.WebError, e:
|
2004-06-06 23:18:18 +02:00
|
|
|
irc.error(str(e))
|
2004-01-21 05:17:18 +01:00
|
|
|
return
|
2003-09-29 08:08:16 +02:00
|
|
|
for line in fd:
|
|
|
|
m = self._incomingRe.search(line)
|
|
|
|
if m:
|
|
|
|
name = m.group(1)
|
2004-04-01 17:01:26 +02:00
|
|
|
if all(None, imap(lambda p: p(name), predicates)):
|
2003-10-08 22:56:22 +02:00
|
|
|
realname = rsplit(name, '_', 1)[0]
|
2003-10-03 02:23:03 +02:00
|
|
|
packages.append(realname)
|
2003-09-29 08:08:16 +02:00
|
|
|
if len(packages) == 0:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No packages matched that search.')
|
2003-09-27 05:54:58 +02:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(packages))
|
2003-10-21 07:29:39 +02:00
|
|
|
incoming = privmsgs.thread(incoming)
|
2004-01-31 01:18:04 +01:00
|
|
|
|
|
|
|
_newpkgre = re.compile(r'<li><a href[^>]+>([^<]+)</a>')
|
|
|
|
def new(self, irc, msg, args):
|
|
|
|
"""[--{main,contrib,non-free}] [<glob>]
|
|
|
|
|
|
|
|
Checks for packages that have been added to Debian's unstable branch
|
|
|
|
in the past week. If no glob is specified, returns a list of all
|
|
|
|
packages. If no section is specified, defaults to main.
|
|
|
|
"""
|
|
|
|
options = ['main', 'contrib', 'non-free']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', options)
|
|
|
|
section = 'main'
|
|
|
|
for (option, _) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option in options:
|
|
|
|
section = option
|
|
|
|
glob = privmsgs.getArgs(rest, required=0, optional=1)
|
|
|
|
if not glob:
|
|
|
|
glob = '*'
|
|
|
|
if '?' not in glob and '*' not in glob:
|
|
|
|
glob = '*%s*' % glob
|
|
|
|
try:
|
|
|
|
fd = webutils.getUrlFd(
|
|
|
|
'http://packages.debian.org/unstable/newpkg_%s' % section)
|
|
|
|
except webutils.WebError, e:
|
2004-06-06 23:18:18 +02:00
|
|
|
irc.error(str(e))
|
2004-01-31 01:18:04 +01:00
|
|
|
packages = []
|
2004-01-31 01:34:46 +01:00
|
|
|
#self.log.warning(section)
|
|
|
|
#self.log.warning(glob)
|
2004-01-31 01:18:04 +01:00
|
|
|
for line in fd:
|
|
|
|
m = self._newpkgre.search(line)
|
|
|
|
if m:
|
|
|
|
m = m.group(1)
|
|
|
|
if fnmatch.fnmatch(m, glob):
|
2004-07-21 21:36:35 +02:00
|
|
|
packages.append(m)
|
2004-01-31 01:18:04 +01:00
|
|
|
fd.close()
|
|
|
|
if packages:
|
|
|
|
irc.reply(utils.commaAndify(packages))
|
|
|
|
else:
|
|
|
|
irc.error('No packages matched that search.')
|
2004-04-01 19:09:20 +02:00
|
|
|
|
|
|
|
_severity = re.compile(r'.*(?:severity set to `([^\']+)\'|'
|
|
|
|
r'severity:\s+([^\s]+))', re.I)
|
|
|
|
_package = re.compile(r'Package: <[^>]+>([^<]+)<', re.I | re.S)
|
|
|
|
_reporter = re.compile(r'Reported by: <[^>]+>([^<]+)<', re.I | re.S)
|
|
|
|
_subject = re.compile(r'<br>([^<]+)</h1>', re.I | re.S)
|
|
|
|
_date = re.compile(r'Date: ([^;]+);', re.I | re.S)
|
|
|
|
_searches = (_package, _subject, _reporter, _date)
|
|
|
|
def bug(self, irc, msg, args):
|
|
|
|
"""<num>
|
|
|
|
|
|
|
|
Returns a description of the bug with bug id <num>.
|
|
|
|
"""
|
|
|
|
bug = privmsgs.getArgs(args)
|
|
|
|
if ' ' in bug:
|
|
|
|
irc.error('Only one bug can be looked up at a time.')
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
int(bug)
|
|
|
|
except ValueError:
|
|
|
|
irc.error('<num> must be an integer.')
|
|
|
|
return
|
|
|
|
url = 'http://bugs.debian.org/%s' % bug
|
|
|
|
text = webutils.getUrl(url)
|
|
|
|
if "There is no record of Bug" in text:
|
|
|
|
irc.error('I could not find a bug report matching that number.')
|
|
|
|
return
|
|
|
|
searches = map(lambda p: p.search(text), self._searches)
|
|
|
|
sev = self._severity.search(text)
|
|
|
|
# This section should be cleaned up to ease future modifications
|
|
|
|
if all(None, searches):
|
|
|
|
resp = 'Package: %s; Subject: %s; Reported by %s on %s' %\
|
|
|
|
tuple(map(utils.htmlToText,
|
|
|
|
map(lambda p: p.group(1), searches)))
|
|
|
|
if sev:
|
|
|
|
sev = filter(None, sev.groups())
|
|
|
|
if sev:
|
|
|
|
resp = '; '.join([resp, 'Severity: %s' % sev[0],
|
|
|
|
'<%s>' % url])
|
|
|
|
irc.reply(resp)
|
|
|
|
else:
|
|
|
|
irc.reply('I was unable to properly parse the BTS page.')
|
2004-04-28 09:54:04 +02:00
|
|
|
|
2003-08-22 02:46:05 +02:00
|
|
|
Class = Debian
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|