nxy/bot/plugins/mcmaniac.py

73 lines
2.0 KiB
Python
Raw Normal View History

2017-05-15 22:26:10 +00:00
# -*- coding: utf-8 -*-
2017-05-30 11:51:45 +00:00
import irc3
2017-05-15 22:26:10 +00:00
from docopt import Dict as DocOptDict
2017-05-16 06:54:47 +00:00
from irc3.plugins.command import command
2017-05-16 10:06:29 +00:00
from irc3.utils import IrcString
from psycopg2 import Error
2017-05-15 22:26:10 +00:00
from . import DatabasePlugin
from ..utils import parse_int
@irc3.plugin
2017-05-15 22:26:10 +00:00
class McManiac(DatabasePlugin):
requires = ['irc3.plugins.command',
2017-07-07 00:11:20 +00:00
'bot.plugins.storage']
2017-05-15 22:26:10 +00:00
@command(options_first=True)
def mcmaniac(self, mask: IrcString, target: IrcString, args: DocOptDict):
"""Get a random McManiaC or by index.
2017-05-15 22:26:10 +00:00
%%mcmaniac [<index>]
"""
index = args.get('<index>')
if index:
index = parse_int(index)
if not index:
return
2017-07-07 00:11:20 +00:00
index, order = index
order = 'id {order}'.format(order=order)
offset = 'offset %s'
2017-05-16 05:45:10 +00:00
else:
order = 'random()'
offset = ''
# Fetch result from database
self.cur.execute('''
select
item,
rank() over (order by id),
count(*) over (rows between unbounded preceding
and unbounded following) as total
from
mcmaniacs
order by
{order}
limit
1
{offset}
'''.format(order=order, offset=offset), [index])
result = self.cur.fetchone()
if result:
return '[{rank}/{total}] {item}'.format(**result)
# TODO: fix regex ("McFooiaC McBariaC" adds "Mc\S+iaC")
@irc3.event(r'^:(?P<mask>\S+) PRIVMSG \S+ :.*(?P<item>Mc\S+iaC).*')
2017-05-30 14:13:20 +00:00
def save(self, mask: str, item: str):
if IrcString(mask).nick != self.bot.nick:
try:
# Insert into database
self.cur.execute('''
insert into
mcmaniacs (item)
values
(%s)
''', [item])
self.con.commit()
except Error:
# Rollback transaction on error
self.con.rollback()