diff --git a/admin_ext/givevip.py b/admin_ext/givevip.py new file mode 100644 index 0000000..3d05027 --- /dev/null +++ b/admin_ext/givevip.py @@ -0,0 +1,23 @@ +import discord + +class Extension: + def __init__(self, core): + @core.tree.command(name = "givevip", description = "Выдать игроку випку") + @discord.app_commands.checks.has_role("Администратор Фактов13") + @discord.app_commands.describe(profile=core.ANY_INPUT, days="Дней", hours="Часов", minutes="Минут") + async def givevip_command( + interaction: discord.Interaction, + profile: str, + days: int = 0, + hours: int = 0, + minutes: int = 0 + ): + await interaction.response.defer(thinking=True) + steam64 = await core.GetSteam64OfDiscord(interaction.user) + player = await core.GetPlayer(profile, steam64) + + amount = days * 24 * 60 * 60 + hours * 60 * 60 + minutes * 60 + if amount > 0: + return await interaction.followup.send(f'{await player.vip(amount)}', ephemeral=False) + else: + return await interaction.followup.send("Ты еблан, время то укажи дядя...") \ No newline at end of file diff --git a/admin_ext/unvip.py b/admin_ext/unvip.py new file mode 100644 index 0000000..4531ada --- /dev/null +++ b/admin_ext/unvip.py @@ -0,0 +1,15 @@ +import discord + +class Extension: + def __init__(self, core): + @core.tree.command(name = "unvip", description = "Забрать випку у игрока") + @discord.app_commands.checks.has_role("Администратор Фактов13") + @discord.app_commands.describe(profile=core.ANY_INPUT) + async def unvip_command( + interaction: discord.Interaction, + profile: str + ): + await interaction.response.defer(thinking=True) + steam64 = await core.GetSteam64OfDiscord(interaction.user) + player = await core.GetPlayer(profile, steam64) + return await interaction.followup.send(f'{await player.unvip()}', ephemeral=False) \ No newline at end of file diff --git a/player.py b/player.py index d1e885f..651a010 100644 --- a/player.py +++ b/player.py @@ -167,6 +167,47 @@ class Player: ############### #admin commands ############### + async def vip(self, amount): + async with aiohttp.ClientSession(cookies={ + "secretkey":os.getenv("BACKEND_SECRETKEY"), + "steam64": self.requester_steam64}) as session: + async with session.post(f"{os.getenv('BACKEND_URL')}/api/admin/vip?steam64={self.steam64}&amount={amount}", ssl=False) as response: + await response.text() + if response.status == 409: + return "Нельзя выдать випку по причине что пользователь имеет отличные правила от випа" + elif response.status == 201: + return "Випка была выдана" + elif response.status == 205: + return "Випка была продленна" + elif response.status == 400: + return "На том конце проишел хуй знает что" + elif response.status == 403: + raise LowPermition + elif response.status == 406: + raise AdminLowPermition + raise UnknownBackendResponse + + async def unvip(self): + async with aiohttp.ClientSession(cookies={ + "secretkey":os.getenv("BACKEND_SECRETKEY"), + "steam64": self.requester_steam64}) as session: + async with session.delete(f"{os.getenv('BACKEND_URL')}/api/admin/vip?steam64={self.steam64}", ssl=False) as response: + await response.text() + if response.status == 409: + return "У пользователя есть права, но они не вип, так что хуй" + elif response.status == 200: + return "Удалены права" + elif response.status == 404: + return "У пользователя нет прав и так" + elif response.status == 400: + return "На том конце проишел хуй знает что" + elif response.status == 403: + raise LowPermition + elif response.status == 406: + raise AdminLowPermition + + raise UnknownBackendResponse + async def kick(self, reason): async with aiohttp.ClientSession(cookies={ "secretkey":os.getenv("BACKEND_SECRETKEY"),