mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-28 14:01:03 -05:00
LOTS of bugs fixed. More to go.
This commit is contained in:
parent
4c6ad94435
commit
716aefbb8d
@ -141,7 +141,7 @@ class SqliteFactoidsDB(object):
|
|||||||
raise LockError
|
raise LockError
|
||||||
|
|
||||||
def get(self, channel, key):
|
def get(self, channel, key):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("""SELECT factoids.fact FROM factoids, keys
|
cursor.execute("""SELECT factoids.fact FROM factoids, keys
|
||||||
WHERE keys.key LIKE %s AND factoids.key_id=keys.id
|
WHERE keys.key LIKE %s AND factoids.key_id=keys.id
|
||||||
@ -150,19 +150,19 @@ class SqliteFactoidsDB(object):
|
|||||||
return [t[0] for t in cursor.fetchall()]
|
return [t[0] for t in cursor.fetchall()]
|
||||||
|
|
||||||
def lock(self, channel, key):
|
def lock(self, channel, key):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("UPDATE keys SET locked=1 WHERE key LIKE %s", key)
|
cursor.execute("UPDATE keys SET locked=1 WHERE key LIKE %s", key)
|
||||||
db.commit()
|
db.commit()
|
||||||
|
|
||||||
def unlock(self, channel, key):
|
def unlock(self, channel, key):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("UPDATE keys SET locked=0 WHERE key LIKE %s", key)
|
cursor.execute("UPDATE keys SET locked=0 WHERE key LIKE %s", key)
|
||||||
db.commit()
|
db.commit()
|
||||||
|
|
||||||
def remove(self, channel, key, number):
|
def remove(self, channel, key, number):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("""SELECT keys.id, factoids.id
|
cursor.execute("""SELECT keys.id, factoids.id
|
||||||
FROM keys, factoids
|
FROM keys, factoids
|
||||||
@ -188,7 +188,7 @@ class SqliteFactoidsDB(object):
|
|||||||
raise MultiKeyError, cursor.rowcount
|
raise MultiKeyError, cursor.rowcount
|
||||||
|
|
||||||
def random(self, channel):
|
def random(self, channel):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("""SELECT fact, key_id FROM factoids
|
cursor.execute("""SELECT fact, key_id FROM factoids
|
||||||
ORDER BY random()
|
ORDER BY random()
|
||||||
@ -203,7 +203,7 @@ class SqliteFactoidsDB(object):
|
|||||||
return L
|
return L
|
||||||
|
|
||||||
def info(self, channel, key):
|
def info(self, channel, key):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
cursor.execute("SELECT id, locked FROM keys WHERE key LIKE %s", key)
|
cursor.execute("SELECT id, locked FROM keys WHERE key LIKE %s", key)
|
||||||
if cursor.rowcount == 0:
|
if cursor.rowcount == 0:
|
||||||
@ -216,7 +216,7 @@ class SqliteFactoidsDB(object):
|
|||||||
|
|
||||||
_sqlTrans = string.maketrans('*?', '%_')
|
_sqlTrans = string.maketrans('*?', '%_')
|
||||||
def select(self, channel, values, predicates, globs):
|
def select(self, channel, values, predicates, globs):
|
||||||
db = self.getDb(channel)
|
db = self._getDb(channel)
|
||||||
cursor = db.cursor()
|
cursor = db.cursor()
|
||||||
tables = ['keys']
|
tables = ['keys']
|
||||||
criteria = []
|
criteria = []
|
||||||
@ -232,10 +232,10 @@ class SqliteFactoidsDB(object):
|
|||||||
for glob in globs:
|
for glob in globs:
|
||||||
criteria.append('TARGET LIKE %s')
|
criteria.append('TARGET LIKE %s')
|
||||||
formats.append(glob.translate(self._sqlTrans))
|
formats.append(glob.translate(self._sqlTrans))
|
||||||
for predicate in predicates:
|
for r in predicates:
|
||||||
criteria.append('%s(TARGET)' % predicateName)
|
criteria.append('%s(TARGET)' % predicateName)
|
||||||
def p(s, r=arg):
|
def p(s, r=r):
|
||||||
return int(bool(predicate(s)))
|
return int(bool(r(s)))
|
||||||
db.create_function(predicateName, 1, p)
|
db.create_function(predicateName, 1, p)
|
||||||
predicateName += 'p'
|
predicateName += 'p'
|
||||||
sql = """SELECT keys.key FROM %s WHERE %s""" % \
|
sql = """SELECT keys.key FROM %s WHERE %s""" % \
|
||||||
@ -344,7 +344,8 @@ class Factoids(callbacks.Privmsg):
|
|||||||
"""
|
"""
|
||||||
self.db.lock(channel, key)
|
self.db.lock(channel, key)
|
||||||
irc.replySuccess()
|
irc.replySuccess()
|
||||||
lock = wrap(lock, ['channeldb', 'something'])
|
lock = wrap(lock, ['channeldb', ('checkChannelCapability', 'op'),
|
||||||
|
'something'])
|
||||||
|
|
||||||
def unlock(self, irc, msg, args, channel, key):
|
def unlock(self, irc, msg, args, channel, key):
|
||||||
"""[<channel>] <key>
|
"""[<channel>] <key>
|
||||||
@ -355,7 +356,8 @@ class Factoids(callbacks.Privmsg):
|
|||||||
"""
|
"""
|
||||||
self.db.unlock(channel, key)
|
self.db.unlock(channel, key)
|
||||||
irc.replySuccess()
|
irc.replySuccess()
|
||||||
unlock = wrap(unlock, ['channeldb', 'something'])
|
unlock = wrap(unlock, ['channeldb', ('checkChannelCapability', 'op'),
|
||||||
|
'something'])
|
||||||
|
|
||||||
def forget(self, irc, msg, args, channel, number, key):
|
def forget(self, irc, msg, args, channel, number, key):
|
||||||
"""[<channel>] <key> [<number>|*]
|
"""[<channel>] <key> [<number>|*]
|
||||||
@ -471,11 +473,12 @@ class Factoids(callbacks.Privmsg):
|
|||||||
if not optlist and not globs:
|
if not optlist and not globs:
|
||||||
raise callbacks.ArgumentError
|
raise callbacks.ArgumentError
|
||||||
values = False
|
values = False
|
||||||
|
predicates = []
|
||||||
for (option, arg) in optlist:
|
for (option, arg) in optlist:
|
||||||
if option == 'values':
|
if option == 'values':
|
||||||
values = True
|
values = True
|
||||||
elif option == 'regexp':
|
elif option == 'regexp':
|
||||||
predicates.append(r.search)
|
predicates.append(arg.search)
|
||||||
L = []
|
L = []
|
||||||
for glob in globs:
|
for glob in globs:
|
||||||
if '*' not in glob and '?' not in glob:
|
if '*' not in glob and '?' not in glob:
|
||||||
@ -496,7 +499,7 @@ class Factoids(callbacks.Privmsg):
|
|||||||
irc.reply('No keys matched that query.')
|
irc.reply('No keys matched that query.')
|
||||||
search = wrap(search, ['channeldb',
|
search = wrap(search, ['channeldb',
|
||||||
getopts({'values':'', 'regexp':'regexpMatcher'}),
|
getopts({'values':'', 'regexp':'regexpMatcher'}),
|
||||||
additional('something')]) # XXX 'glob' spec
|
any('glob')])
|
||||||
|
|
||||||
|
|
||||||
Class = Factoids
|
Class = Factoids
|
||||||
|
Loading…
x
Reference in New Issue
Block a user