aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/backend
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/backend')
-rw-r--r--bot/exts/backend/error_handler.py56
1 files changed, 34 insertions, 22 deletions
diff --git a/bot/exts/backend/error_handler.py b/bot/exts/backend/error_handler.py
index cc2b5ef56..8883f7566 100644
--- a/bot/exts/backend/error_handler.py
+++ b/bot/exts/backend/error_handler.py
@@ -1,7 +1,7 @@
import copy
import difflib
-from discord import Embed
+from discord import Embed, Member
from discord.ext.commands import ChannelNotFound, Cog, Context, TextChannelConverter, VoiceChannelConverter, errors
from pydis_core.site_api import ResponseCodeError
from sentry_sdk import push_scope
@@ -66,7 +66,7 @@ class ErrorHandler(Cog):
if isinstance(e, errors.CommandNotFound) and not getattr(ctx, "invoked_from_error_handler", False):
if await self.try_silence(ctx):
return
- if await self.try_run_eval(ctx):
+ if await self.try_run_fixed_codeblock(ctx):
return
await self.try_get_tag(ctx) # Try to look for a tag with the command's name
elif isinstance(e, errors.UserInputError):
@@ -167,32 +167,37 @@ class ErrorHandler(Cog):
by `on_command_error`, but the `invoked_from_error_handler` attribute will be added to
the context to prevent infinite recursion in the case of a CommandNotFound exception.
"""
- tags_get_command = self.bot.get_command("tags get")
- if not tags_get_command:
- log.debug("Not attempting to parse message as a tag as could not find `tags get` command.")
+ tags_cog = self.bot.get_cog("Tags")
+ if not tags_cog:
+ log.debug("Not attempting to parse message as a tag as could not find `Tags` cog.")
return
+ tags_get_command = tags_cog.get_command_ctx
- ctx.invoked_from_error_handler = True
+ maybe_tag_name = ctx.invoked_with
+ if not maybe_tag_name or not isinstance(ctx.author, Member):
+ return
- log_msg = "Cancelling attempt to fall back to a tag due to failed checks."
+ ctx.invoked_from_error_handler = True
try:
- if not await tags_get_command.can_run(ctx):
- log.debug(log_msg)
+ if not await self.bot.can_run(ctx):
+ log.debug("Cancelling attempt to fall back to a tag due to failed checks.")
return
- except errors.CommandError as tag_error:
- log.debug(log_msg)
- await self.on_command_error(ctx, tag_error)
- return
- if await ctx.invoke(tags_get_command, argument_string=ctx.message.content):
- return
+ if await tags_get_command(ctx, maybe_tag_name):
+ return
- if not any(role.id in MODERATION_ROLES for role in ctx.author.roles):
- await self.send_command_suggestion(ctx, ctx.invoked_with)
+ if not any(role.id in MODERATION_ROLES for role in ctx.author.roles):
+ await self.send_command_suggestion(ctx, maybe_tag_name)
+ except Exception as err:
+ log.debug("Error while attempting to invoke tag fallback.")
+ if isinstance(err, errors.CommandError):
+ await self.on_command_error(ctx, err)
+ else:
+ await self.on_command_error(ctx, errors.CommandInvokeError(err))
- async def try_run_eval(self, ctx: Context) -> bool:
+ async def try_run_fixed_codeblock(self, ctx: Context) -> bool:
"""
- Attempt to run eval command with backticks directly after command.
+ Attempt to run eval or timeit command with triple backticks directly after command.
For example: !eval```print("hi")```
@@ -204,11 +209,18 @@ class ErrorHandler(Cog):
msg.content = command + " " + sep + end
new_ctx = await self.bot.get_context(msg)
- eval_command = self.bot.get_command("eval")
- if eval_command is None or new_ctx.command != eval_command:
+ if new_ctx.command is None:
+ return False
+
+ allowed_commands = [
+ self.bot.get_command("eval"),
+ self.bot.get_command("timeit"),
+ ]
+
+ if new_ctx.command not in allowed_commands:
return False
- log.debug("Running fixed eval command.")
+ log.debug("Running %r command with fixed codeblock.", new_ctx.command.qualified_name)
new_ctx.invoked_from_error_handler = True
await self.bot.invoke(new_ctx)