This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/disabled_stuff/factoids.py

163 lines
4.4 KiB
Python
Raw Permalink Normal View History

2012-05-09 21:51:44 +02:00
# Written by Scaevolus 2010
2012-05-09 21:47:57 +02:00
import string
2011-11-20 10:23:31 +01:00
import re
2014-02-14 04:36:57 +01:00
from util import hook, http, text, pyexec
re_lineends = re.compile(r'[\r\n]*')
2011-11-20 10:23:31 +01:00
db_ready = False
# some simple "shortcodes" for formatting purposes
shortcodes = {
2013-09-04 12:30:04 +02:00
'[b]': '\x02',
'[/b]': '\x02',
'[u]': '\x1F',
'[/u]': '\x1F',
'[i]': '\x16',
'[/i]': '\x16'}
2011-11-20 10:23:31 +01:00
def db_init(db):
global db_ready
if not db_ready:
db.execute("create table if not exists mem(word, data, nick,"
" primary key(word))")
db.commit()
db_ready = True
2011-11-20 10:23:31 +01:00
def get_memory(db, word):
2012-03-23 01:32:48 +01:00
row = db.execute("select data from mem where word=lower(?)",
[word]).fetchone()
2011-11-20 10:23:31 +01:00
if row:
return row[0]
else:
return None
2012-02-29 09:29:53 +01:00
2013-08-01 09:03:40 +02:00
@hook.command("r", permissions=["addfactoid"])
@hook.command(permissions=["addfactoid"])
2013-09-04 12:30:04 +02:00
def remember(inp, nick='', db=None, notice=None):
"""remember <word> [+]<data> -- Remembers <data> with <word>. Add +
to <data> to append."""
2011-11-20 10:23:31 +01:00
db_init(db)
append = False
try:
2012-09-04 22:09:08 +02:00
word, data = inp.split(None, 1)
2011-11-20 10:23:31 +01:00
except ValueError:
return remember.__doc__
2012-09-04 22:09:08 +02:00
old_data = get_memory(db, word)
2011-11-20 10:23:31 +01:00
2012-09-04 22:09:08 +02:00
if data.startswith('+') and old_data:
2011-11-20 10:23:31 +01:00
append = True
2012-09-04 22:09:08 +02:00
# remove + symbol
new_data = data[1:]
# append new_data to the old_data
if len(new_data) > 1 and new_data[1] in (string.punctuation + ' '):
data = old_data + new_data
2011-11-20 10:23:31 +01:00
else:
2012-09-04 22:09:08 +02:00
data = old_data + ' ' + new_data
2011-11-20 10:23:31 +01:00
db.execute("replace into mem(word, data, nick) values"
2012-09-04 22:09:08 +02:00
" (lower(?),?,?)", (word, data, nick))
2011-11-20 10:23:31 +01:00
db.commit()
2012-09-04 22:09:08 +02:00
if old_data:
2011-11-20 10:23:31 +01:00
if append:
2013-09-05 03:46:49 +02:00
notice("Appending \x02{}\x02 to \x02{}\x02".format(new_data, old_data))
2011-11-20 10:23:31 +01:00
else:
2013-09-05 03:46:49 +02:00
notice('Remembering \x02{}\x02 for \x02{}\x02. Type ?{} to see it.'.format(data, word, word))
notice('Previous data was \x02{}\x02'.format(old_data))
2011-11-20 10:23:31 +01:00
else:
2013-09-05 03:46:49 +02:00
notice('Remembering \x02{}\x02 for \x02{}\x02. Type ?{} to see it.'.format(data, word, word))
2011-11-20 10:23:31 +01:00
2012-02-29 09:29:53 +01:00
2013-08-01 09:03:40 +02:00
@hook.command("f", permissions=["delfactoid"])
@hook.command(permissions=["delfactoid"])
2013-09-04 12:30:04 +02:00
def forget(inp, db=None, notice=None):
"""forget <word> -- Forgets a remembered <word>."""
2011-11-20 10:23:31 +01:00
db_init(db)
2012-02-02 14:05:11 +01:00
data = get_memory(db, inp)
2011-11-20 10:23:31 +01:00
if data:
db.execute("delete from mem where word=lower(?)",
2012-02-02 14:05:11 +01:00
[inp])
2011-11-20 10:23:31 +01:00
db.commit()
notice('"%s" has been forgotten.' % data.replace('`', "'"))
2012-02-02 14:05:11 +01:00
return
2011-11-20 10:23:31 +01:00
else:
2012-02-02 14:05:11 +01:00
notice("I don't know about that.")
return
2011-11-20 10:23:31 +01:00
2012-08-20 22:32:12 +02:00
@hook.command
2012-05-13 07:21:03 +02:00
def info(inp, notice=None, db=None):
2013-09-04 12:30:04 +02:00
"""info <factoid> -- Shows the source of a factoid."""
2012-05-13 07:21:03 +02:00
db_init(db)
# attempt to get the factoid from the database
data = get_memory(db, inp.strip())
if data:
notice(data)
else:
2012-08-20 22:32:12 +02:00
notice("Unknown Factoid.")
2012-05-13 07:21:03 +02:00
2012-02-29 09:29:53 +01:00
2011-11-20 10:23:31 +01:00
@hook.regex(r'^\? ?(.+)')
2013-10-01 05:55:18 +02:00
def factoid(inp, message=None, db=None, bot=None, action=None, conn=None, input=None):
2014-02-14 04:49:41 +01:00
"""?<word> -- Shows what data is associated with <word>."""
2012-04-01 05:39:34 +02:00
try:
2012-04-02 18:17:55 +02:00
prefix_on = bot.config["plugins"]["factoids"].get("prefix", False)
2012-04-01 05:39:34 +02:00
except KeyError:
prefix_on = False
2011-11-20 10:23:31 +01:00
db_init(db)
2012-08-20 22:32:12 +02:00
# split up the input
split = inp.group(1).strip().split(" ")
factoid_id = split[0]
2012-08-20 22:32:12 +02:00
if len(split) >= 1:
arguments = " ".join(split[1:])
else:
arguments = ""
2011-11-20 10:23:31 +01:00
data = get_memory(db, factoid_id)
2012-05-13 03:50:28 +02:00
2011-11-20 10:23:31 +01:00
if data:
2012-09-10 02:12:45 +02:00
# factoid preprocessors
if data.startswith("<py>"):
2012-09-10 02:12:45 +02:00
code = data[4:].strip()
2013-09-05 03:46:49 +02:00
variables = 'input="""{}"""; nick="{}"; chan="{}"; bot_nick="{}";'.format(arguments.replace('"', '\\"'),
2014-02-14 05:03:08 +01:00
input.nick, input.chan,
input.conn.nick)
2013-12-12 07:00:14 +01:00
result = pyexec.eval_py(variables + code)
else:
result = data
2012-08-20 22:32:12 +02:00
2012-09-10 02:12:45 +02:00
# factoid postprocessors
2012-11-12 11:46:38 +01:00
result = text.multiword_replace(result, shortcodes)
if result.startswith("<act>"):
result = result[5:].strip()
2013-10-01 04:41:54 +02:00
action(result)
elif result.startswith("<url>"):
url = result[5:].strip()
try:
2013-10-01 05:55:18 +02:00
message(http.get(url))
except http.HttpError:
2013-10-01 05:55:18 +02:00
message("Could not fetch URL.")
else:
if prefix_on:
2013-10-01 05:55:18 +02:00
message("\x02[{}]:\x02 {}".format(factoid_id, result))
else:
2013-10-01 05:55:18 +02:00
message(result)