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

73
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'):
print("@" + username + ": /nuovavotazione ") if username == "Steffo":
cmd = text.split(" ", 1) print("@" + username + ": /nuovavotazione ")
incorso = Votazione(cmd[1], sentin) cmd = text.split(" ", 1)
elif text.startswith('/si') and incorso is not None: incorso = Votazione(cmd[1], sentin)
if incorso.chat == sentin: else:
print("@" + username + ": /si ") telegram.sendmessage(chr(9888) + " Non hai i permessi necessari per creare una nuova votazione.",
incorso.register(username.lower(), 1) sentin, source)
telegram.sendmessage("Votazione registrata!", sentin, source) elif text.startswith('/si'):
elif text.startswith('/no') and incorso is not None: if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
print("@" + username + ": /no ") print("@" + username + ": /si ")
incorso.register(username.lower(), 2) incorso.register(username.lower(), 1)
telegram.sendmessage("Votazione registrata!", sentin, source) telegram.sendmessage("Votazione registrata!", sentin, source)
elif text.startswith('/astieniti') and incorso is not None: else:
if incorso.chat == sentin: telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
print("@" + username + ": /astieniti ") elif text.startswith('/no'):
incorso.register(username.lower(), 3) if incorso is not None:
telegram.sendmessage("Votazione registrata!", sentin, source) if incorso.chat == sentin:
elif text.startswith('/domanda') and incorso is not None: print("@" + username + ": /no ")
if incorso.chat == sentin: incorso.register(username.lower(), 2)
print("@" + username + ": /domanda ") telegram.sendmessage("Votazione registrata!", sentin, source)
incorso.ask() else:
elif text.startswith('/risultati') and incorso is not None: telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
if incorso.chat == sentin: elif text.startswith('/astieniti'):
print("@" + username + ": /risultati ") if incorso is not None:
incorso.showresults() if incorso.chat == sentin:
print("@" + username + ": /astieniti ")
incorso.register(username.lower(), 3)
telegram.sendmessage("Votazione registrata!", sentin, source)
else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/domanda'):
if incorso is not None:
if incorso.chat == sentin:
print("@" + username + ": /domanda ")
incorso.ask()
else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
elif text.startswith('/risultati'):
if incorso is not None:
if incorso.chat == sentin:
print("@" + username + ": /risultati ")
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.