2003-03-12 07:26:59 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
2003-03-25 07:53:51 +01:00
|
|
|
"""
|
|
|
|
Provides fun commands that require a database to operate.
|
|
|
|
"""
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
from baseplugin import *
|
|
|
|
|
2003-08-22 08:08:55 +02:00
|
|
|
import sets
|
2003-08-31 10:42:07 +02:00
|
|
|
import time
|
|
|
|
import atexit
|
2003-03-12 07:26:59 +01:00
|
|
|
import string
|
2003-08-14 12:51:42 +02:00
|
|
|
import random
|
2003-03-12 07:26:59 +01:00
|
|
|
import os.path
|
|
|
|
|
|
|
|
import sqlite
|
|
|
|
|
|
|
|
import conf
|
2003-08-22 23:34:33 +02:00
|
|
|
import ircdb
|
2003-08-22 10:10:58 +02:00
|
|
|
import utils
|
2003-08-31 10:42:51 +02:00
|
|
|
import world
|
2003-03-12 07:26:59 +01:00
|
|
|
import ircmsgs
|
|
|
|
import ircutils
|
|
|
|
import privmsgs
|
|
|
|
import callbacks
|
|
|
|
|
|
|
|
dbFilename = os.path.join(conf.dataDir, 'FunDB.db')
|
|
|
|
|
2003-09-01 07:51:32 +02:00
|
|
|
tableCreateStatements = {
|
2003-09-01 06:45:26 +02:00
|
|
|
'larts': ("""CREATE TABLE larts (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
lart TEXT, added_by TEXT,
|
|
|
|
requested_by TEXT,
|
|
|
|
use_count INTEGER
|
|
|
|
)""",),
|
|
|
|
'praises': ("""CREATE TABLE praises (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
praise TEXT, added_by TEXT,
|
|
|
|
requested_by TEXT,
|
|
|
|
use_count INTEGER
|
|
|
|
)""",),
|
|
|
|
'insults': ("""CREATE TABLE insults (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
insult TEXT, added_by TEXT,
|
|
|
|
requested_by TEXT,
|
|
|
|
use_count INTEGER
|
|
|
|
)""",),
|
|
|
|
'excuses': ("""CREATE TABLE excuses (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
excuse TEXT, added_by TEXT,
|
|
|
|
requested_by TEXT,
|
|
|
|
use_count INTEGER
|
|
|
|
)""",),
|
|
|
|
'words': ("""CREATE TABLE words (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
word TEXT UNIQUE ON CONFLICT IGNORE,
|
|
|
|
sorted_word_id INTEGER
|
|
|
|
)""",
|
2003-09-01 07:51:32 +02:00
|
|
|
"""CREATE INDEX sorted_word_id ON words (sorted_word_id)""",
|
|
|
|
"""CREATE TABLE sorted_words (
|
|
|
|
id INTEGER PRIMARY KEY,
|
|
|
|
word TEXT UNIQUE ON CONFLICT IGNORE
|
|
|
|
)""",
|
|
|
|
"""CREATE INDEX sorted_words_word ON sorted_words (word)"""),
|
2003-09-01 06:45:26 +02:00
|
|
|
'uptime': ("""CREATE TABLE uptime (
|
|
|
|
started INTEGER UNIQUE ON CONFLICT IGNORE,
|
|
|
|
ended INTEGER
|
|
|
|
)""",)
|
|
|
|
}
|
|
|
|
|
2003-09-01 07:51:32 +02:00
|
|
|
def makeDb(dbfilename, replace=False):
|
|
|
|
if os.path.exists(dbfilename):
|
|
|
|
if replace:
|
|
|
|
os.remove(dbfilename)
|
|
|
|
db = sqlite.connect(dbfilename)
|
|
|
|
cursor = db.cursor()
|
|
|
|
for table in tableCreateStatements:
|
|
|
|
try:
|
|
|
|
cursor.execute("""SELECT * FROM %s LIMIT 1""" % table)
|
|
|
|
except sqlite.DatabaseError: # The table doesn't exist.
|
|
|
|
for sql in tableCreateStatements[table]:
|
|
|
|
cursor.execute(sql)
|
|
|
|
db.commit()
|
|
|
|
return db
|
|
|
|
|
|
|
|
def addWord(db, word, commit=False):
|
|
|
|
word = word.strip().lower()
|
|
|
|
L = list(word)
|
|
|
|
L.sort()
|
|
|
|
sorted = ''.join(L)
|
|
|
|
cursor = db.cursor()
|
|
|
|
cursor.execute("""INSERT INTO sorted_words VALUES (NULL, %s)""", sorted)
|
|
|
|
cursor.execute("""INSERT INTO words VALUES (NULL, %s,
|
|
|
|
(SELECT id FROM sorted_words
|
|
|
|
WHERE word=%s))""", word, sorted)
|
|
|
|
if commit:
|
2003-09-01 06:45:26 +02:00
|
|
|
db.commit()
|
2003-09-01 07:51:32 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
class FunDB(callbacks.Privmsg):
|
|
|
|
"""
|
|
|
|
Contains the 'fun' commands that require a database. Currently includes
|
|
|
|
database-backed commands for crossword puzzle solving, anagram searching,
|
|
|
|
larting, excusing, and insulting.
|
|
|
|
"""
|
2003-08-31 10:42:07 +02:00
|
|
|
_tables = sets.Set(['lart', 'insult', 'excuse', 'praise'])
|
2003-03-12 07:26:59 +01:00
|
|
|
def __init__(self):
|
|
|
|
callbacks.Privmsg.__init__(self)
|
|
|
|
self.db = makeDb(dbFilename)
|
2003-08-31 10:43:56 +02:00
|
|
|
cursor = self.db.cursor()
|
2003-08-31 10:42:07 +02:00
|
|
|
started = int(world.startedAt)
|
|
|
|
cursor.execute("""INSERT INTO uptime VALUES (%s, NULL)""", started)
|
2003-09-01 07:42:35 +02:00
|
|
|
self.db.commit()
|
2003-08-31 10:42:07 +02:00
|
|
|
def f():
|
2003-09-01 07:42:35 +02:00
|
|
|
db = makeDb(dbFilename)
|
|
|
|
cursor = db.cursor()
|
2003-08-31 10:42:07 +02:00
|
|
|
cursor.execute("""UPDATE uptime SET ended=%s WHERE started=%s""",
|
|
|
|
int(time.time()), started)
|
2003-09-01 07:42:35 +02:00
|
|
|
db.commit()
|
2003-08-31 10:42:07 +02:00
|
|
|
atexit.register(f)
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def die(self):
|
2003-08-15 05:00:10 +02:00
|
|
|
self.db.commit()
|
2003-03-12 07:26:59 +01:00
|
|
|
self.db.close()
|
2003-08-25 22:13:04 +02:00
|
|
|
del self.db
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-08-31 10:42:07 +02:00
|
|
|
def bestuptime(self, irc, msg, args):
|
|
|
|
"""takes no arguments.
|
|
|
|
|
|
|
|
Returns the highest uptimes attained by the bot.
|
|
|
|
"""
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT started, ended FROM uptime
|
|
|
|
WHERE ended NOTNULL
|
|
|
|
ORDER BY ended-started DESC""")
|
|
|
|
L = []
|
|
|
|
lenSoFar = 0
|
|
|
|
counter = cursor.rowcount
|
|
|
|
if cursor.rowcount == 0:
|
|
|
|
irc.reply(msg, 'I don\'t have enough data to answer that.')
|
|
|
|
return
|
|
|
|
while counter and lenSoFar < 400:
|
|
|
|
(started, ended) = map(int, cursor.fetchone())
|
|
|
|
s = '%s, up for %s' % \
|
|
|
|
(time.strftime(conf.humanTimestampFormat,
|
|
|
|
time.localtime(ended)),
|
|
|
|
utils.timeElapsed(ended-started))
|
|
|
|
lenSoFar += len(s)
|
|
|
|
counter -= 1
|
|
|
|
L.append(s)
|
|
|
|
irc.reply(msg, ircutils.privmsgPayload(L, '; '))
|
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def insult(self, irc, msg, args):
|
2003-04-20 08:26:17 +02:00
|
|
|
"""<nick>
|
|
|
|
|
|
|
|
Insults <nick>.
|
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
nick = privmsgs.getArgs(args)
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT id, insult FROM insults
|
2003-04-05 12:24:40 +02:00
|
|
|
WHERE insult NOT NULL
|
2003-03-12 07:26:59 +01:00
|
|
|
ORDER BY random()
|
|
|
|
LIMIT 1""")
|
2003-08-23 07:21:45 +02:00
|
|
|
if cursor.rowcount == 0:
|
2003-08-22 23:34:33 +02:00
|
|
|
irc.error(msg, 'There are currently no available insults.')
|
|
|
|
return
|
2003-08-27 09:45:48 +02:00
|
|
|
(id, insult) = cursor.fetchone()
|
|
|
|
sql = """UPDATE insults SET use_count=use_count+1, requested_by=%s
|
|
|
|
WHERE id=%s"""
|
|
|
|
cursor.execute(sql, msg.prefix, id)
|
|
|
|
nick = nick.strip()
|
|
|
|
if nick in (irc.nick, 'yourself', 'me'):
|
|
|
|
insultee = msg.nick
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
2003-08-27 09:45:48 +02:00
|
|
|
insultee = nick
|
|
|
|
if ircutils.isChannel(msg.args[0]):
|
|
|
|
means = msg.args[0]
|
|
|
|
s = '%s: %s (#%s)' % (insultee, insult, id)
|
|
|
|
else:
|
|
|
|
means = insultee
|
|
|
|
s = insult
|
|
|
|
irc.queueMsg(ircmsgs.privmsg(means, s))
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
def crossword(self, irc, msg, args):
|
|
|
|
"""<word>
|
|
|
|
|
|
|
|
Gives the possible crossword completions for <word>; use underscores
|
|
|
|
('_') to denote blank spaces.
|
|
|
|
"""
|
|
|
|
word = privmsgs.getArgs(args).lower()
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
if '%' in word:
|
|
|
|
irc.error(msg, '"%" isn\'t allowed in the word.')
|
|
|
|
return
|
|
|
|
cursor.execute("""SELECT word FROM words
|
|
|
|
WHERE word LIKE %s
|
|
|
|
ORDER BY word""", word)
|
|
|
|
words = map(lambda t: t[0], cursor.fetchall())
|
|
|
|
irc.reply(msg, ', '.join(words))
|
|
|
|
|
|
|
|
def excuse(self, irc, msg, args):
|
2003-04-20 08:26:17 +02:00
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Gives you a standard BOFH excuse.
|
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT id, excuse FROM excuses
|
|
|
|
WHERE excuse NOTNULL
|
|
|
|
ORDER BY random()
|
|
|
|
LIMIT 1""")
|
2003-08-23 07:21:45 +02:00
|
|
|
if cursor.rowcount == 0:
|
2003-08-22 23:34:33 +02:00
|
|
|
irc.error(msg, 'There are currently no available excuses.')
|
2003-08-23 07:21:45 +02:00
|
|
|
else:
|
|
|
|
(id, excuse) = cursor.fetchone()
|
|
|
|
sql = """UPDATE excuses SET use_count=use_count+1, requested_by=%s
|
|
|
|
WHERE id=%s"""
|
|
|
|
cursor.execute(sql, msg.prefix, id)
|
|
|
|
irc.reply(msg, '%s (#%s)' % (excuse, id))
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-08-22 23:34:33 +02:00
|
|
|
def dbadd(self, irc, msg, args):
|
2003-08-22 07:36:53 +02:00
|
|
|
"""<lart|excuse|insult|praise> <text>
|
2003-04-20 08:26:17 +02:00
|
|
|
|
2003-08-25 22:13:04 +02:00
|
|
|
Adds another record to the data referred to in the first argument. For
|
|
|
|
commands that will later respond with an ACTION (lart and praise), $who
|
|
|
|
should be in the message to show who should be larted or praised. I.e.
|
|
|
|
'dbadd lart slices $who in half with a free AOL cd' would make the bot,
|
|
|
|
when it used that lart against, say, jemfinch, to say '/me slices
|
|
|
|
jemfinch in half with a free AOL cd'
|
2003-04-20 08:26:17 +02:00
|
|
|
"""
|
2003-08-22 07:36:53 +02:00
|
|
|
(table, s) = privmsgs.getArgs(args, needed=2)
|
2003-08-22 23:34:33 +02:00
|
|
|
table = table.lower()
|
|
|
|
try:
|
|
|
|
name = ircdb.users.getUserName(msg.prefix)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'You must register first')
|
|
|
|
return
|
2003-08-22 07:36:53 +02:00
|
|
|
if table == "lart" or table == "praise":
|
|
|
|
if '$who' not in s:
|
|
|
|
irc.error(msg, 'There must be an $who in the lart/praise '\
|
|
|
|
'somewhere.')
|
|
|
|
return
|
|
|
|
elif table not in self._tables:
|
2003-08-22 09:04:47 +02:00
|
|
|
irc.error(msg, '"%s" is not valid. Valid values include %s' % \
|
|
|
|
(table, utils.commaAndify(self._tables)))
|
2003-08-22 07:36:53 +02:00
|
|
|
return
|
2003-03-12 07:26:59 +01:00
|
|
|
cursor = self.db.cursor()
|
2003-08-22 23:34:33 +02:00
|
|
|
sql = """INSERT INTO %ss VALUES (NULL, %%s, %%s, 'nobody',
|
|
|
|
0)""" % table
|
2003-08-31 10:42:07 +02:00
|
|
|
cursor.execute(sql, s, name)
|
2003-03-12 07:26:59 +01:00
|
|
|
self.db.commit()
|
2003-08-22 10:10:58 +02:00
|
|
|
sql = """SELECT id FROM %ss WHERE %s=%%s""" % (table, table)
|
|
|
|
cursor.execute(sql, s)
|
|
|
|
id = cursor.fetchone()[0]
|
|
|
|
response = [conf.replySuccess,'(%s #%s)' % (table,id)]
|
|
|
|
irc.reply(msg, ' '.join(response))
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-08-22 23:34:33 +02:00
|
|
|
def dbremove(self, irc, msg, args):
|
2003-08-22 07:36:53 +02:00
|
|
|
"""<lart|excuse|insult|praise> <id>
|
2003-04-20 08:26:17 +02:00
|
|
|
|
2003-08-22 07:36:53 +02:00
|
|
|
Removes the data, referred to in the first argument, with the id
|
|
|
|
number <id> from the database.
|
2003-04-20 08:26:17 +02:00
|
|
|
"""
|
2003-08-22 07:36:53 +02:00
|
|
|
(table, id) = privmsgs.getArgs(args, needed=2)
|
2003-08-22 23:34:33 +02:00
|
|
|
table = table.lower()
|
|
|
|
try:
|
|
|
|
ircdb.users.getUserName(msg.prefix)
|
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'You must register first')
|
|
|
|
return
|
2003-03-12 07:26:59 +01:00
|
|
|
try:
|
|
|
|
id = int(id)
|
|
|
|
except ValueError:
|
|
|
|
irc.error(msg, 'You must give a numeric id.')
|
|
|
|
return
|
2003-08-22 07:36:53 +02:00
|
|
|
if table not in self._tables:
|
2003-08-22 09:04:47 +02:00
|
|
|
irc.error(msg, '"%s" is not valid. Valid values include %s' % \
|
|
|
|
(table, utils.commaAndify(self._tables)))
|
2003-08-22 07:36:53 +02:00
|
|
|
return
|
2003-03-12 07:26:59 +01:00
|
|
|
cursor = self.db.cursor()
|
2003-08-22 09:04:47 +02:00
|
|
|
sql = """DELETE FROM %ss WHERE id=%%s""" % table
|
|
|
|
cursor.execute(sql, id)
|
2003-03-12 07:26:59 +01:00
|
|
|
self.db.commit()
|
|
|
|
irc.reply(msg, conf.replySuccess)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-08-22 23:34:33 +02:00
|
|
|
def dbnum(self, irc, msg, args):
|
2003-08-22 07:36:53 +02:00
|
|
|
"""<lart|excuse|insult|praise>
|
2003-04-05 12:24:40 +02:00
|
|
|
|
2003-08-22 07:36:53 +02:00
|
|
|
Returns the number of records, of the type specified, currently in
|
|
|
|
the database.
|
2003-04-20 08:26:17 +02:00
|
|
|
"""
|
2003-08-22 07:36:53 +02:00
|
|
|
table = privmsgs.getArgs(args)
|
2003-08-22 23:34:33 +02:00
|
|
|
table = table.lower()
|
2003-08-22 07:36:53 +02:00
|
|
|
if table not in self._tables:
|
2003-08-22 09:04:47 +02:00
|
|
|
irc.error(msg, '"%s" is not valid. Valid values include %s' % \
|
|
|
|
(table, utils.commaAndify(self._tables)))
|
2003-08-22 07:36:53 +02:00
|
|
|
return
|
2003-04-05 12:24:40 +02:00
|
|
|
cursor = self.db.cursor()
|
2003-08-22 09:04:47 +02:00
|
|
|
sql = """SELECT count(*) FROM %ss""" % table
|
|
|
|
cursor.execute(sql)
|
2003-08-22 23:34:33 +02:00
|
|
|
try:
|
|
|
|
total = int(cursor.fetchone()[0])
|
|
|
|
except ValueError:
|
|
|
|
irc.error(msg, 'Unexpected response from database')
|
2003-09-01 07:42:35 +02:00
|
|
|
irc.reply(msg, 'There %s currently %s %s in my database' % \
|
|
|
|
(utils.be(total), total, utils.pluralize(total, table)))
|
2003-08-22 07:36:53 +02:00
|
|
|
|
2003-08-22 23:34:33 +02:00
|
|
|
def dbget(self, irc, msg, args):
|
2003-08-22 07:36:53 +02:00
|
|
|
"""<lart|excuse|insult|praise> <id>
|
|
|
|
|
2003-08-22 08:45:10 +02:00
|
|
|
Gets the record with id <id> from the table specified.
|
2003-08-22 07:36:53 +02:00
|
|
|
"""
|
|
|
|
(table, id) = privmsgs.getArgs(args, needed=2)
|
2003-08-22 08:45:10 +02:00
|
|
|
table = table.lower()
|
2003-08-22 07:36:53 +02:00
|
|
|
try:
|
|
|
|
id = int(id)
|
|
|
|
except ValueError:
|
2003-08-22 08:45:10 +02:00
|
|
|
irc.error(msg, '<id> must be an integer.')
|
2003-08-22 07:36:53 +02:00
|
|
|
return
|
|
|
|
if table not in self._tables:
|
2003-08-22 08:45:10 +02:00
|
|
|
irc.error(msg, '"%s" is not valid. Valid values include %s' % \
|
|
|
|
(table, utils.commaAndify(self._tables)))
|
2003-08-22 07:36:53 +02:00
|
|
|
return
|
|
|
|
cursor = self.db.cursor()
|
2003-08-22 08:45:10 +02:00
|
|
|
sql = """SELECT %s FROM %ss WHERE id=%%s""" % (table, table)
|
|
|
|
cursor.execute(sql, id)
|
2003-08-22 07:36:53 +02:00
|
|
|
if cursor.rowcount == 0:
|
2003-08-22 09:04:47 +02:00
|
|
|
irc.error(msg, 'There is no such %s.' % table)
|
2003-08-22 07:36:53 +02:00
|
|
|
else:
|
2003-08-22 23:34:33 +02:00
|
|
|
reply = cursor.fetchone()[0]
|
|
|
|
irc.reply(msg, reply)
|
|
|
|
|
|
|
|
def dbinfo(self, irc, msg, args):
|
|
|
|
"""<lart|excuse|insult|praise> <id>
|
|
|
|
|
|
|
|
Gets the info for the record with id <id> from the table specified.
|
|
|
|
"""
|
|
|
|
(table, id) = privmsgs.getArgs(args, needed=2)
|
|
|
|
table = table.lower()
|
|
|
|
try:
|
|
|
|
id = int(id)
|
|
|
|
except ValueError:
|
|
|
|
irc.error(msg, '<id> must be an integer.')
|
|
|
|
return
|
|
|
|
if table not in self._tables:
|
|
|
|
irc.error(msg, '"%s" is not valid. Valid values include %s' % \
|
|
|
|
(table, utils.commaAndify(self._tables)))
|
|
|
|
return
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
sql = """SELECT added_by, requested_by, use_count FROM %ss WHERE
|
|
|
|
id=%%s""" % table
|
|
|
|
cursor.execute(sql, id)
|
|
|
|
if cursor.rowcount == 0:
|
|
|
|
irc.error(msg, 'There is no such %s.' % table)
|
|
|
|
else:
|
|
|
|
(add,req,count) = cursor.fetchone()
|
|
|
|
reply = '%s #%s: Created by %s. last requested by %s, requested '\
|
2003-09-01 07:42:35 +02:00
|
|
|
' a total of %s %s' % \
|
|
|
|
(table, id, add, req,
|
|
|
|
count, utils.pluralize(count, 'time'))
|
2003-08-22 23:34:33 +02:00
|
|
|
irc.reply(msg, reply)
|
2003-04-05 12:24:40 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def lart(self, irc, msg, args):
|
2003-09-01 08:11:02 +02:00
|
|
|
"""[<channel>] <text>
|
2003-03-12 07:26:59 +01:00
|
|
|
|
|
|
|
The <channel> argument is only necessary if the message isn't being
|
2003-09-01 08:11:02 +02:00
|
|
|
sent in the channel itself. Uses a lart on <text>.
|
2003-03-12 07:26:59 +01:00
|
|
|
"""
|
|
|
|
channel = privmsgs.getChannel(msg, args)
|
|
|
|
nick = privmsgs.getArgs(args)
|
2003-09-01 08:11:02 +02:00
|
|
|
try:
|
|
|
|
(nick, reason) = map(' '.join, itersplit(nick.split(' '), 'for'.__eq__))
|
|
|
|
except ValueError:
|
|
|
|
nick = ' '.join(args)
|
|
|
|
reason = ""
|
2003-03-12 07:26:59 +01:00
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT id, lart FROM larts
|
|
|
|
WHERE lart NOTNULL
|
|
|
|
ORDER BY random()
|
|
|
|
LIMIT 1""")
|
2003-08-23 07:21:45 +02:00
|
|
|
if cursor.rowcount == 0:
|
2003-08-22 23:34:33 +02:00
|
|
|
irc.error(msg, 'There are currently no available larts.')
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
2003-08-23 07:21:45 +02:00
|
|
|
(id, lart) = cursor.fetchone()
|
|
|
|
sql = """UPDATE larts SET use_count=use_count+1, requested_by=%s
|
|
|
|
WHERE id=%s"""
|
|
|
|
cursor.execute(sql, msg.prefix, id)
|
|
|
|
if nick == irc.nick or nick == 'me':
|
|
|
|
lartee = msg.nick
|
|
|
|
else:
|
|
|
|
lartee = nick
|
|
|
|
lart = lart.replace("$who", lartee)
|
2003-09-01 08:11:02 +02:00
|
|
|
if len(reason) > 0:
|
|
|
|
irc.queueMsg(ircmsgs.action(channel, '%s for %s (#%s)' %\
|
|
|
|
(lart, reason, id)))
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.action(channel, '%s (#%s)' % (lart, id)))
|
2003-08-27 09:45:48 +02:00
|
|
|
raise callbacks.CannotNest
|
2003-03-12 07:26:59 +01:00
|
|
|
|
2003-08-22 23:34:33 +02:00
|
|
|
def praise(self, irc, msg, args):
|
2003-09-01 08:11:02 +02:00
|
|
|
"""[<channel>] <text>
|
2003-08-22 23:34:33 +02:00
|
|
|
|
|
|
|
The <channel> argument is only necessary if the message isn't being
|
2003-09-01 08:11:02 +02:00
|
|
|
sent in the channel itself. Uses a praise on <text>.
|
2003-08-22 23:34:33 +02:00
|
|
|
"""
|
|
|
|
channel = privmsgs.getChannel(msg, args)
|
|
|
|
nick = privmsgs.getArgs(args)
|
2003-09-01 08:11:02 +02:00
|
|
|
try:
|
|
|
|
(nick, reason) = map(' '.join, itersplit(nick.split(' '), 'for'.__eq__))
|
|
|
|
except ValueError:
|
|
|
|
nick = ' '.join(args)
|
|
|
|
reason = ""
|
2003-08-22 23:34:33 +02:00
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT id, praise FROM praises
|
|
|
|
WHERE praise NOTNULL
|
|
|
|
ORDER BY random()
|
|
|
|
LIMIT 1""")
|
2003-08-23 07:21:45 +02:00
|
|
|
if cursor.rowcount == 0:
|
2003-08-22 23:34:33 +02:00
|
|
|
irc.error(msg, 'There are currently no available praises.')
|
|
|
|
else:
|
2003-08-23 07:21:45 +02:00
|
|
|
(id, praise) = cursor.fetchone()
|
|
|
|
sql = """UPDATE praises SET use_count=use_count+1, requested_by=%s
|
|
|
|
WHERE id=%s"""
|
|
|
|
cursor.execute(sql, msg.prefix, id)
|
|
|
|
self.db.commit()
|
|
|
|
if nick == irc.nick or nick == 'me':
|
|
|
|
praisee = msg.nick
|
|
|
|
else:
|
|
|
|
praisee = nick
|
|
|
|
praise = praise.replace("$who", praisee)
|
2003-09-01 08:11:02 +02:00
|
|
|
if len(reason) > 0:
|
|
|
|
irc.queueMsg(ircmsgs.action(channel, '%s for %s (#%s)' %\
|
|
|
|
(praise, reason, id)))
|
|
|
|
else:
|
|
|
|
irc.queueMsg(ircmsgs.action(channel, '%s (#%s)' % (praise, id)))
|
2003-08-27 09:45:48 +02:00
|
|
|
raise callbacks.CannotNest
|
2003-08-22 23:34:33 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
def addword(self, irc, msg, args):
|
2003-04-20 08:26:17 +02:00
|
|
|
"""<word>
|
|
|
|
|
|
|
|
Adds a word to the database of words. This database is used for the
|
|
|
|
anagram and crossword commands.
|
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
word = privmsgs.getArgs(args)
|
|
|
|
if word.translate(string.ascii, string.ascii_letters) != '':
|
|
|
|
irc.error(msg, 'Word must contain only letters')
|
|
|
|
addWord(self.db, word, commit=True)
|
|
|
|
irc.reply(msg, conf.replySuccess)
|
|
|
|
|
|
|
|
def anagram(self, irc, msg, args):
|
2003-04-20 08:26:17 +02:00
|
|
|
"""<word>
|
|
|
|
|
|
|
|
Using the words database, determines if a word has any anagrams.
|
|
|
|
"""
|
2003-03-12 07:26:59 +01:00
|
|
|
word = privmsgs.getArgs(args).strip().lower()
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT words.word FROM words
|
|
|
|
WHERE sorted_word_id=(
|
|
|
|
SELECT sorted_word_id FROM words
|
|
|
|
WHERE word=%s)""", word)
|
|
|
|
words = map(lambda t: t[0], cursor.fetchall())
|
|
|
|
try:
|
|
|
|
words.remove(word)
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
if words:
|
|
|
|
irc.reply(msg, ', '.join(words))
|
|
|
|
else:
|
|
|
|
irc.reply(msg, 'That word has no anagrams that I know of.')
|
2003-08-14 12:51:42 +02:00
|
|
|
|
|
|
|
def zipcode(self, irc, msg, args):
|
|
|
|
"""<zipcode>
|
|
|
|
|
|
|
|
Returns the City, ST for a given zipcode.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
zipcode = int(privmsgs.getArgs(args))
|
|
|
|
except ValueError:
|
2003-08-15 05:00:10 +02:00
|
|
|
# Must not be an integer. Try zipcodefor.
|
|
|
|
try:
|
|
|
|
self.zipcodefor(irc, msg, args)
|
|
|
|
return
|
|
|
|
except:
|
|
|
|
pass
|
2003-08-14 12:51:42 +02:00
|
|
|
irc.error(msg, 'Invalid zipcode.')
|
|
|
|
return
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT city, state
|
|
|
|
FROM zipcodes
|
|
|
|
WHERE zipcode=%s""", zipcode)
|
|
|
|
if cursor.rowcount == 0:
|
|
|
|
irc.reply(msg, 'I have nothing for that zipcode.')
|
|
|
|
else:
|
|
|
|
(city, state) = cursor.fetchone()
|
|
|
|
irc.reply(msg, '%s, %s' % (city, state))
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-08-14 12:51:42 +02:00
|
|
|
|
|
|
|
def zipcodefor(self, irc, msg, args):
|
|
|
|
"""<city> <state>
|
|
|
|
|
|
|
|
Returns the zipcode for a <city> in <state>.
|
|
|
|
"""
|
|
|
|
(city, state) = privmsgs.getArgs(args, needed=2)
|
2003-08-15 05:00:10 +02:00
|
|
|
state = args.pop()
|
|
|
|
city = ' '.join(args)
|
2003-08-14 12:51:42 +02:00
|
|
|
if '%' in msg.args[1]:
|
|
|
|
irc.error(msg, '% wildcard is not allowed. Use _ instead.')
|
|
|
|
return
|
|
|
|
city = city.rstrip(',') # In case they did "City, ST"
|
|
|
|
cursor = self.db.cursor()
|
|
|
|
cursor.execute("""SELECT zipcode
|
|
|
|
FROM zipcodes
|
|
|
|
WHERE city LIKE %s AND
|
|
|
|
state LIKE %s""", city, state)
|
|
|
|
if cursor.rowcount == 0:
|
2003-08-15 05:00:10 +02:00
|
|
|
irc.reply(msg, 'I have no zipcode for %r, %r.' % \
|
|
|
|
(city, state))
|
2003-08-14 12:51:42 +02:00
|
|
|
elif cursor.rowcount == 1:
|
|
|
|
irc.reply(msg, str(cursor.fetchone()[0]))
|
|
|
|
else:
|
|
|
|
zipcodes = [str(t[0]) for t in cursor.fetchall()]
|
|
|
|
ircutils.shrinkList(zipcodes, ', ', 400)
|
|
|
|
if len(zipcodes) < cursor.rowcount:
|
|
|
|
random.shuffle(zipcodes)
|
|
|
|
irc.reply(msg, '(%s shown of %s): %s' % \
|
|
|
|
(len(zipcodes), cursor.rowcount, ', '.join(zipcodes)))
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-03-12 07:26:59 +01:00
|
|
|
Class = FunDB
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
if len(sys.argv) < 3:
|
2003-08-22 23:34:33 +02:00
|
|
|
print 'Usage: %s <words|larts|excuses|insults|zipcodes> file'\
|
|
|
|
' [<console>]' % sys.argv[0]
|
2003-03-12 07:26:59 +01:00
|
|
|
sys.exit(-1)
|
|
|
|
category = sys.argv[1]
|
|
|
|
filename = sys.argv[2]
|
2003-08-22 23:34:33 +02:00
|
|
|
if len(sys.argv) == 4:
|
|
|
|
added_by = sys.argv[3]
|
|
|
|
else:
|
|
|
|
added_by = '<console>'
|
2003-03-12 07:26:59 +01:00
|
|
|
db = makeDb(dbFilename)
|
|
|
|
cursor = db.cursor()
|
|
|
|
for line in open(filename, 'r'):
|
|
|
|
line = line.rstrip()
|
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
if category == 'words':
|
|
|
|
cursor.execute("""PRAGMA cache_size = 50000""")
|
|
|
|
addWord(db, line)
|
|
|
|
elif category == 'larts':
|
2003-08-11 19:16:03 +02:00
|
|
|
if '$who' in line:
|
2003-08-22 23:34:33 +02:00
|
|
|
cursor.execute("""INSERT INTO larts VALUES (NULL, %s,
|
|
|
|
%s, nobody, 0)""", line, added_by)
|
2003-03-12 07:26:59 +01:00
|
|
|
else:
|
|
|
|
print 'Invalid lart: %s' % line
|
2003-08-22 23:34:33 +02:00
|
|
|
elif category == 'praises':
|
|
|
|
if '$who' in line:
|
|
|
|
cursor.execute("""INSERT INTO praises VALUES (NULL, %s,
|
|
|
|
%s, nobody, 0)""", line, added_by)
|
|
|
|
else:
|
|
|
|
print 'Invalid praise: %s' % line
|
2003-03-12 07:26:59 +01:00
|
|
|
elif category == 'insults':
|
2003-08-22 23:34:33 +02:00
|
|
|
cursor.execute("""INSERT INTO insults VALUES (NULL, %s, %s,
|
|
|
|
nobody, 0)""", line, added_by)
|
2003-03-12 07:26:59 +01:00
|
|
|
elif category == 'excuses':
|
2003-08-22 23:34:33 +02:00
|
|
|
cursor.execute("""INSERT INTO excuses VALUES (NULL, %s, %s,
|
|
|
|
nobody, 0)""", line, added_by)
|
2003-08-14 12:51:42 +02:00
|
|
|
elif category == 'zipcodes':
|
|
|
|
(zipcode, cityState) = line.split(':')
|
|
|
|
if '-' in zipcode:
|
|
|
|
(begin, end) = map(int, zipcode.split('-'))
|
|
|
|
zipcodes = range(begin, end+1)
|
|
|
|
(zipcode, _) = zipcode.split('-')
|
|
|
|
else:
|
|
|
|
zipcodes = [int(zipcode)]
|
|
|
|
cityStateList = cityState.split(', ')
|
|
|
|
state = cityStateList.pop()
|
|
|
|
city = ', '.join(cityStateList)
|
|
|
|
for zipcode in zipcodes:
|
|
|
|
cursor.execute("""INSERT INTO zipcodes VALUES (%s, %s, %s)""",
|
|
|
|
zipcode, city, state)
|
2003-03-12 07:26:59 +01:00
|
|
|
db.commit()
|
|
|
|
db.close()
|
2003-08-20 18:26:23 +02:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|