From 99faa18db11f3a869cce2778f66045a119018d30 Mon Sep 17 00:00:00 2001 From: gsd Date: Sat, 11 Mar 2023 11:45:12 +0300 Subject: [PATCH] banlist --- player.py | 14 +++++++++++++- user_ext/banlist.py | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 user_ext/banlist.py diff --git a/player.py b/player.py index 8e9b8fa..6cd7145 100644 --- a/player.py +++ b/player.py @@ -329,4 +329,16 @@ def human_TIME(seconds): elif d < 2: return "%d день %d:%02d:%02d" % (d ,h, m, s) else: - return "%d дней %d:%02d:%02d" % (d ,h, m, s) \ No newline at end of file + return "%d дней %d:%02d:%02d" % (d ,h, m, s) + +def ban2message(ban): + message = f"Ник: {ban['player_name']}\n" + message += f"Причина: {ban['ban_reason']}\n" + message += f"Время: {utime2human(ban['ban_utime'])}\n" + message += f"Кто забанил: {ban['banned_by']} | <@{ban['admin_info']['discord_id']}>\n" + if ban['active'] == True: + if ban['ban_length'] == 0: + message += "Данный бан навсегда!\n" + else: + message += f"Дата разбана: {utime2human(ban['ban_utime'] + ban['ban_length_seconds'])}\n" + return message \ No newline at end of file diff --git a/user_ext/banlist.py b/user_ext/banlist.py new file mode 100644 index 0000000..819924a --- /dev/null +++ b/user_ext/banlist.py @@ -0,0 +1,21 @@ +import discord +import aiohttp, os +import player + +class Extension: + def __init__(self, core): + @core.tree.command(name = "banlist", description = "Посмотреть последнии 10 банов") + async def banlist( + interaction: discord.Interaction + ): + await interaction.response.defer(thinking=True) + embed = discord.Embed(title="Последние 10 банов") + ban_list = await self.getBanList(10) + for ban in ban_list: + embed.add_field(name=f"#{ban['id']}", value=player.ban2message(ban), inline=False) + return await interaction.followup.send(embed=embed, ephemeral=False) + + async def getBanList(self, limit = 10): + async with aiohttp.ClientSession(cookies={"secretkey":os.getenv("BACKEND_SECRETKEY")}) as session: + async with session.get(f"{os.getenv('BACKEND_URL')}/api/admin/ban/list?limit={limit}", ssl=False) as response: + return await response.json()