from telegram import Update from telegram.constants import ParseMode from telegram.error import BadRequest from telegram.ext import ContextTypes, ConversationHandler from dbstore.peewee_store import get_user_access_key from config import * async def start_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: await update.message.reply_text(PROMPT_START, parse_mode=ParseMode.MARKDOWN) user_access_key = get_user_access_key(str(update.effective_user.id)) # TODO # verify user access key still valid if len(user_access_key) == 0: await update.message.reply_text(PROMPT_FEDI_LOGIN_WHERE_IS_INSTANCE, parse_mode=ParseMode.MARKDOWN) return FEDI_LOGIN else: await update.message.reply_text(PROMPT_CHOOSE_ACTION, reply_markup=MAIN_MENU) return WAIT_LOCATION async def fedi_login_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: await update.message.reply_text(PROMPT_FEDI_LOGIN_WHERE_IS_INSTANCE, parse_mode=ParseMode.MARKDOWN) return FEDI_LOGIN async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(PROMPT_HELP, parse_mode=ParseMode.MARKDOWN, reply_markup=MAIN_MENU) async def tos_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(PROMPT_TOS, parse_mode=ParseMode.HTML, reply_markup=MAIN_MENU) async def list_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(PROMPT_LIST, parse_mode=ParseMode.HTML, reply_markup=MAIN_MENU) async def logout_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(PROMPT_LOGOUT, parse_mode=ParseMode.HTML, reply_markup=MAIN_MENU) async def toggle_visibility_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: await update.message.reply_text(PROMPT_TOGGLE_VIS, parse_mode=ParseMode.HTML, reply_markup=MAIN_MENU) async def cancel_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: for prompt in [PROMPT_LOCATION_KEYWORD, PROMPT_WAIT_LOCATION_CONFIRMATION, PROMPT_ADD_COMMENT, PROMPT_ADD_MEDIA]: try: if context.user_data.get(prompt): await context.bot.delete_message(chat_id=update.message.chat_id, message_id=context.user_data[prompt]) except BadRequest as e: if "not found" in str(e.message): pass except Exception as e: print(e) await update.message.reply_text(text=PROMPT_CANCELED, reply_markup=MAIN_MENU) context.user_data.clear() return ConversationHandler.END