1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00

Aggiunte robe che forse non vanno

This commit is contained in:
Steffo 2016-02-05 19:10:24 +01:00
parent f21cf65eae
commit 44faeabf0e

31
bot.py
View file

@ -516,33 +516,52 @@ while True:
print("@" + username + ": /restart ") print("@" + username + ": /restart ")
telegram.sendmessage("Riavvio accettato.", sentin, source) telegram.sendmessage("Riavvio accettato.", sentin, source)
sys.exit(0) sys.exit(0)
elif text.startswith('/nuovavotazione') and username == "Steffo": elif text.startswith('/nuovavotazione'):
if username == "Steffo":
print("@" + username + ": /nuovavotazione ") print("@" + username + ": /nuovavotazione ")
cmd = text.split(" ", 1) cmd = text.split(" ", 1)
incorso = Votazione(cmd[1], sentin) incorso = Votazione(cmd[1], sentin)
elif text.startswith('/si') and incorso is not None: else:
telegram.sendmessage(chr(9888) + " Non hai i permessi necessari per creare una nuova votazione.",
sentin, source)
elif text.startswith('/si'):
if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /si ") print("@" + username + ": /si ")
incorso.register(username.lower(), 1) incorso.register(username.lower(), 1)
telegram.sendmessage("Votazione registrata!", sentin, source) telegram.sendmessage("Votazione registrata!", sentin, source)
elif text.startswith('/no') and incorso is not None: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/no'):
if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /no ") print("@" + username + ": /no ")
incorso.register(username.lower(), 2) incorso.register(username.lower(), 2)
telegram.sendmessage("Votazione registrata!", sentin, source) telegram.sendmessage("Votazione registrata!", sentin, source)
elif text.startswith('/astieniti') and incorso is not None: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/astieniti'):
if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /astieniti ") print("@" + username + ": /astieniti ")
incorso.register(username.lower(), 3) incorso.register(username.lower(), 3)
telegram.sendmessage("Votazione registrata!", sentin, source) telegram.sendmessage("Votazione registrata!", sentin, source)
elif text.startswith('/domanda') and incorso is not None: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/domanda'):
if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /domanda ") print("@" + username + ": /domanda ")
incorso.ask() incorso.ask()
elif text.startswith('/risultati') and incorso is not None: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/risultati'):
if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /risultati ") print("@" + username + ": /risultati ")
incorso.showresults() incorso.showresults()
else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/cv'): elif text.startswith('/cv'):
print("@" + username + ": /cv ") print("@" + username + ": /cv ")
# Informa Telegram che il messaggio è stato ricevuto. # Informa Telegram che il messaggio è stato ricevuto.