Browse Source

hehe boii

huy
gsd 2 years ago
parent
commit
305a5efefe
  1. 19
      admin_ext/altaccount.py
  2. 19
      player.py

19
admin_ext/altaccount.py

@ -0,0 +1,19 @@
import discord
class Extension:
core = None
def __init__(self, core):
self.core = core
@core.tree.command(name = "altaccount", description = "Узнать есть ли у игрока другие аккаунты по ип последнего захода")
@discord.app_commands.describe(profile=core.ANY_INPUT)
async def check_alts(
interaction: discord.Interaction,
profile: str
):
await interaction.response.defer(thinking=True)
return await interaction.followup.send(f'{await self.__call__(profile, interaction.user)}', ephemeral=False)
async def __call__(self, profile, discord_user):
steam64 = await self.core.GetSteam64OfDiscord(discord_user)
player = await self.core.GetPlayer(profile, steam64, False)
return await player.foundAlts()

19
player.py

@ -332,6 +332,25 @@ class Player:
raise AdminLowPermition
raise UnknownBackendResponse
async def foundAlts(self):
async with aiohttp.ClientSession(cookies={
"secretkey":os.getenv("BACKEND_SECRETKEY"),
"steam64": self.requester_steam64}) as session:
async with session.get(f"{os.getenv('BACKEND_URL')}/api/admin/db/alt?steam64={self.steam64}", ssl=False) as response:
data = await response.json()
if response.status == 200:
resp = "Ссылки на аккаунты:\n"
for url in data:
resp += f"{url}\n"
return resp
elif response.status == 404:
raise NotFoundPlayerOnServer
elif response.status == 403:
raise LowPermition
elif response.status == 406:
raise AdminLowPermition
raise UnknownBackendResponse
###############
#user command
###############

Loading…
Cancel
Save