1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Administrator-py/extensions/help.py

71 lines
2.1 KiB
Python
Raw Permalink Normal View History

2020-04-08 17:11:23 +02:00
from discord.ext import commands
2020-07-23 21:32:43 +02:00
from discord.ext.commands import CommandNotFound, MissingRequiredArgument, BadArgument, MissingPermissions, \
2021-02-04 10:53:26 +01:00
NoPrivateMessage, NotOwner
2021-01-06 17:02:15 +01:00
from discord_slash import SlashContext
from administrator.check import ExtensionDisabled
from administrator.logger import logger
2020-04-08 17:11:23 +02:00
extension_name = "help"
logger = logger.getChild(extension_name)
class Help(commands.Cog):
def __init__(self, bot: commands.Bot):
self.bot = bot
def description(self):
return "Give help and command list"
@commands.Cog.listener()
async def on_command_error(self, ctx: commands.Context, error):
2021-01-06 17:02:15 +01:00
await self.error_handler(ctx, error)
@commands.Cog.listener()
async def on_slash_command_error(self, ctx: SlashContext, error: Exception):
await self.error_handler(ctx, error)
2021-02-04 10:53:26 +01:00
async def error_handler(self, ctx, error: Exception):
if isinstance(error, CommandNotFound):
2021-02-04 10:53:26 +01:00
await self.reaction(ctx, "\u2753")
elif isinstance(error, MissingRequiredArgument) or isinstance(error, BadArgument):
2021-02-04 10:53:26 +01:00
await self.reaction(ctx, "\u274C")
2021-01-06 17:02:15 +01:00
elif isinstance(error, NotOwner) or isinstance(error, MissingPermissions) \
2020-07-23 21:32:43 +02:00
or isinstance(error, NoPrivateMessage):
2021-02-04 10:53:26 +01:00
await self.reaction(ctx, "\U000026D4")
elif isinstance(error, ExtensionDisabled):
2021-02-04 10:53:26 +01:00
await self.reaction(ctx, "\U0001F6AB")
else:
2021-01-06 17:02:15 +01:00
await ctx.send(content="An error occurred !")
raise error
2020-04-08 17:11:23 +02:00
2021-02-04 10:53:26 +01:00
@staticmethod
async def reaction(ctx, react: str):
m = getattr(ctx, "message", None)
if m:
await m.add_reaction(react)
else:
await ctx.send(content=react)
2020-04-08 17:11:23 +02:00
def setup(bot):
logger.info(f"Loading...")
try:
bot.help_command = None
bot.add_cog(Help(bot))
2020-04-08 17:11:23 +02:00
except Exception as e:
logger.error(f"Error loading: {e}")
else:
logger.info(f"Load successful")
def teardown(bot):
logger.info(f"Unloading...")
try:
bot.remove_cog("Help")
2020-04-08 17:11:23 +02:00
except Exception as e:
logger.error(f"Error unloading: {e}")
else:
logger.info(f"Unload successful")