You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
896 B
21 lines
896 B
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()
|
|
|