From f583072edc6d7ef55ec1cd4d23440620aaed335c Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 9 Mar 2017 12:51:45 +0100 Subject: [PATCH] Updated basicbot to use the new methods --- basicbot.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/basicbot.py b/basicbot.py index 9d116465..8161e0f8 100644 --- a/basicbot.py +++ b/basicbot.py @@ -1,6 +1,4 @@ import asyncio -import json - loop = asyncio.get_event_loop() import telegram import random @@ -8,6 +6,7 @@ import datetime import async_timeout import aiohttp import royalbotconfig +import json b = telegram.Bot(royalbotconfig.telegram_token) @@ -40,7 +39,7 @@ Puoi visualizzare il diario [qui](https://royal.steffo.me/diario.htm), leggere u Sintassi: `/leggi `""" if len(arguments) == 0 or len(arguments) > 1: - await update.message.chat.send_message(bot, "⚠ Sintassi del comando non valida.\n`/leggi `") + await update.message.reply(bot, "⚠ Sintassi del comando non valida.\n`/leggi `") return file = open("diario.txt", "r") entries = file.read().split("\n") @@ -52,7 +51,7 @@ Sintassi: `/leggi `""" entry = entries[entry_number].split("|", 1) date = datetime.datetime.fromtimestamp(entry[0]).isoformat() text = entry[1] - await update.message.chat.send_message(bot, f"Frase #{entry_number} | {date}\n{text}") + await update.message.reply(bot, f"Frase #{entry_number} | {date}\n{text}") async def help(bot, update, arguments): @@ -60,14 +59,14 @@ async def help(bot, update, arguments): Sintassi: `/help [comando]`""" if len(arguments) == 0: - await update.message.chat.send_message(bot, help.__doc__) + await update.message.reply(bot, help.__doc__) elif len(arguments) > 1: - await update.message.chat.send_message(bot, "⚠ Sintassi del comando non valida.\n`/help [comando]`") + await update.message.reply(bot, "⚠ Sintassi del comando non valida.\n`/help [comando]`") else: if arguments[0] in b.commands: - await update.message.chat.send_message(bot, b.commands[arguments[0]].__doc__) + await update.message.reply(bot, b.commands[arguments[0]].__doc__) else: - await update.message.chat.send_message(bot, "⚠ Il comando specificato non esiste.") + await update.message.reply(bot, "⚠ Il comando specificato non esiste.") async def discord(bot, update, arguments): @@ -80,7 +79,7 @@ Sintassi: `/discord `""" if len(arguments) == 0: await update.message.chat.send_message(bot, "⚠ Sintassi del comando non valida.\n`/discord `") return - username = f"{update.message.sent_from}" + username = str(update.message.sent_from) message = " ".join(arguments) # Parameters to send params = { @@ -101,15 +100,16 @@ Sintassi: `/discord `""" if response.status != 204: # Request failed # Answer on Telegram - await update.message.chat.send_message(bot, "⚠ L'invio del messaggio è fallito. Oops!") + await update.message.reply(bot, "⚠ L'invio del messaggio è fallito. Oops!") # TODO: handle Discord webhooks errors raise Exception("Qualcosa è andato storto durante l'invio del messaggio a Discord.") # Answer on Telegram - await update.message.chat.send_message(bot, "Richiesta inviata.") + await update.message.reply(bot, "Richiesta inviata.") -b.commands["leggi"] = leggi -b.commands["diario"] = diario -b.commands["discord"] = discord -b.commands["help"] = help -b.run() \ No newline at end of file +if __name__ == "__main__": + b.commands["leggi"] = leggi + b.commands["diario"] = diario + b.commands["discord"] = discord + b.commands["help"] = help + b.run() \ No newline at end of file