Browse Source

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.
pull/7758/head
James Gayfer 3 years ago
committed by GitHub
parent
commit
f26d3a7155
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      discord/app_commands/tree.py

14
discord/app_commands/tree.py

@ -971,6 +971,17 @@ class CommandTree(Generic[ClientT]):
await ctx_menu.on_error(interaction, e) await ctx_menu.on_error(interaction, e)
await self.on_error(interaction, ctx_menu, 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: async def call(self, interaction: Interaction) -> None:
"""|coro| """|coro|
@ -994,6 +1005,9 @@ class CommandTree(Generic[ClientT]):
AppCommandError AppCommandError
An error occurred while calling the command. An error occurred while calling the command.
""" """
if not await self.interaction_check(interaction):
return
data: ApplicationCommandInteractionData = interaction.data # type: ignore data: ApplicationCommandInteractionData = interaction.data # type: ignore
type = data.get('type', 1) type = data.get('type', 1)
if type != 1: if type != 1:

Loading…
Cancel
Save