diff --git a/admin_ext/altaccount.py b/admin_ext/altaccount.py new file mode 100644 index 0000000..fecbe4e --- /dev/null +++ b/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() \ No newline at end of file diff --git a/player.py b/player.py index 1bacdce..e3b4cb0 100644 --- a/player.py +++ b/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 ###############