2016-08-12 14:40:22 +00:00
|
|
|
import asyncio
|
2016-08-12 14:58:22 +00:00
|
|
|
import requests
|
2016-08-12 15:09:47 +00:00
|
|
|
loop = asyncio.get_event_loop()
|
2016-08-12 14:40:22 +00:00
|
|
|
|
2016-08-13 17:40:27 +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:
|
2016-08-13 17:40:27 +00:00
|
|
|
# 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.")
|
|
|
|
|