mirror of https://github.com/stijndcl/didier
55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
from discord.ext import commands
|
|
|
|
from data.embeds.snipe import EditSnipe, DeleteSnipe
|
|
from data.menus import custom_commands
|
|
from data.snipe import Action, Snipe
|
|
from decorators import help
|
|
from enums.help_categories import Category
|
|
from functions.database.custom_commands import get_all
|
|
from functions.stringFormatters import capitalize
|
|
from startup.didier import Didier
|
|
|
|
|
|
class Other(commands.Cog):
|
|
def __init__(self, client: Didier):
|
|
self.client: Didier = client
|
|
|
|
# TODO add locked field to Didier instead of client
|
|
# # Don't allow any commands to work when locked
|
|
# def cog_check(self, ctx):
|
|
# return not self.client.locked
|
|
|
|
@commands.command(name="Custom")
|
|
@help.Category(category=Category.Didier)
|
|
async def list_custom(self, ctx):
|
|
"""
|
|
Get a list of all custom commands
|
|
"""
|
|
all_commands = get_all()
|
|
formatted = list(sorted(map(lambda x: capitalize(x["name"]), all_commands)))
|
|
src = custom_commands.CommandsList(formatted)
|
|
await custom_commands.Pages(source=src, clear_reactions_after=True).start(ctx)
|
|
|
|
@commands.command(name="Snipe")
|
|
@help.Category(category=Category.Other)
|
|
async def snipe(self, ctx):
|
|
"""
|
|
Shame people for editing & removing messages.
|
|
The dict is stored in memory so it will be cleared whenever the bot restarts.
|
|
"""
|
|
if ctx.guild is None:
|
|
return
|
|
|
|
if ctx.channel.id not in self.client.snipe:
|
|
return await ctx.send("Er is hier niemand om uit te lachen.")
|
|
|
|
s: Snipe = self.client.snipe[ctx.channel.id]
|
|
|
|
embed_class = (EditSnipe(s) if s.action == Action.Edit else DeleteSnipe(s))
|
|
|
|
return await ctx.send(embed=embed_class.to_embed(self.client))
|
|
|
|
|
|
def setup(client):
|
|
client.add_cog(Other(client))
|