1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/basicbot.py

74 lines
2.7 KiB
Python
Raw Normal View History

2017-02-27 22:16:42 +00:00
import asyncio
loop = asyncio.get_event_loop()
import telegram
2017-03-05 17:14:45 +00:00
import random
import datetime
b = telegram.Bot("lul")
2017-02-27 22:16:42 +00:00
async def diario(bot, update, arguments):
2017-03-05 17:14:45 +00:00
"""Aggiungi una frase al diario Royal Games.
Sintassi: `/diario <frase>`"""
# Sì, ho copiato la funzione dal bot vecchio
2017-03-05 17:14:45 +00:00
if len(arguments) == 0:
await update.message.chat.send_message(bot, "⚠ Sintassi del comando non valida.\n`/diario <random | numerofrase>`")
return
entry = " ".join(arguments)
if not entry.isprintable():
await update.message.chat.send_message(bot, "⚠ La frase che stai provando ad aggiungere contiene caratteri non ASCII, quindi non è stata aggiunta.\nToglili e riprova!")
return
entry = entry.replace("\n", " ")
time = update.message.date.timestamp()
# TODO: add better file handling, maybe use GET requests?
file = open("diario.txt", "a")
file.write(f"{int(time)}|{entry}\n")
file.close()
del file
await update.message.chat.send_message(bot, "Aggiunto al diario!")
async def leggi(bot, update, arguments):
"""Leggi una frase dal diario Royal Games.
Puoi visualizzare il diario [qui](https://royal.steffo.me/diario.htm), leggere una frase casuale scrivendo `/leggi random` o leggere una frase specifica scrivendo `/leggi <numero>`.
Sintassi: `/leggi <random | numerofrase>`"""
if len(arguments) == 0 or len(arguments) > 1:
await update.message.chat.send_message(bot, "⚠ Sintassi del comando non valida.\n`/leggi <random | numerofrase>`")
return
# TODO: add better file handling, maybe use GET requests?
file = open("diario.txt", "r")
entries = file.read().split("\n")
file.close()
if arguments[0] == "random":
entry_number = random.randrange(len(entries))
else:
entry_number = arguments[0]
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}")
async def help(bot, update, arguments):
"""Visualizza la descrizione di un comando.
Sintassi: `/help [comando]`"""
if len(arguments) == 0:
await update.message.chat.send_message(bot, help.__doc__)
elif len(arguments) > 1:
await update.message.chat.send_message(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__)
else:
await update.message.chat.send_message(bot, "⚠ Il comando specificato non esiste.")
2017-02-27 22:16:42 +00:00
2017-03-05 17:14:45 +00:00
b.commands["leggi"] = leggi
b.commands["diario"] = diario
2017-03-05 17:14:45 +00:00
b.commands["help"] = help
2017-02-27 22:16:42 +00:00
b.run()