Purpur
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
cogs/linking_updater.py
|
@ -29,10 +29,13 @@ class Linking_updater(commands.Cog): |
|
|
file.close() |
|
|
file.close() |
|
|
guild = self.bot.get_guild(guild_id) |
|
|
guild = self.bot.get_guild(guild_id) |
|
|
i = -1 |
|
|
i = -1 |
|
|
|
|
|
print("1") |
|
|
for client in data['users']: |
|
|
for client in data['users']: |
|
|
|
|
|
print("2") |
|
|
i += 1 |
|
|
i += 1 |
|
|
member = guild.get_member(client['discord_id']) |
|
|
member = guild.get_member(client['discord_id']) |
|
|
if member: |
|
|
if member: |
|
|
|
|
|
print("3") |
|
|
api_key = client['client_api_key'] |
|
|
api_key = client['client_api_key'] |
|
|
url = "https://panel.birdflop.com/api/client" |
|
|
url = "https://panel.birdflop.com/api/client" |
|
|
headers = { |
|
|
headers = { |
|
@ -41,8 +44,9 @@ class Linking_updater(commands.Cog): |
|
|
} |
|
|
} |
|
|
async with aiohttp.ClientSession() as session: |
|
|
async with aiohttp.ClientSession() as session: |
|
|
async with session.get(url, headers=headers) as response: |
|
|
async with session.get(url, headers=headers) as response: |
|
|
|
|
|
print("4") |
|
|
if response.status == 200: |
|
|
if response.status == 200: |
|
|
logging.info("200") |
|
|
|
|
|
|
|
|
print("5") |
|
|
# Formats response for servers in JSON format |
|
|
# Formats response for servers in JSON format |
|
|
servers_json_response = await response.json() |
|
|
servers_json_response = await response.json() |
|
|
|
|
|
|
|
|