Quote properly returns
This commit is contained in:
parent
eda71bd725
commit
9cfadac1b2
|
@ -60,8 +60,8 @@ def get_quote(num):
|
||||||
pass
|
pass
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
q = quote.get(num)
|
return quote.get(num)
|
||||||
return html.escape(q)
|
|
||||||
|
|
||||||
|
|
||||||
def process_chat(data):
|
def process_chat(data):
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from datetime import datetime
|
from datetime import datetime, timezone
|
||||||
import random
|
import random
|
||||||
import sqlite3
|
import sqlite3
|
||||||
from ameliabot.logger import logging
|
from ameliabot.logger import logging
|
||||||
|
@ -6,72 +6,62 @@ from ameliabot.logger import logging
|
||||||
|
|
||||||
class Quote:
|
class Quote:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# TODO: Generalise the db connection so that other parts can use it
|
|
||||||
self.conn = ""
|
|
||||||
self.__init_table()
|
self.__init_table()
|
||||||
self.num_quotes = self._get_num_quotes()
|
self.num_quotes = self._get_num_quotes()
|
||||||
logging.info("Quote subsystem online")
|
logging.info("Quote subsystem online")
|
||||||
|
|
||||||
def insert(self, owner, submitter, text):
|
def insert(self, owner, submitter, text):
|
||||||
|
conn = self.__connect()
|
||||||
text = text.replace("'", "''")
|
text = text.replace("'", "''")
|
||||||
self.conn.execute('''
|
conn.execute('''
|
||||||
INSERT INTO quotes (submitter, text, timestamp)
|
INSERT INTO quotes (submitter, text, timestamp)
|
||||||
VALUES ('{}', E'{}', {})'''.format(
|
VALUES ('{}', '{}', {})'''.format(
|
||||||
submitter, text, datetime.now().replace(tzinfo=timezone.utc)))
|
submitter, text, datetime.now().replace(tzinfo=timezone.utc)))
|
||||||
self.num_quotes += 1
|
self.num_quotes += 1
|
||||||
logging.debug("Quote number %s inserted" % self.num_quotes)
|
logging.debug("Quote number %s inserted" % self.num_quotes)
|
||||||
|
|
||||||
def get(self, arg=None):
|
def get(self, arg=None):
|
||||||
|
conn = self.__connect()
|
||||||
if arg:
|
if arg:
|
||||||
cur = self.conn.cursor()
|
ret = "SELECT id, text, timestamp FROM quotes WHERE "
|
||||||
ret = "SELECT number, text, timestamp FROM quotes WHERE "
|
|
||||||
try:
|
try:
|
||||||
arg = int(arg)
|
if int(arg) > self.num_quotes:
|
||||||
if arg > self.num_quotes:
|
|
||||||
return "No quote matching that number."
|
return "No quote matching that number."
|
||||||
ret += "number = {}".format(arg)
|
ret += "id = %s" % arg
|
||||||
except ValueError:
|
except ValueError:
|
||||||
ret += "text like '%{}%'".format(arg.lower())
|
ret += "text like '%{}%'".format(arg.lower())
|
||||||
|
|
||||||
cur.execute(ret)
|
quote = conn.execute(ret)
|
||||||
quotes = cur.fetchall()
|
return self._format(list(quote.fetchone()))
|
||||||
cur.close()
|
|
||||||
|
|
||||||
return self._format(quotes)
|
|
||||||
else:
|
else:
|
||||||
return self.get(random.randint(0, self.num_quotes))
|
return self.get(random.randint(0, self.num_quotes))
|
||||||
|
|
||||||
def _get_num_quotes(self):
|
def _get_num_quotes(self):
|
||||||
cur = self.conn.cursor()
|
conn = self.__connect()
|
||||||
try:
|
try:
|
||||||
cur.execute("SELECT COUNT(id) FROM quotes")
|
num = conn.execute("SELECT COUNT(id) FROM quotes")
|
||||||
except sqlite3.OperationalError:
|
except sqlite3.OperationalError:
|
||||||
return 0
|
return 0
|
||||||
return cur.fetchone()[0]
|
return int(num.fetchone()[0])
|
||||||
|
|
||||||
def _format(self, quotes):
|
def _format(self, quote):
|
||||||
if len(quotes) >= 1:
|
num, text, timestamp = quote
|
||||||
data = quotes[random.randint(0, len(quotes)-1)]
|
timestamp = datetime.strptime(timestamp, '%Y-%m-%d %H:%M:%S.%f%z')
|
||||||
else:
|
|
||||||
try:
|
|
||||||
data = quotes[0]
|
|
||||||
except IndexError:
|
|
||||||
return "No quote."
|
|
||||||
return "{}. {}, {}".format(
|
return "{}. {}, {}".format(
|
||||||
data[0], data[1], datetime.strftime(data[2], '%Y'))
|
num, text, datetime.strftime(timestamp, '%Y'))
|
||||||
|
|
||||||
def __connect(self):
|
def connect(self):
|
||||||
self.conn = sqlite3.connect("data/quote.db")
|
return sqlite3.connect("data/quote.db")
|
||||||
|
|
||||||
def __init_table(self):
|
def __init_table(self):
|
||||||
try:
|
try:
|
||||||
self.__connect()
|
conn = self.__connect()
|
||||||
except sqlite3.OperationalError:
|
except sqlite3.OperationalError:
|
||||||
import os
|
import os
|
||||||
os.makedirs("data")
|
os.makedirs("data")
|
||||||
self.__connect()
|
self.__init_table()
|
||||||
|
|
||||||
self.conn.execute('''
|
conn.execute('''
|
||||||
CREATE TABLE IF NOT EXISTS quotes (
|
CREATE TABLE IF NOT EXISTS quotes (
|
||||||
id INTEGER PRIMARY KEY, submitter TEXT,
|
id INTEGER PRIMARY KEY, submitter TEXT,
|
||||||
text TEXT, timestamp TEXT
|
text TEXT, timestamp TEXT
|
||||||
|
|
Loading…
Reference in New Issue