2 changed files with 34 additions and 1 deletions
@ -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() |
Loading…
Reference in new issue