h/plugins/quote.py

113 lines
3.5 KiB
Python
Raw Normal View History

2010-01-22 09:56:20 +00:00
import random
import re
import time
from util import hook
2010-02-02 04:42:34 +00:00
def add_quote(db, chan, nick, add_nick, msg):
db.execute('''insert or fail into quote (chan, nick, add_nick,
2010-03-01 02:32:41 +00:00
msg, time) values(?,?,?,?,?)''',
2014-01-14 21:12:37 +00:00
(chan, nick, add_nick, msg, time.time()))
2010-02-02 04:42:34 +00:00
db.commit()
2010-01-22 09:56:20 +00:00
2010-03-01 02:32:41 +00:00
2014-04-30 20:17:39 +00:00
def del_quote(db, chan, nick, msg):
updated = db.execute('''update quote set deleted = 1 where
chan=? and lower(nick)=lower(?) and msg=?''',
2014-04-30 20:17:39 +00:00
(chan, nick, msg))
db.commit()
2014-04-30 20:17:39 +00:00
if updated.rowcount == 0:
return False
else:
return True
2014-04-30 20:17:39 +00:00
2010-02-02 04:42:34 +00:00
def get_quotes_by_nick(db, chan, nick):
return db.execute("select time, nick, msg from quote where deleted!=1 "
2014-01-14 21:12:37 +00:00
"and chan=? and lower(nick)=lower(?) order by time",
(chan, nick)).fetchall()
2010-03-01 02:32:41 +00:00
2010-02-02 04:42:34 +00:00
def get_quotes_by_chan(db, chan):
return db.execute("select time, nick, msg from quote where deleted!=1 "
2014-01-14 21:12:37 +00:00
"and chan=? order by time", (chan,)).fetchall()
def format_quote(q, num, n_quotes):
ctime, nick, msg = q
2010-03-01 02:32:41 +00:00
return "[%d/%d] %s <%s> %s" % (num, n_quotes,
2014-01-14 21:12:37 +00:00
time.strftime("%Y-%m-%d", time.gmtime(ctime)), nick, msg)
2010-03-01 02:32:41 +00:00
2010-01-22 09:56:20 +00:00
@hook.command('q')
@hook.command
2014-04-30 20:17:39 +00:00
def quote(inp, nick='', chan='', db=None, admin=False):
".q/.quote [#chan] [nick] [#n]/.quote add|delete <nick> <msg> -- gets " \
"random or [#n]th quote by <nick> or from <#chan>/adds or deletes " \
"quote"
2010-01-22 09:56:20 +00:00
2010-02-02 04:42:34 +00:00
db.execute("create table if not exists quote"
2014-01-14 21:12:37 +00:00
"(chan, nick, add_nick, msg, time real, deleted default 0, "
"primary key (chan, nick, msg))")
2010-02-02 04:42:34 +00:00
db.commit()
2010-01-22 09:56:20 +00:00
2010-04-25 21:40:59 +00:00
add = re.match(r"add[^\w@]+(\S+?)>?\s+(.*)", inp, re.I)
delete = re.match(r"delete[^\w@]+(\S+?)>?\s+(.*)", inp, re.I)
retrieve = re.match(r"(\S+)(?:\s+#?(-?\d+))?$", inp)
2010-12-02 07:50:05 +00:00
retrieve_chan = re.match(r"(#\S+)\s+(\S+)(?:\s+#?(-?\d+))?$", inp)
if add:
quoted_nick, msg = add.groups()
try:
add_quote(db, chan, quoted_nick, nick, msg)
db.commit()
except db.IntegrityError:
return "message already stored, doing nothing."
return "quote added."
if delete:
2014-04-30 20:17:39 +00:00
if not admin:
return 'only admins can delete quotes'
quoted_nick, msg = delete.groups()
2014-04-30 20:17:39 +00:00
if del_quote(db, chan, quoted_nick, msg):
return "deleted quote '%s'" % msg
else:
return "found no matching quotes to delete"
elif retrieve:
select, num = retrieve.groups()
if select.startswith('#'):
quotes = get_quotes_by_chan(db, select)
else:
quotes = get_quotes_by_nick(db, chan, select)
2010-12-02 07:50:05 +00:00
elif retrieve_chan:
chan, nick, num = retrieve_chan.groups()
2010-01-22 09:56:20 +00:00
2010-12-02 07:50:05 +00:00
quotes = get_quotes_by_nick(db, chan, nick)
else:
return quote.__doc__
2010-01-22 09:56:20 +00:00
2010-12-02 07:50:05 +00:00
n_quotes = len(quotes)
2010-01-22 09:56:20 +00:00
2010-12-02 07:50:05 +00:00
if not n_quotes:
return "no quotes found"
2010-01-22 09:56:20 +00:00
2010-12-02 07:50:05 +00:00
if num:
num = int(num)
if num:
if num > n_quotes or (num < 0 and num < -n_quotes):
return "I only have %d quote%s for %s" % (n_quotes,
2014-01-14 21:12:37 +00:00
('s', '')[n_quotes == 1], select)
2010-12-02 07:50:05 +00:00
elif num < 0:
selected_quote = quotes[num]
num = n_quotes + num + 1
2010-01-22 09:56:20 +00:00
else:
selected_quote = quotes[num - 1]
2010-12-02 07:50:05 +00:00
else:
num = random.randint(1, n_quotes)
selected_quote = quotes[num - 1]
2010-12-02 07:50:05 +00:00
return format_quote(selected_quote, num, n_quotes)