2018-10-17 16:52:21 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import logging
|
2018-10-22 12:01:49 +02:00
|
|
|
import telegram
|
2018-10-24 15:48:02 +02:00
|
|
|
import sqlite3
|
2018-10-17 16:52:21 +02:00
|
|
|
from telegram.ext import Updater, CommandHandler
|
|
|
|
|
|
|
|
try:
|
|
|
|
import config
|
|
|
|
except ImportError:
|
|
|
|
print("Missing Config. Exiting.")
|
|
|
|
exit()
|
|
|
|
|
|
|
|
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - \
|
|
|
|
%(message)s', level=logging.INFO)
|
|
|
|
|
|
|
|
|
|
|
|
def start(bot, update):
|
|
|
|
chat_id = update.message.chat_id
|
2018-10-22 12:01:49 +02:00
|
|
|
name = str(update.message.from_user.first_name)
|
|
|
|
if update.message.from_user.last_name:
|
|
|
|
name += " " + str(update.message.from_user.last_name)
|
2018-10-17 16:52:21 +02:00
|
|
|
text = f"Hello {name}!\n" + \
|
|
|
|
"Welcome to Questable. To get started, check /help."
|
2018-10-22 12:01:49 +02:00
|
|
|
custom_keyboard = [
|
2018-10-24 21:21:48 +02:00
|
|
|
['Add Quest', 'Add Side-quest'],
|
2018-10-22 12:01:49 +02:00
|
|
|
['List Quests', 'List Side-quests']
|
|
|
|
]
|
|
|
|
reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)
|
|
|
|
bot.send_message(chat_id=chat_id, text=text, reply_markup=reply_markup)
|
2018-10-17 16:52:21 +02:00
|
|
|
|
|
|
|
|
2018-10-24 15:48:02 +02:00
|
|
|
db = sqlite3.connect("questable.db")
|
|
|
|
cursor = db.cursor()
|
|
|
|
# Set up tables
|
|
|
|
queries = [
|
2018-10-27 11:57:13 +02:00
|
|
|
("CREATE TABLE IF NOT EXISTS quests(chat_id int NOT NULL, qid int NOT"
|
2018-10-24 15:48:02 +02:00
|
|
|
" NULL, name varchar(255) NOT NULL, difficulty int NOT NULL, "
|
2018-10-27 11:57:13 +02:00
|
|
|
"importance int NOT NULL, date int NOT NULL, state int NOT NULL "
|
|
|
|
"DEFAULT 0, UNIQUE(chat_id, qid));"),
|
2018-10-24 15:48:02 +02:00
|
|
|
|
2018-10-27 11:57:13 +02:00
|
|
|
("CREATE TABLE IF NOT EXISTS side_quests(chat_id int NOT NULL, qid int"
|
2018-10-24 15:48:02 +02:00
|
|
|
" NOT NULL, name varchar(255) NOT NULL, difficulty int NOT NULL, "
|
2018-10-27 11:57:13 +02:00
|
|
|
"importance int NOT NULL, date int NOT NULL, state int NOT NULL "
|
|
|
|
"DEFAULT 0, UNIQUE(chat_id, qid));"),
|
2018-10-24 15:48:02 +02:00
|
|
|
|
2018-10-27 11:57:13 +02:00
|
|
|
("CREATE TABLE IF NOT EXISTS points(chat_id int PRIMARY KEY, points "
|
2018-10-24 15:48:02 +02:00
|
|
|
"int);"),
|
|
|
|
|
2018-10-27 11:57:13 +02:00
|
|
|
("CREATE TABLE IF NOT EXISTS state(chat_id int PRIMARY KEY, state "
|
2018-10-24 15:48:02 +02:00
|
|
|
"varchar(10));"),
|
|
|
|
]
|
|
|
|
for query in queries:
|
|
|
|
cursor.execute(query)
|
|
|
|
db.commit()
|
|
|
|
|
2018-10-17 16:52:21 +02:00
|
|
|
updater = Updater(token=config.api_key)
|
|
|
|
dispatcher = updater.dispatcher
|
|
|
|
|
|
|
|
start_handler = CommandHandler('start', start)
|
|
|
|
dispatcher.add_handler(start_handler)
|
|
|
|
|
|
|
|
updater.start_polling()
|