h/plugins/seen.py

45 lines
1.3 KiB
Python
Raw Normal View History

" seen.py: written by sklnd in about two beers July 2009"
2009-07-08 17:28:15 +00:00
import time
from util import hook, timesince
2009-07-08 17:28:15 +00:00
def db_init(db):
"check to see that our db has the the seen table and return a connection."
db.execute("create table if not exists seen(name, time, quote, chan, "
"primary key(name, chan))")
db.commit()
@hook.singlethread
2010-03-11 23:34:54 +00:00
@hook.event('PRIVMSG')
def seeninput(paraml, input=None, db=None, bot=None):
2010-02-02 04:42:34 +00:00
db_init(db)
db.execute("insert or replace into seen(name, time, quote, chan)"
2010-03-01 02:32:41 +00:00
"values(?,?,?,?)", (input.nick.lower(), time.time(), input.msg,
2010-02-02 04:42:34 +00:00
input.chan))
db.commit()
2009-07-08 17:28:15 +00:00
@hook.command
2010-02-02 04:42:34 +00:00
def seen(inp, nick='', chan='', db=None):
".seen <nick> -- Tell when a nickname was last in active in irc"
2010-02-02 04:42:34 +00:00
if inp.lower() == nick.lower():
return "Have you looked in a mirror lately?"
2010-02-02 04:42:34 +00:00
db_init(db)
2010-02-02 04:42:34 +00:00
last_seen = db.execute("select name, time, quote from seen where name"
" like ? and chan = ?", (inp, chan)).fetchone()
2010-02-02 04:42:34 +00:00
if last_seen:
reltime = timesince.timesince(last_seen[1])
2010-03-01 02:32:41 +00:00
if last_seen[0] != inp.lower(): # for glob matching
2010-02-02 04:42:34 +00:00
inp = last_seen[0]
return '%s was last seen %s ago saying: %s' % \
2010-02-02 04:42:34 +00:00
(inp, reltime, last_seen[2])
else:
2010-02-02 04:42:34 +00:00
return "I've never seen %s" % inp