132 lines
3.9 KiB
Python
132 lines
3.9 KiB
Python
" tell.py: written by sklnd in July 2009"
|
|
|
|
import os
|
|
import time
|
|
from datetime import datetime
|
|
import sqlite3
|
|
|
|
from util import hook, timesince
|
|
|
|
|
|
dbname = "skybot.db"
|
|
|
|
|
|
def adapt_datetime(ts):
|
|
return time.mktime(ts.timetuple())
|
|
|
|
sqlite3.register_adapter(datetime, adapt_datetime)
|
|
|
|
|
|
@hook.command(hook=r'(.*)', prefix=False, ignorebots=True)
|
|
def tellinput(bot, input):
|
|
dbpath = os.path.join(bot.persist_dir, dbname)
|
|
conn = dbconnect(dbpath)
|
|
|
|
cursor = conn.cursor()
|
|
command = "select count(name) from tell where name LIKE ? and chan = ?"
|
|
results = cursor.execute(command, (input.nick, input.chan)).fetchone()
|
|
|
|
|
|
if results[0] > 0:
|
|
command = "select id, user_from, quote, date from tell " \
|
|
"where name LIKE ? and chan = ? limit 1"
|
|
tell = cursor.execute(command, (input.nick, input.chan)).fetchall()[0]
|
|
more = results[0] - 1
|
|
reltime = timesince.timesince(datetime.fromtimestamp(tell[3]))
|
|
|
|
reply = "%(teller)s said %(reltime)s ago: %(quote)s" % \
|
|
{"teller": tell[1], "quote": tell[2], "reltime": reltime}
|
|
if more:
|
|
reply += " (+%(more)d more, to view say .showtells)" % {"more": more}
|
|
|
|
input.reply(reply)
|
|
command = "delete from tell where id = ?"
|
|
cursor.execute(command, (tell[0], ))
|
|
|
|
conn.commit()
|
|
conn.close()
|
|
|
|
@hook.command
|
|
def showtells(bot, input):
|
|
".showtells -- view all pending tell messages (sent in PM)."
|
|
|
|
dbpath = os.path.join(bot.persist_dir, dbname)
|
|
conn = dbconnect(dbpath)
|
|
|
|
cursor = conn.cursor()
|
|
command = "SELECT id, user_from, quote, date FROM tell " \
|
|
"WHERE name LIKE ? and chan = ?"
|
|
tells = cursor.execute(command, (input.nick, input.chan)).fetchall()
|
|
|
|
if(len(tells) > 0):
|
|
for tell in tells:
|
|
reltime = timesince.timesince(datetime.fromtimestamp(tell[3]))
|
|
input.msg(input.nick, '%(teller)s said %(time)s ago: %(quote)s' %
|
|
{'teller': tell[1], 'quote': tell[2], 'time': reltime})
|
|
|
|
command = "delete from tell where id = ?"
|
|
cursor.execute(command, (tell[0], ))
|
|
|
|
conn.commit()
|
|
else:
|
|
input.pm("You have no pending tells.")
|
|
|
|
conn.close()
|
|
|
|
|
|
@hook.command
|
|
def tell(bot, input):
|
|
".tell <nick> <message> -- relay <message> to <nick> when <nick> is around"
|
|
|
|
if len(input.msg) < 6:
|
|
return tell.__doc__
|
|
|
|
query = input.msg[6:].strip().partition(" ")
|
|
|
|
if query[0] == input.nick:
|
|
return "No."
|
|
|
|
|
|
if query[2] != "":
|
|
dbpath = os.path.join(bot.persist_dir, dbname)
|
|
conn = dbconnect(dbpath)
|
|
|
|
command = "select count(*) from tell_probation where name=? and chan=?"
|
|
if conn.execute(command, (input.nick, input.chan)).fetchone()[0] > 0:
|
|
return "No."
|
|
|
|
command = "select count(*) from tell where name=? and user_from=?"
|
|
if conn.execute(command, (query[0], input.nick)).fetchone()[0] >= 3:
|
|
return "You've told that person too many things."
|
|
|
|
cursor = conn.cursor()
|
|
command = "insert into tell(name, user_from, quote, chan, date) " \
|
|
"values(?,?,?,?,?)"
|
|
cursor.execute(command, (query[0], input.nick, query[2], input.chan,
|
|
datetime.now()))
|
|
|
|
conn.commit()
|
|
conn.close()
|
|
return "I'll pass that along."
|
|
|
|
else:
|
|
return tell.__doc__
|
|
|
|
|
|
def dbconnect(db):
|
|
"check to see that our db has the tell table and return a connection."
|
|
conn = sqlite3.connect(db)
|
|
|
|
conn.execute("CREATE TABLE IF NOT EXISTS tell(id integer primary key "
|
|
"autoincrement, name text not null, user_from text not null,"
|
|
"quote text not null, chan text not null, "
|
|
"date datetime not null);")
|
|
|
|
conn.execute("CREATE TABLE IF NOT EXISTS "
|
|
"tell_probation(name text, chan text,"
|
|
"primary key(name, chan));")
|
|
|
|
conn.commit()
|
|
|
|
return conn
|