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

137 lines
4.5 KiB
Python
Raw Normal View History

2015-08-07 16:15:27 +00:00
# -*- coding: utf-8 -*-
2015-08-07 13:49:13 +00:00
import requests #Modulo per fare richieste su HTTP
import time #Modulo per mettere in pausa il programma
#Token del bot, non diffondere
token = "120621161:AAHeVgQhlfGx36KT9NyGemauZBPEbe9Xfv0"
#Token di Steam, per /steam
steamtoken = "042E26965C7AA24487FEBA6205017315"
2015-08-07 14:23:26 +00:00
#Ultimo messaggio mandato dal bot.
lastmsg = ""
2015-08-07 13:49:13 +00:00
#Leggi un file e rispondi con il contenuto
def readFile(name):
file = open(name, 'r')
content = file.read()
file.close()
return content
#Scrivi qualcosa su un file
def writeFile(name, content):
file = open(name, 'w')
file.write(content)
file.close()
#Ricevi gli ultimi messaggi
def getUpdates():
#Parametri della richiesta da fare
parametri = {
'offset': readFile("lastid.txt"), #Update ID del messaggio da leggere
'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1
'timeout': 300, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
}
#Manda la richiesta ai server di Telegram e convertila in un dizionario
r = requests.get("https://api.telegram.org/bot" + token + "/getUpdates", params=parametri).json()
return r
#Manda un messaggio
def sendMessage(content, to):
#Parametri del messaggio
parametri = {
'chat_id': to, #L'ID della chat a cui mandare il messaggio, Royal Games: -2141322
'text': content, #Il messaggio da mandare
2015-08-07 13:49:13 +00:00
}
2015-08-07 14:23:26 +00:00
#Antispam: manda il messaggio solo se l'ultimo messaggio è diverso da quello che deve mandare ora.
global lastmsg
2015-08-07 14:23:26 +00:00
if(lastmsg != content):
#Manda il messaggio
r = requests.get("https://api.telegram.org/bot" + token + "/sendMessage", params=parametri)
lastmsg = content
else:
print("Tentativo di spam rilevato.")
2015-08-07 13:49:13 +00:00
def getSteamStatus(steamid):
#Parametri della richiesta
parametri = {
'key': steamtoken,
'steamids': steamid,
}
#Manda la richiesta ai server di Telegram e convertila in un dizionario
2015-08-07 15:28:28 +00:00
r = requests.get("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/", params=parametri).json()
return r
2015-08-07 13:49:13 +00:00
#Il loop del bot
while(True):
#Ricevi gli ultimi messaggi
data = getUpdates()
#Se c'e' un nuovo messaggio
if(data['ok'] and data['result']):
#Aggiorna l'update ID sul file
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
#Leggi i dati del messaggio
msg = data['result'][0]['message']
2015-08-07 16:14:26 +00:00
#Ah, non lo so io!
2015-08-07 15:58:53 +00:00
if(msg['text'].startswith("/ahnonlosoio")):
2015-08-07 16:43:06 +00:00
sendMessage("Ah non lo so nemmeno io ¯\_(?)_/¯", msg['chat']['id'])
2015-08-07 16:14:26 +00:00
#Controlla lo stato di una persona su Steam.
2015-08-07 15:02:47 +00:00
if(msg['text'].startswith("/steam")):
2015-08-07 16:14:26 +00:00
#Se non viene specificato un
2015-08-07 15:01:17 +00:00
if(msg['text'] == "/steam"):
2015-08-07 16:43:06 +00:00
sendMessage("\u26A0 Non hai specificato uno steamid!", msg['chat']['id'])
else:
2015-08-07 16:29:12 +00:00
#Elenco degli steamid e degli username di telegram.
steamids = {
'@Steffo': 76561198034314260,
'@EvilBaluIsEvilT_T': 76561198071012695,
'@Fulz': 76561198035547490,
'@IlGattopardo': 76561198111021344,
'@FrankFrankFrank': 76561198071099951,
'@fedYal': 76561198109189938,
'@ActerRYG': 76561198146704979,
'@YouTouchMyTralala': 76561198121094516,
'@Heisenberg_TheMadDoctor': 76561198080377213,
'@SuperMattemb': 76561198115852550,
'@Peraemela99': 76561198161867082,
'@thevagginadestroyer': 76561198128738388,
'Fillo': 76561198103292029,
'@Cosimo03': 76561198062778224,
'Alby': 76561198071383448,
'@Voltaggio': 76561198147601821,
'Alle2002': 76561198052996311,
'Jummi': 76561198169975999,
'@Tauei': 76561198104305298,
'@Saitorlock': 76561198089120441,
'@iEmax': 76561198149695151,
'@Alleanderl': 76561198154175301,
'@Boni3099': 76561198131868211,
}
#Controlla se la selezione è un username di telegram.
if(steamids[msg['text'][7:]]):
2015-08-07 16:34:15 +00:00
selezione = steamids[msg['text'][7:]]
2015-08-07 16:29:12 +00:00
else:
selezione = msg['text'][7:]
2015-08-07 16:14:26 +00:00
steam = getSteamStatus(selezione)
2015-08-07 15:19:03 +00:00
if(steam['response']['players']):
online = steam['response']['players'][0]['personastate']
name = steam['response']['players'][0]['personaname']
text = ""
if(online == 0):
2015-08-07 16:43:06 +00:00
text = "\u26AA Offline"
2015-08-07 15:19:03 +00:00
elif(online == 1):
2015-08-07 16:43:06 +00:00
text = "\U1F535 Online"
2015-08-07 15:19:03 +00:00
elif(online == 2):
2015-08-07 16:43:06 +00:00
text = "\U1F534 Occupato"
2015-08-07 15:19:03 +00:00
elif(online == 3):
2015-08-07 16:43:06 +00:00
text = "\u26AB Assente"
2015-08-07 15:19:03 +00:00
elif(online == 4):
2015-08-07 16:43:06 +00:00
text = "\u26AB Inattivo"
2015-08-07 15:19:03 +00:00
elif(online == 5):
2015-08-07 16:43:06 +00:00
text = "\U1F535 Disponibile per scambiare"
2015-08-07 15:19:03 +00:00
elif(online == 6):
2015-08-07 16:43:06 +00:00
text = "\U1F535 Disponibile per giocare"
2015-08-07 15:28:28 +00:00
sendMessage(name + " e' " + text + ".", msg['chat']['id'])
2015-08-07 15:22:47 +00:00
else:
sendMessage("Lo steamid non esiste!", msg['chat']['id'])