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

50 lines
1.8 KiB
Python
Raw Normal View History

2016-08-12 14:40:22 +00:00
import asyncio
2016-08-12 14:58:22 +00:00
import requests
2016-11-02 13:45:41 +00:00
import strings as s
2016-08-12 15:09:47 +00:00
loop = asyncio.get_event_loop()
2016-08-12 14:40:22 +00:00
class NotFoundException(Exception):
pass
2016-08-12 14:58:22 +00:00
# Get player data
2016-08-12 17:21:43 +00:00
async def get_player_data(platform: str, region: str, battletag: str, **kwargs):
2016-08-13 13:46:07 +00:00
print("[Overwatch] Getting player info for: {platform} {region} {battletag}".format(platform=platform,
region=region,
battletag=battletag))
2016-08-12 14:58:22 +00:00
# Unofficial API requires - for discriminator numbers
2016-08-12 15:09:47 +00:00
battletag = battletag.replace("#", "-")
2016-08-12 14:58:22 +00:00
# GET the json unofficial API response
2016-08-12 15:09:47 +00:00
r = await loop.run_in_executor(None, requests.get,
'https://api.lootbox.eu/{platform}/{region}/{battletag}/profile'.format(**locals()))
2016-08-12 14:58:22 +00:00
# Ensure the request is successful
if r.status_code == 200:
# Parse json and check for the status code inside the response
pj = r.json()
if "statusCode" in pj:
if pj["statusCode"] == 404:
raise NotFoundException("Player not found.")
else:
raise Exception("Unhandled API response.")
else:
# Success!
return pj
2016-08-12 19:12:51 +00:00
else:
raise Exception("Unhandled API response.")
2016-11-02 13:45:41 +00:00
# Convert rank to a medal
def rank_to_medal(rank):
if int(rank) < 1500:
return s.overwatch_medal_list[0]
elif int(rank) < 2000:
return s.overwatch_medal_list[1]
elif int(rank) < 2500:
return s.overwatch_medal_list[2]
elif int(rank) < 3000:
return s.overwatch_medal_list[3]
elif int(rank) < 3500:
return s.overwatch_medal_list[4]
elif int(rank) < 4000:
return s.overwatch_medal_list[5]