From f26d3a7155eaecf970522c947b4e28bea2053d00 Mon Sep 17 00:00:00 2001 From: James Gayfer Date: Thu, 24 Mar 2022 19:32:56 -0700 Subject: [PATCH] Add interaction check to command tree In some cases, it's desirable for our command tree to only process a subset of incoming interactions, such as in a multi process deployment. --- discord/app_commands/tree.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/discord/app_commands/tree.py b/discord/app_commands/tree.py index 62f2ab9bb..31d28b724 100644 --- a/discord/app_commands/tree.py +++ b/discord/app_commands/tree.py @@ -971,6 +971,17 @@ class CommandTree(Generic[ClientT]): await ctx_menu.on_error(interaction, e) await self.on_error(interaction, ctx_menu, e) + async def interaction_check(self, interaction: Interaction, /) -> bool: + """|coro| + + A global check to determine if an :class:`~discord.Interaction` should + be processed by the tree. + + The default implementation returns True (all interactions are processed), + but can be overridden if custom behaviour is desired. + """ + return True + async def call(self, interaction: Interaction) -> None: """|coro| @@ -994,6 +1005,9 @@ class CommandTree(Generic[ClientT]): AppCommandError An error occurred while calling the command. """ + if not await self.interaction_check(interaction): + return + data: ApplicationCommandInteractionData = interaction.data # type: ignore type = data.get('type', 1) if type != 1: