2003-08-17 11:31:04 +02:00
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-08-17 11:31:04 +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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
|
|
|
Keeps track of URLs posted to a channel, along with relevant context. Allows
|
|
|
|
searching for URLs and returning random URLs. Also provides statistics on the
|
|
|
|
URLs in the database.
|
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-08-17 11:31:04 +02:00
|
|
|
|
2003-10-04 15:53:13 +02:00
|
|
|
import os
|
2003-08-17 11:31:04 +02:00
|
|
|
import re
|
2004-07-28 08:02:09 +02:00
|
|
|
import sets
|
2003-08-17 11:31:04 +02:00
|
|
|
import time
|
2003-08-19 11:10:41 +02:00
|
|
|
import getopt
|
2003-08-17 11:31:04 +02:00
|
|
|
import urlparse
|
2004-07-31 01:39:57 +02:00
|
|
|
import itertools
|
2003-08-17 11:31:04 +02:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
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-08-17 11:31:04 +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 19:09:35 +01:00
|
|
|
conf.registerPlugin('URL', True)
|
2003-11-20 00:34:53 +01:00
|
|
|
if yn("""This plugin offers a snarfer that will go to tinyurl.com and get
|
|
|
|
a shorter version of long URLs that are sent to the channel.
|
2004-01-31 23:24:43 +01:00
|
|
|
Would you like this snarfer to be enabled?""", default=False):
|
2004-01-27 19:09:35 +01:00
|
|
|
conf.supybot.plugins.URL.tinyurlSnarfer.setValue(True)
|
|
|
|
if yn("""This plugin also offers a snarfer that will try to fetch the
|
|
|
|
title of URLs that it sees in the channel. Would like you this
|
2004-01-31 23:24:43 +01:00
|
|
|
snarfer to be enabled?""", default=False):
|
2004-01-27 19:09:35 +01:00
|
|
|
conf.supybot.plugins.URL.titleSnarfer.setValue(True)
|
|
|
|
|
|
|
|
conf.registerPlugin('URL')
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.URL, 'tinyurlSnarfer',
|
|
|
|
registry.Boolean(False, """Determines whether the
|
|
|
|
tinyurl snarfer is enabled. This snarfer will watch for URLs in the
|
|
|
|
channel, and if they're sufficiently long (as determined by
|
|
|
|
supybot.plugins.URL.tinyurlSnarfer.minimumLength) it will post a smaller
|
|
|
|
from tinyurl.com."""))
|
2004-01-28 16:53:46 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.URL.tinyurlSnarfer,
|
2004-01-31 23:04:46 +01:00
|
|
|
'minimumLength',
|
2004-01-27 19:09:35 +01:00
|
|
|
registry.PositiveInteger(48, """The minimum length a URL must be before the
|
|
|
|
tinyurl snarfer will snarf it."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.URL, 'titleSnarfer',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will output the HTML
|
|
|
|
title of URLs it sees in the channel."""))
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.URL, 'nonSnarfingRegexp',
|
|
|
|
registry.Regexp(None, """Determines what URLs are to be snarfed and stored
|
2004-08-19 01:15:27 +02:00
|
|
|
in the database in the channel; URLs matching the regexp given will not be
|
2004-01-27 19:09:35 +01:00
|
|
|
snarfed. Give the empty string if you have no URLs that you'd like to
|
|
|
|
exclude from being snarfed."""))
|
2003-08-17 11:31:04 +02:00
|
|
|
|
2004-07-28 07:59:30 +02:00
|
|
|
class URLDB(object):
|
|
|
|
def __init__(self, channel, log):
|
|
|
|
self.log = log
|
2004-09-12 22:26:08 +02:00
|
|
|
self.filename = plugins.makeChannelFilename('URL.db', channel)
|
2003-08-17 11:31:04 +02:00
|
|
|
|
2004-07-31 01:39:57 +02:00
|
|
|
def _getFile(self):
|
2004-07-28 07:59:30 +02:00
|
|
|
try:
|
|
|
|
fd = file(self.filename)
|
2004-07-31 01:39:57 +02:00
|
|
|
return fd
|
2004-07-28 07:59:30 +02:00
|
|
|
except EnvironmentError, e:
|
|
|
|
self.log.warning('Couldn\'t open %s: %s',
|
|
|
|
self.filename, utils.exnToString(e))
|
2004-07-31 01:39:57 +02:00
|
|
|
return None
|
|
|
|
|
|
|
|
def _formatRecord(self, url, nick):
|
|
|
|
return '%s %s\n' % (url, nick)
|
|
|
|
|
|
|
|
def addUrl(self, url, nick):
|
|
|
|
fd = file(self.filename, 'a')
|
|
|
|
fd.write(self._formatRecord(url, nick))
|
|
|
|
fd.close()
|
|
|
|
|
|
|
|
def numUrls(self):
|
|
|
|
fd = self._getFile()
|
|
|
|
if fd is None:
|
2004-07-28 07:59:30 +02:00
|
|
|
return 0
|
|
|
|
try:
|
|
|
|
return itertools.ilen(fd)
|
|
|
|
finally:
|
|
|
|
fd.close()
|
2003-11-11 16:58:20 +01:00
|
|
|
|
2004-07-31 01:39:57 +02:00
|
|
|
def getUrlsAndNicks(self, p=None):
|
2004-07-28 07:59:30 +02:00
|
|
|
L = []
|
2004-07-31 01:39:57 +02:00
|
|
|
fd = self._getFile()
|
|
|
|
if fd is None:
|
2004-07-28 07:59:30 +02:00
|
|
|
return []
|
|
|
|
try:
|
|
|
|
for line in fd:
|
|
|
|
line = line.strip()
|
2004-09-16 16:46:09 +02:00
|
|
|
try:
|
|
|
|
(url, nick) = line.split()
|
|
|
|
except ValueError: # unpack list of wrong size.
|
|
|
|
self.log.warning('Invalid line in URLDB: %r.', line)
|
|
|
|
continue
|
2004-07-31 01:39:57 +02:00
|
|
|
if p(url, nick):
|
|
|
|
L.append((url, nick))
|
|
|
|
seen = sets.Set()
|
2004-07-28 07:59:30 +02:00
|
|
|
L.reverse()
|
2004-07-31 01:39:57 +02:00
|
|
|
for (i, (url, nick)) in enumerate(L):
|
|
|
|
if url in seen:
|
|
|
|
L[i] = None
|
|
|
|
else:
|
|
|
|
seen.add(url)
|
|
|
|
L = filter(None, L)
|
2004-07-28 07:59:30 +02:00
|
|
|
return L
|
|
|
|
finally:
|
|
|
|
fd.close()
|
2003-08-17 11:31:04 +02:00
|
|
|
|
2004-07-31 01:39:57 +02:00
|
|
|
def getUrls(self, p):
|
|
|
|
return [url for (url, nick) in self.getUrlsAndNicks(p)]
|
|
|
|
|
|
|
|
def vacuum(self):
|
2004-08-01 14:46:03 +02:00
|
|
|
out = utils.transactionalFile(self.filename)
|
2004-07-31 01:39:57 +02:00
|
|
|
notAdded = 0
|
|
|
|
urls = self.getUrlsAndNicks(lambda *args: True)
|
|
|
|
seen = sets.Set()
|
|
|
|
for (i, (url, nick)) in enumerate(urls):
|
|
|
|
if url not in seen:
|
|
|
|
seen.add(url)
|
|
|
|
else:
|
|
|
|
urls[i] = None
|
|
|
|
notAdded += 1
|
2004-07-31 01:41:17 +02:00
|
|
|
urls.reverse()
|
2004-07-31 01:39:57 +02:00
|
|
|
for urlNick in urls:
|
|
|
|
if urlNick is not None:
|
|
|
|
out.write(self._formatRecord(*urlNick))
|
|
|
|
out.close()
|
|
|
|
self.log.info('Vacuumed %s, removed %s records.',
|
|
|
|
self.filename, notAdded)
|
|
|
|
|
2004-07-28 07:59:30 +02:00
|
|
|
class URL(callbacks.PrivmsgCommandAndRegexp):
|
2004-08-16 20:46:13 +02:00
|
|
|
priority = 100 # lower than 99, the normal priority.
|
2004-08-18 20:45:52 +02:00
|
|
|
regexps = ['titleSnarfer', 'tinyurlSnarfer']
|
2004-07-28 07:59:30 +02:00
|
|
|
_titleRe = re.compile('<title>(.*?)</title>', re.I | re.S)
|
|
|
|
def getDb(self, channel):
|
|
|
|
return URLDB(channel, self.log)
|
2004-08-01 16:38:37 +02:00
|
|
|
|
2003-08-17 11:31:04 +02:00
|
|
|
def doPrivmsg(self, irc, msg):
|
|
|
|
channel = msg.args[0]
|
2004-08-22 20:58:28 +02:00
|
|
|
if ircutils.isChannel(channel):
|
|
|
|
db = self.getDb(channel)
|
|
|
|
if ircmsgs.isAction(msg):
|
|
|
|
text = ircmsgs.unAction(msg)
|
|
|
|
else:
|
|
|
|
text = msg.args[1]
|
|
|
|
for url in webutils.urlRe.findall(text):
|
|
|
|
r = self.registryValue('nonSnarfingRegexp', channel)
|
|
|
|
if r and r.search(url):
|
|
|
|
self.log.debug('Skipping adding %r to db.', url)
|
|
|
|
continue
|
|
|
|
self.log.debug('Adding %r to db.', url)
|
|
|
|
db.addUrl(url, msg.nick)
|
2004-07-28 07:59:30 +02:00
|
|
|
callbacks.PrivmsgCommandAndRegexp.doPrivmsg(self, irc, msg)
|
2003-11-17 07:02:26 +01:00
|
|
|
|
|
|
|
def tinyurlSnarfer(self, irc, msg, match):
|
2004-08-01 16:38:37 +02:00
|
|
|
r"https?://[^\])>\s]{13,}"
|
2003-11-17 07:02:26 +01:00
|
|
|
channel = msg.args[0]
|
2004-07-28 07:59:30 +02:00
|
|
|
if not ircutils.isChannel(channel):
|
|
|
|
return
|
2004-06-07 21:45:49 +02:00
|
|
|
r = self.registryValue('nonSnarfingRegexp', channel)
|
2004-01-27 19:09:35 +01:00
|
|
|
if self.registryValue('tinyurlSnarfer', channel):
|
2003-12-17 14:55:22 +01:00
|
|
|
url = match.group(0)
|
2004-08-01 16:38:37 +02:00
|
|
|
if r and r.search(url) is not None:
|
|
|
|
self.log.debug('Not tinyUrlSnarfing %r', url)
|
2004-06-07 21:45:49 +02:00
|
|
|
return
|
2004-01-31 23:04:46 +01:00
|
|
|
minlen = self.registryValue('tinyurlSnarfer.minimumLength',channel)
|
2003-11-17 18:30:53 +01:00
|
|
|
if len(url) >= minlen:
|
2004-07-28 07:59:30 +02:00
|
|
|
tinyurl = self._getTinyUrl(url, channel)
|
2003-11-17 18:30:53 +01:00
|
|
|
if tinyurl is None:
|
2004-08-31 21:16:20 +02:00
|
|
|
self.log.info('Couldn\'t get tinyurl for %r', url)
|
2003-11-17 18:30:53 +01:00
|
|
|
return
|
2004-01-31 21:52:24 +01:00
|
|
|
domain = webutils.getDomain(url)
|
|
|
|
s = '%s (at %s)' % (ircutils.bold(tinyurl), domain)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s, prefixName=False)
|
2003-11-17 07:02:26 +01:00
|
|
|
tinyurlSnarfer = privmsgs.urlSnarfer(tinyurlSnarfer)
|
2003-12-17 14:55:22 +01:00
|
|
|
|
|
|
|
def titleSnarfer(self, irc, msg, match):
|
|
|
|
r"https?://[^\])>\s]+"
|
2004-07-28 07:59:30 +02:00
|
|
|
channel = msg.args[0]
|
|
|
|
if not ircutils.isChannel(channel):
|
2003-12-17 14:55:22 +01:00
|
|
|
return
|
2004-02-13 22:57:38 +01:00
|
|
|
if callbacks.addressed(irc.nick, msg):
|
|
|
|
return
|
2004-01-27 19:09:35 +01:00
|
|
|
if self.registryValue('titleSnarfer', channel):
|
2003-12-17 14:55:22 +01:00
|
|
|
url = match.group(0)
|
2004-07-28 07:59:30 +02:00
|
|
|
r = self.registryValue('nonSnarfingRegexp', channel)
|
2004-06-07 21:45:49 +02:00
|
|
|
if r and r.search(url):
|
2004-07-28 07:59:30 +02:00
|
|
|
self.log.debug('Not titleSnarfing %r.', url)
|
2004-06-07 21:45:49 +02:00
|
|
|
return
|
2004-02-27 18:20:57 +01:00
|
|
|
try:
|
2004-04-30 17:03:20 +02:00
|
|
|
size = conf.supybot.protocols.http.peekSize()
|
|
|
|
text = webutils.getUrl(url, size=size)
|
2004-02-27 18:20:57 +01:00
|
|
|
except webutils.WebError, e:
|
|
|
|
self.log.info('Couldn\'t snarf title of %s, %s.', url, e)
|
|
|
|
return
|
2003-12-17 14:55:22 +01:00
|
|
|
m = self._titleRe.search(text)
|
|
|
|
if m is not None:
|
2004-01-31 21:52:24 +01:00
|
|
|
domain = webutils.getDomain(url)
|
|
|
|
title = utils.htmlToText(m.group(1).strip())
|
|
|
|
s = 'Title: %s (at %s)' % (title, domain)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s, prefixName=False)
|
2003-12-17 14:55:22 +01:00
|
|
|
titleSnarfer = privmsgs.urlSnarfer(titleSnarfer)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-06-07 21:45:49 +02:00
|
|
|
_tinyRe = re.compile(r'<blockquote><b>(http://tinyurl\.com/\w+)</b>')
|
2003-11-17 18:30:53 +01:00
|
|
|
def _getTinyUrl(self, url, channel, cmd=False):
|
2004-06-19 20:03:58 +02:00
|
|
|
try:
|
2004-08-01 16:38:37 +02:00
|
|
|
s = webutils.getUrl('http://tinyurl.com/create.php?url=%s' % url)
|
2004-07-28 07:59:30 +02:00
|
|
|
m = self._tinyRe.search(s)
|
|
|
|
if m is None:
|
|
|
|
tinyurl = None
|
|
|
|
else:
|
|
|
|
tinyurl = m.group(1)
|
|
|
|
return tinyurl
|
2004-08-01 16:38:37 +02:00
|
|
|
except webutils.WebError, e:
|
2004-07-28 07:59:30 +02:00
|
|
|
if cmd:
|
2004-08-01 16:38:37 +02:00
|
|
|
raise callbacks.Error, e
|
2004-07-28 07:59:30 +02:00
|
|
|
else:
|
2004-08-31 21:16:20 +02:00
|
|
|
self.log.info(str(e))
|
2003-08-29 02:40:28 +02:00
|
|
|
|
2003-11-04 09:48:05 +01:00
|
|
|
def tiny(self, irc, msg, args):
|
2003-11-03 06:39:14 +01:00
|
|
|
"""<url>
|
|
|
|
|
|
|
|
Returns a TinyURL.com version of <url>
|
|
|
|
"""
|
|
|
|
url = privmsgs.getArgs(args)
|
2004-06-07 21:45:49 +02:00
|
|
|
if len(url) < 20:
|
|
|
|
irc.error('Stop being a lazy-biotch and type the URL yourself.')
|
2003-11-17 18:30:53 +01:00
|
|
|
return
|
|
|
|
channel = msg.args[0]
|
2004-01-27 19:09:35 +01:00
|
|
|
snarf = self.registryValue('tinyurlSnarfer', channel)
|
2004-01-31 23:04:46 +01:00
|
|
|
minlen = self.registryValue('tinyurlSnarfer.minimumLength', channel)
|
2004-08-01 16:38:37 +02:00
|
|
|
dontSnarf = False
|
2004-06-07 21:45:49 +02:00
|
|
|
r = self.registryValue('nonSnarfingRegexp', channel)
|
2004-08-01 16:38:37 +02:00
|
|
|
if r is not None:
|
|
|
|
dontSnarf = r.search(url)
|
|
|
|
dontSnarf = not dontSnarf
|
|
|
|
if snarf and len(url) >= minlen and dontSnarf:
|
2004-07-28 07:59:30 +02:00
|
|
|
self.log.debug('Not applying tiny command, snarfer is active.')
|
2003-11-03 06:39:14 +01:00
|
|
|
return
|
2004-07-28 07:59:30 +02:00
|
|
|
tinyurl = self._getTinyUrl(url, channel, cmd=True)
|
2004-08-01 16:38:37 +02:00
|
|
|
domain = webutils.getDomain(url)
|
|
|
|
s = '%s (at %s)' % (ircutils.bold(tinyurl), domain)
|
2004-06-19 20:03:58 +02:00
|
|
|
if tinyurl is not None:
|
2004-08-01 16:38:37 +02:00
|
|
|
irc.reply(s)
|
2003-11-17 07:02:26 +01:00
|
|
|
else:
|
2004-01-09 00:03:48 +01:00
|
|
|
s = 'Could not parse the TinyURL.com results page.'
|
|
|
|
irc.errorPossibleBug(s)
|
2003-11-17 07:02:26 +01:00
|
|
|
tiny = privmsgs.thread(tiny)
|
2003-11-03 06:39:14 +01:00
|
|
|
|
2004-01-18 09:19:44 +01:00
|
|
|
def stats(self, irc, msg, args):
|
2003-08-17 11:31:04 +02:00
|
|
|
"""[<channel>]
|
|
|
|
|
|
|
|
Returns the number of URLs in the URL database. <channel> is only
|
|
|
|
required if the message isn't sent in the channel itself.
|
|
|
|
"""
|
2003-08-19 11:10:41 +02:00
|
|
|
channel = privmsgs.getChannel(msg, args)
|
2003-08-17 11:31:04 +02:00
|
|
|
db = self.getDb(channel)
|
2004-07-31 01:39:57 +02:00
|
|
|
db.vacuum()
|
2004-07-28 07:59:30 +02:00
|
|
|
count = db.numUrls()
|
|
|
|
irc.reply('I have %s in my database.' % utils.nItems('URL', count))
|
2003-08-19 11:10:41 +02:00
|
|
|
|
2003-11-04 09:48:05 +01:00
|
|
|
def last(self, irc, msg, args):
|
2004-07-28 07:59:30 +02:00
|
|
|
"""[<channel>] [--{from,with,proto}=<value>] --{nolimit}
|
2003-08-19 11:10:41 +02:00
|
|
|
|
|
|
|
Gives the last URL matching the given criteria. --from is from whom
|
2004-07-28 07:59:30 +02:00
|
|
|
the URL came; --proto is the protocol the URL used; --with is something
|
|
|
|
inside the URL; If --nolimit is given, returns all the URLs that are
|
|
|
|
found. to just the URL. <channel> is only necessary if the message
|
|
|
|
isn't sent in the channel itself.
|
2003-08-19 11:10:41 +02:00
|
|
|
"""
|
|
|
|
channel = privmsgs.getChannel(msg, args)
|
2004-07-28 07:59:30 +02:00
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['from=', 'with=',
|
|
|
|
'proto=', 'nolimit',])
|
|
|
|
predicates = []
|
2003-08-29 02:40:28 +02:00
|
|
|
nolimit = False
|
2004-07-28 07:59:30 +02:00
|
|
|
for (option, arg) in optlist:
|
|
|
|
if option == '--nolimit':
|
2003-08-29 02:40:28 +02:00
|
|
|
nolimit = True
|
2004-07-28 07:59:30 +02:00
|
|
|
elif option == '--from':
|
|
|
|
def from_(url, nick, arg=arg):
|
2004-08-31 19:23:33 +02:00
|
|
|
return ircutils.strEqual(nick, arg)
|
2004-07-28 07:59:30 +02:00
|
|
|
predicates.append(from_)
|
|
|
|
elif option == '--with':
|
|
|
|
def with(url, nick, arg=arg):
|
|
|
|
return arg in url
|
|
|
|
predicates.append(with)
|
|
|
|
elif option == '--proto':
|
|
|
|
def proto(url, nick, arg=arg):
|
|
|
|
return url.startswith(arg)
|
|
|
|
predicates.append(proto)
|
2003-08-19 11:10:41 +02:00
|
|
|
db = self.getDb(channel)
|
2004-07-28 07:59:30 +02:00
|
|
|
def predicate(url, nick):
|
|
|
|
for predicate in predicates:
|
|
|
|
if not predicate(url, nick):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
urls = db.getUrls(predicate)
|
|
|
|
if not urls:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply('No URLs matched that criteria.')
|
2003-08-19 11:10:41 +02:00
|
|
|
else:
|
2003-08-29 02:40:28 +02:00
|
|
|
if nolimit:
|
2004-07-28 07:59:30 +02:00
|
|
|
urls = ['<%s>' % url for url in urls]
|
2003-09-07 08:01:25 +02:00
|
|
|
s = ', '.join(urls)
|
2003-08-29 02:40:28 +02:00
|
|
|
else:
|
2004-07-28 07:59:30 +02:00
|
|
|
# We should optimize this with another URLDB method eventually.
|
|
|
|
s = urls[0]
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
|
|
|
|
2003-11-04 09:48:05 +01:00
|
|
|
Class = URL
|
2003-08-17 11:31:04 +02:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|