mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 19:52:54 +01:00
RFE 871111 : Added --nokey option
Fixed a bug in the remove command where lookup specific registry values were not being removed along with the lookup Database abstraction
This commit is contained in:
parent
50973a10fb
commit
4b0ed27fef
@ -31,7 +31,12 @@
|
|||||||
The Lookup plugin handles looking up various values by their key.
|
The Lookup plugin handles looking up various values by their key.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import supybot
|
||||||
|
|
||||||
__revision__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
__contributors__ = {
|
||||||
|
supybot.authors.skorobeus: ['--nokey parameter', 'database abstraction'],
|
||||||
|
}
|
||||||
|
|
||||||
import supybot.plugins as plugins
|
import supybot.plugins as plugins
|
||||||
|
|
||||||
@ -42,6 +47,7 @@ import sets
|
|||||||
import getopt
|
import getopt
|
||||||
import string
|
import string
|
||||||
|
|
||||||
|
import supybot.dbi as dbi
|
||||||
import supybot.conf as conf
|
import supybot.conf as conf
|
||||||
import supybot.utils as utils
|
import supybot.utils as utils
|
||||||
import supybot.privmsgs as privmsgs
|
import supybot.privmsgs as privmsgs
|
||||||
@ -85,159 +91,97 @@ def configure(advanced):
|
|||||||
continue
|
continue
|
||||||
command = something('What would you like the command to be?')
|
command = something('What would you like the command to be?')
|
||||||
conf.registerGlobalValue(lookups,command, registry.String(filename,''))
|
conf.registerGlobalValue(lookups,command, registry.String(filename,''))
|
||||||
|
nokeyVal = yn('Would you like the key to be shown for random \
|
||||||
|
responses?')
|
||||||
|
conf.registerGlobalValue(lookups.get(command), 'nokey',
|
||||||
|
registry.Boolean(nokeyVal, ''))
|
||||||
|
|
||||||
conf.registerPlugin('Lookup')
|
conf.registerPlugin('Lookup')
|
||||||
conf.registerGroup(conf.supybot.plugins.Lookup, 'lookups')
|
conf.registerGroup(conf.supybot.plugins.Lookup, 'lookups')
|
||||||
|
|
||||||
class LookupDB(plugins.DBHandler):
|
class SqliteLookupDB(object):
|
||||||
def makeDb(self, filename):
|
def __init__(self, filename):
|
||||||
return sqlite.connect(filename)
|
|
||||||
|
|
||||||
class Lookup(callbacks.Privmsg):
|
|
||||||
def __init__(self):
|
|
||||||
callbacks.Privmsg.__init__(self)
|
|
||||||
self.lookupDomains = sets.Set()
|
|
||||||
dataDir = conf.supybot.directories.data()
|
|
||||||
self.dbHandler = LookupDB(name=os.path.join(dataDir, 'Lookup'))
|
|
||||||
for (name, value) in registry._cache.iteritems():
|
|
||||||
name = name.lower()
|
|
||||||
if name.startswith('supybot.plugins.lookup.lookups.'):
|
|
||||||
name = name[len('supybot.plugins.lookup.lookups.'):]
|
|
||||||
if '.' in name:
|
|
||||||
continue
|
|
||||||
self.addRegistryValue(name, value)
|
|
||||||
group = conf.supybot.plugins.Lookup.lookups
|
|
||||||
for (name, value) in group.getValues(fullNames=False):
|
|
||||||
name = name.lower() # Just in case.
|
|
||||||
filename = value()
|
|
||||||
try:
|
|
||||||
self.addDatabase(name, filename)
|
|
||||||
self.addCommand(name)
|
|
||||||
except Exception, e:
|
|
||||||
self.log.warning('Couldn\'t add lookup %s: %s', name, e)
|
|
||||||
|
|
||||||
def _shrink(self, s):
|
|
||||||
return utils.ellipsisify(s, 50)
|
|
||||||
|
|
||||||
def die(self):
|
|
||||||
self.dbHandler.die()
|
|
||||||
|
|
||||||
def remove(self, irc, msg, args):
|
|
||||||
"""<name>
|
|
||||||
|
|
||||||
Removes the lookup for <name>.
|
|
||||||
"""
|
|
||||||
name = privmsgs.getArgs(args)
|
|
||||||
name = callbacks.canonicalName(name)
|
|
||||||
if name not in self.lookupDomains:
|
|
||||||
irc.error('That\'s not a valid lookup to remove.')
|
|
||||||
return
|
|
||||||
db = self.dbHandler.getDb()
|
|
||||||
cursor = db.cursor()
|
|
||||||
try:
|
try:
|
||||||
cursor.execute("""DROP TABLE %s""" % name)
|
import sqlite
|
||||||
db.commit()
|
except ImportError:
|
||||||
delattr(self.__class__, name)
|
raise callbacks.Error, 'You need to have PySQLite installed to '\
|
||||||
irc.replySuccess()
|
'use this plugin. Download it at '\
|
||||||
except sqlite.DatabaseError:
|
'<http://pysqlite.sf.net/>'
|
||||||
irc.error('No such lookup exists.')
|
self.filename = filename
|
||||||
remove = privmsgs.checkCapability(remove, 'admin')
|
|
||||||
|
|
||||||
_splitRe = re.compile(r'(?<!\\):')
|
|
||||||
def add(self, irc, msg, args):
|
|
||||||
"""<name> <filename>
|
|
||||||
|
|
||||||
Adds a lookup for <name> with the key/value pairs specified in the
|
|
||||||
colon-delimited file specified by <filename>. <filename> is searched
|
|
||||||
for in conf.supybot.directories.data. If <name> is not singular, we
|
|
||||||
try to make it singular before creating the command.
|
|
||||||
"""
|
|
||||||
(name, filename) = privmsgs.getArgs(args, required=2)
|
|
||||||
name = utils.depluralize(name)
|
|
||||||
name = callbacks.canonicalName(name)
|
|
||||||
if hasattr(self, name):
|
|
||||||
s = 'I already have a command in this plugin named %s' % name
|
|
||||||
irc.error(s)
|
|
||||||
return
|
|
||||||
db = self.dbHandler.getDb()
|
|
||||||
cursor = db.cursor()
|
|
||||||
try:
|
try:
|
||||||
cursor.execute("""SELECT * FROM %s LIMIT 1""" % name)
|
self.db = sqlite.connect(self.filename)
|
||||||
self.addCommand(name)
|
except sqlite.DatabaseError, e:
|
||||||
except sqlite.DatabaseError:
|
raise dbi.InvalidDBError, str(e)
|
||||||
try:
|
|
||||||
self.addDatabase(name, filename)
|
|
||||||
except EnvironmentError, e:
|
|
||||||
irc.error('Could not open %s: %s' % (filename, e.args[1]))
|
|
||||||
return
|
|
||||||
self.addCommand(name)
|
|
||||||
self.addRegistryValue(name, filename)
|
|
||||||
irc.replySuccess('Lookup %s added.' % name)
|
|
||||||
add = privmsgs.checkCapability(add, 'admin')
|
|
||||||
|
|
||||||
def addRegistryValue(self, name, filename):
|
def close(self):
|
||||||
v = registry.String(filename, '')
|
self.db.close()
|
||||||
conf.supybot.plugins.Lookup.lookups.register(name, v)
|
|
||||||
|
def getRecordCount(self, tableName):
|
||||||
def addDatabase(self, name, filename):
|
cursor = self.db.cursor()
|
||||||
db = self.dbHandler.getDb()
|
cursor.execute("""SELECT COUNT(*) FROM %s""" % tableName)
|
||||||
cursor = db.cursor()
|
|
||||||
dataDir = conf.supybot.directories.data()
|
|
||||||
filename = os.path.join(dataDir, filename)
|
|
||||||
fd = file(filename)
|
|
||||||
try:
|
|
||||||
cursor.execute("""SELECT COUNT(*) FROM %s""" % name)
|
|
||||||
except sqlite.DatabaseError:
|
|
||||||
cursor.execute("CREATE TABLE %s (key TEXT, value TEXT)" % name)
|
|
||||||
sql = "INSERT INTO %s VALUES (%%s, %%s)" % name
|
|
||||||
for line in utils.nonCommentNonEmptyLines(fd):
|
|
||||||
line = line.rstrip('\r\n')
|
|
||||||
try:
|
|
||||||
(key, value) = self._splitRe.split(line, 1)
|
|
||||||
key = key.replace('\\:', ':')
|
|
||||||
except ValueError:
|
|
||||||
cursor.execute("""DROP TABLE %s""" % name)
|
|
||||||
s = 'Invalid line in %s: %r' % (filename, line)
|
|
||||||
raise callbacks.Error, s
|
|
||||||
cursor.execute(sql, key, value)
|
|
||||||
cursor.execute("CREATE INDEX %s_keys ON %s (key)" % (name, name))
|
|
||||||
db.commit()
|
|
||||||
|
|
||||||
def addCommand(self, name):
|
|
||||||
def f(self, irc, msg, args):
|
|
||||||
args.insert(0, name)
|
|
||||||
self._lookup(irc, msg, args)
|
|
||||||
db = self.dbHandler.getDb()
|
|
||||||
cursor = db.cursor()
|
|
||||||
cursor.execute("""SELECT COUNT(*) FROM %s""" % name)
|
|
||||||
rows = int(cursor.fetchone()[0])
|
rows = int(cursor.fetchone()[0])
|
||||||
docstring = """[<key>]
|
if rows == 0:
|
||||||
|
raise dbi.NoRecordError
|
||||||
|
return rows
|
||||||
|
|
||||||
|
def checkLookup(self, name):
|
||||||
|
cursor = self.db.cursor()
|
||||||
|
sql = "SELECT name FROM sqlite_master \
|
||||||
|
WHERE type='table' \
|
||||||
|
AND name='%s'" % name
|
||||||
|
cursor.execute(sql)
|
||||||
|
if cursor.rowcount == 0:
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
return True
|
||||||
|
|
||||||
If <key> is given, looks up <key> in the %s database. Otherwise,
|
def addLookup(self, name, fd, splitRe):
|
||||||
returns a random key: value pair from the database. There are
|
cursor = self.db.cursor()
|
||||||
%s in the database.
|
cursor.execute("CREATE TABLE %s (key TEXT, value TEXT)" % name)
|
||||||
""" % (name, utils.nItems(name, rows))
|
sql = "INSERT INTO %s VALUES (%%s, %%s)" % name
|
||||||
f = utils.changeFunctionName(f, name, docstring)
|
for line in utils.nonCommentNonEmptyLines(fd):
|
||||||
self.lookupDomains.add(name)
|
line = line.rstrip('\r\n')
|
||||||
setattr(self.__class__, name, f)
|
try:
|
||||||
|
(key, value) = splitRe.split(line, 1)
|
||||||
|
key = key.replace('\\:', ':')
|
||||||
|
except ValueError:
|
||||||
|
cursor.execute("""DROP TABLE %s""" % name)
|
||||||
|
s = 'Invalid line in %s: %r' % (filename, line)
|
||||||
|
raise callbacks.Error, s
|
||||||
|
cursor.execute(sql, key, value)
|
||||||
|
cursor.execute("CREATE INDEX %s_keys ON %s (key)" % (name, name))
|
||||||
|
self.db.commit()
|
||||||
|
|
||||||
|
def dropLookup(self, name):
|
||||||
|
cursor = self.db.cursor()
|
||||||
|
if self.checkLookup(name):
|
||||||
|
cursor.execute("""DROP TABLE %s""" % name)
|
||||||
|
self.db.commit()
|
||||||
|
else:
|
||||||
|
raise dbi.NoRecordError
|
||||||
|
|
||||||
|
def getResults(self, name, key):
|
||||||
|
cursor = self.db.cursor()
|
||||||
|
sql = """SELECT value FROM %s WHERE key LIKE %%s""" % name
|
||||||
|
cursor.execute(sql, key)
|
||||||
|
if cursor.rowcount == 0:
|
||||||
|
raise dbi.NoRecordError
|
||||||
|
else:
|
||||||
|
return cursor.fetchall()
|
||||||
|
|
||||||
|
def getRandomResult(self, name, key):
|
||||||
|
cursor = self.db.cursor()
|
||||||
|
sql = """SELECT key, value FROM %s
|
||||||
|
ORDER BY random() LIMIT 1""" % name
|
||||||
|
cursor.execute(sql)
|
||||||
|
if cursor.rowcount == 0:
|
||||||
|
raise dbi.NoRecordError
|
||||||
|
else:
|
||||||
|
return cursor.fetchone()
|
||||||
|
|
||||||
_sqlTrans = string.maketrans('*?', '%_')
|
_sqlTrans = string.maketrans('*?', '%_')
|
||||||
def search(self, irc, msg, args):
|
def searchResults(self, name, options, globs, column):
|
||||||
"""[--{regexp}=<value>] [--values] <name> <glob>
|
cursor = self.db.cursor()
|
||||||
|
|
||||||
Searches the domain <name> for lookups matching <glob>. If --regexp
|
|
||||||
is given, its associated value is taken as a regexp and matched
|
|
||||||
against the lookups. If --values is given, search the values rather
|
|
||||||
than the keys.
|
|
||||||
"""
|
|
||||||
column = 'key'
|
|
||||||
while '--values' in args:
|
|
||||||
column = 'value'
|
|
||||||
args.remove('--values')
|
|
||||||
(options, rest) = getopt.getopt(args, '', ['regexp='])
|
|
||||||
(name, globs) = privmsgs.getArgs(rest, optional=1)
|
|
||||||
db = self.dbHandler.getDb()
|
|
||||||
criteria = []
|
criteria = []
|
||||||
formats = []
|
formats = []
|
||||||
predicateName = 'p'
|
predicateName = 'p'
|
||||||
@ -252,7 +196,7 @@ class Lookup(callbacks.Privmsg):
|
|||||||
return
|
return
|
||||||
def p(s, r=r):
|
def p(s, r=r):
|
||||||
return int(bool(r.search(s)))
|
return int(bool(r.search(s)))
|
||||||
db.create_function(predicateName, 1, p)
|
self.db.create_function(predicateName, 1, p)
|
||||||
predicateName += 'p'
|
predicateName += 'p'
|
||||||
for glob in globs.split():
|
for glob in globs.split():
|
||||||
if '?' not in glob and '*' not in glob:
|
if '?' not in glob and '*' not in glob:
|
||||||
@ -263,17 +207,161 @@ class Lookup(callbacks.Privmsg):
|
|||||||
raise callbacks.ArgumentError
|
raise callbacks.ArgumentError
|
||||||
#print 'criteria: %s' % repr(criteria)
|
#print 'criteria: %s' % repr(criteria)
|
||||||
#print 'formats: %s' % repr(formats)
|
#print 'formats: %s' % repr(formats)
|
||||||
cursor = db.cursor()
|
|
||||||
sql = """SELECT key, value FROM %s WHERE %s""" % \
|
sql = """SELECT key, value FROM %s WHERE %s""" % \
|
||||||
(name, ' AND '.join(criteria))
|
(name, ' AND '.join(criteria))
|
||||||
#print 'sql: %s' % sql
|
#print 'sql: %s' % sql
|
||||||
cursor.execute(sql, formats)
|
cursor.execute(sql, formats)
|
||||||
if cursor.rowcount == 0:
|
if cursor.rowcount == 0:
|
||||||
irc.reply('No entries in %s matched that query.' % name)
|
raise dbi.NoRecordError
|
||||||
else:
|
else:
|
||||||
lookups = ['%s: %s' % (item[0], self._shrink(item[1]))
|
return cursor.fetchall()
|
||||||
for item in cursor.fetchall()]
|
|
||||||
irc.reply(utils.commaAndify(lookups))
|
LookupDB = plugins.DB('Lookup',
|
||||||
|
{'sqlite': SqliteLookupDB,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
class Lookup(callbacks.Privmsg):
|
||||||
|
def __init__(self):
|
||||||
|
callbacks.Privmsg.__init__(self)
|
||||||
|
self.lookupDomains = sets.Set()
|
||||||
|
try:
|
||||||
|
self.db = LookupDB()
|
||||||
|
except Exception:
|
||||||
|
self.log.exception('Error loading %s:', self.filename)
|
||||||
|
raise # So it doesn't get loaded without its database.
|
||||||
|
for (name, value) in registry._cache.iteritems():
|
||||||
|
name = name.lower()
|
||||||
|
if name.startswith('supybot.plugins.lookup.lookups.'):
|
||||||
|
name = name[len('supybot.plugins.lookup.lookups.'):]
|
||||||
|
if '.' in name:
|
||||||
|
continue
|
||||||
|
self.addRegistryValue(name, value)
|
||||||
|
group = conf.supybot.plugins.Lookup.lookups
|
||||||
|
for (name, value) in group.getValues(fullNames=False):
|
||||||
|
name = name.lower() # Just in case.
|
||||||
|
filename = value()
|
||||||
|
try:
|
||||||
|
if not self.db.checkLookup(name):
|
||||||
|
self.addDatabase(name, filename)
|
||||||
|
self.addCommand(name)
|
||||||
|
except Exception, e:
|
||||||
|
self.log.warning('Couldn\'t add lookup %s: %s', name, e)
|
||||||
|
|
||||||
|
def _shrink(self, s):
|
||||||
|
return utils.ellipsisify(s, 50)
|
||||||
|
|
||||||
|
def die(self):
|
||||||
|
self.db.close()
|
||||||
|
|
||||||
|
def remove(self, irc, msg, args):
|
||||||
|
"""<name>
|
||||||
|
|
||||||
|
Removes the lookup for <name>.
|
||||||
|
"""
|
||||||
|
name = privmsgs.getArgs(args)
|
||||||
|
name = callbacks.canonicalName(name)
|
||||||
|
if name not in self.lookupDomains:
|
||||||
|
irc.error('That\'s not a valid lookup to remove.')
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
self.db.dropLookup(name)
|
||||||
|
delattr(self.__class__, name)
|
||||||
|
self.delRegistryValues(name)
|
||||||
|
irc.replySuccess()
|
||||||
|
except dbi.NoRecordError:
|
||||||
|
irc.error('No such lookup exists.')
|
||||||
|
remove = privmsgs.checkCapability(remove, 'admin')
|
||||||
|
|
||||||
|
_splitRe = re.compile(r'(?<!\\):')
|
||||||
|
def add(self, irc, msg, args):
|
||||||
|
"""[--nokey] <name> <filename>
|
||||||
|
|
||||||
|
Adds a lookup for <name> with the key/value pairs specified in the
|
||||||
|
colon-delimited file specified by <filename>. <filename> is searched
|
||||||
|
for in conf.supybot.directories.data. If <name> is not singular, we
|
||||||
|
try to make it singular before creating the command. If the --nokey
|
||||||
|
option is specified, the new lookup will display only the value when
|
||||||
|
queried, and will omit the key from the response.
|
||||||
|
"""
|
||||||
|
opts = ['nokey']
|
||||||
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
||||||
|
(name, filename) = privmsgs.getArgs(rest, required=2)
|
||||||
|
nokey = False
|
||||||
|
for (option, argument) in optlist:
|
||||||
|
option = option.lstrip('-')
|
||||||
|
if option == 'nokey':
|
||||||
|
nokey = True
|
||||||
|
#print 'nokey: %s' % nokey
|
||||||
|
name = utils.depluralize(name)
|
||||||
|
name = callbacks.canonicalName(name)
|
||||||
|
if hasattr(self, name):
|
||||||
|
s = 'I already have a command in this plugin named %s' % name
|
||||||
|
irc.error(s)
|
||||||
|
return
|
||||||
|
if not self.db.checkLookup(name):
|
||||||
|
try:
|
||||||
|
self.addDatabase(name, filename)
|
||||||
|
except EnvironmentError, e:
|
||||||
|
irc.error('Could not open %s: %s' % (filename, e.args[1]))
|
||||||
|
return
|
||||||
|
self.addCommand(name)
|
||||||
|
self.addRegistryValue(name, filename, nokey)
|
||||||
|
irc.replySuccess('Lookup %s added.' % name)
|
||||||
|
add = privmsgs.checkCapability(add, 'admin')
|
||||||
|
|
||||||
|
def addRegistryValue(self, name, filename, nokey = False):
|
||||||
|
group = conf.supybot.plugins.Lookup.lookups
|
||||||
|
conf.registerGlobalValue(group, name, registry.String(filename, ''))
|
||||||
|
#print 'nokey: %s' % nokey
|
||||||
|
conf.registerGlobalValue(group.get(name), 'nokey', registry.Boolean(nokey, ''))
|
||||||
|
|
||||||
|
def delRegistryValues(self, name):
|
||||||
|
group = conf.supybot.plugins.Lookup.lookups
|
||||||
|
group.unregister(name)
|
||||||
|
|
||||||
|
def addDatabase(self, name, filename):
|
||||||
|
dataDir = conf.supybot.directories.data()
|
||||||
|
filename = os.path.join(dataDir, filename)
|
||||||
|
fd = file(filename)
|
||||||
|
self.db.addLookup(name, fd, self._splitRe)
|
||||||
|
|
||||||
|
def addCommand(self, name):
|
||||||
|
def f(self, irc, msg, args):
|
||||||
|
args.insert(0, name)
|
||||||
|
self._lookup(irc, msg, args)
|
||||||
|
rows = self.db.getRecordCount(name)
|
||||||
|
docstring = """[<key>]
|
||||||
|
|
||||||
|
If <key> is given, looks up <key> in the %s database. Otherwise,
|
||||||
|
returns a random key: value pair from the database. There are
|
||||||
|
%s in the database.
|
||||||
|
""" % (name, utils.nItems(name, rows))
|
||||||
|
f = utils.changeFunctionName(f, name, docstring)
|
||||||
|
self.lookupDomains.add(name)
|
||||||
|
setattr(self.__class__, name, f)
|
||||||
|
|
||||||
|
def search(self, irc, msg, args):
|
||||||
|
"""[--{regexp}=<value>] [--values] <name> <glob>
|
||||||
|
|
||||||
|
Searches the domain <name> for lookups matching <glob>. If --regexp
|
||||||
|
is given, its associated value is taken as a regexp and matched
|
||||||
|
against the lookups. If --values is given, search the values rather
|
||||||
|
than the keys.
|
||||||
|
"""
|
||||||
|
column = 'key'
|
||||||
|
while '--values' in args:
|
||||||
|
column = 'value'
|
||||||
|
args.remove('--values')
|
||||||
|
(options, rest) = getopt.getopt(args, '', ['regexp='])
|
||||||
|
(name, globs) = privmsgs.getArgs(rest, optional=1)
|
||||||
|
try:
|
||||||
|
results = self.db.searchResults(name, options, globs, column)
|
||||||
|
except dbi.NoRecordError:
|
||||||
|
irc.reply('No entries in %s matched that query.' % name)
|
||||||
|
lookups = ['%s: %s' % (item[0], self._shrink(item[1]))
|
||||||
|
for item in results]
|
||||||
|
irc.reply(utils.commaAndify(lookups))
|
||||||
|
|
||||||
def _lookup(self, irc, msg, args):
|
def _lookup(self, irc, msg, args):
|
||||||
"""<name> <key>
|
"""<name> <key>
|
||||||
@ -281,39 +369,29 @@ class Lookup(callbacks.Privmsg):
|
|||||||
Looks up the value of <key> in the domain <name>.
|
Looks up the value of <key> in the domain <name>.
|
||||||
"""
|
"""
|
||||||
(name, key) = privmsgs.getArgs(args, optional=1)
|
(name, key) = privmsgs.getArgs(args, optional=1)
|
||||||
db = self.dbHandler.getDb()
|
if self.db.checkLookup(name):
|
||||||
cursor = db.cursor()
|
results = []
|
||||||
if key:
|
if key:
|
||||||
sql = """SELECT value FROM %s WHERE key LIKE %%s""" % name
|
try:
|
||||||
try:
|
results = self.db.getResults(name, key)
|
||||||
cursor.execute(sql, key)
|
except dbi.NoRecordError:
|
||||||
except sqlite.DatabaseError, e:
|
irc.error('I couldn\'t find %s in %s.' % (key, name))
|
||||||
if 'no such table' in str(e):
|
return
|
||||||
irc.error('I don\'t have a domain %s' % name)
|
if len(results) == 1:
|
||||||
|
irc.reply(results[0][0])
|
||||||
else:
|
else:
|
||||||
irc.error(str(e))
|
values = [t[0] for t in results]
|
||||||
return
|
irc.reply('%s could be %s' % (key, ', or '.join(values)))
|
||||||
if cursor.rowcount == 0:
|
|
||||||
irc.error('I couldn\'t find %s in %s.' % (key, name))
|
|
||||||
elif cursor.rowcount == 1:
|
|
||||||
irc.reply(cursor.fetchone()[0])
|
|
||||||
else:
|
else:
|
||||||
values = [t[0] for t in cursor.fetchall()]
|
(key, value) = self.db.getRandomResult(name, key)
|
||||||
irc.reply('%s could be %s' % (key, ', or '.join(values)))
|
nokeyRegKey = 'lookups.%s.nokey' % name
|
||||||
else:
|
if not self.registryValue(nokeyRegKey):
|
||||||
sql = """SELECT key, value FROM %s
|
irc.reply('%s: %s' % (key, value))
|
||||||
ORDER BY random() LIMIT 1""" % name
|
|
||||||
try:
|
|
||||||
cursor.execute(sql)
|
|
||||||
except sqlite.DatabaseError, e:
|
|
||||||
if 'no such table' in str(e):
|
|
||||||
irc.error('I don\'t have a domain %r' % name)
|
|
||||||
else:
|
else:
|
||||||
irc.error(str(e))
|
irc.reply('%s' % value)
|
||||||
return
|
else:
|
||||||
(key, value) = cursor.fetchone()
|
irc.error('I don\'t have a domain %s' % name)
|
||||||
irc.reply('%s: %s' % (key, value))
|
return
|
||||||
|
|
||||||
|
|
||||||
Class = Lookup
|
Class = Lookup
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user