|
|
@ -35,6 +35,7 @@ from ..enums import ( |
|
|
|
AppCommandPermissionType, |
|
|
|
ChannelType, |
|
|
|
Locale, |
|
|
|
EntryPointCommandHandlerType, |
|
|
|
try_enum, |
|
|
|
) |
|
|
|
from ..mixins import Hashable |
|
|
@ -181,6 +182,10 @@ class AppCommand(Hashable): |
|
|
|
denotes that it is a global command. |
|
|
|
nsfw: :class:`bool` |
|
|
|
Whether the command is NSFW and should only work in NSFW channels. |
|
|
|
handler: Optional[:class:`~discord.EntryPointCommandHandlerType`] |
|
|
|
Determines whether the interaction is handled by the app's interactions handler or by Discord. |
|
|
|
|
|
|
|
This is only available for commands with type :attr:`~discord.AppCommandType.primary_entry_point`. |
|
|
|
""" |
|
|
|
|
|
|
|
__slots__ = ( |
|
|
@ -198,6 +203,7 @@ class AppCommand(Hashable): |
|
|
|
'allowed_contexts', |
|
|
|
'allowed_installs', |
|
|
|
'nsfw', |
|
|
|
'handler', |
|
|
|
'_state', |
|
|
|
) |
|
|
|
|
|
|
@ -245,6 +251,12 @@ class AppCommand(Hashable): |
|
|
|
self.name_localizations: Dict[Locale, str] = _to_locale_dict(data.get('name_localizations') or {}) |
|
|
|
self.description_localizations: Dict[Locale, str] = _to_locale_dict(data.get('description_localizations') or {}) |
|
|
|
|
|
|
|
handler = data.get('handler') |
|
|
|
if handler is None: |
|
|
|
self.handler = None |
|
|
|
else: |
|
|
|
self.handler = try_enum(EntryPointCommandHandlerType, handler) |
|
|
|
|
|
|
|
def to_dict(self) -> ApplicationCommandPayload: |
|
|
|
return { |
|
|
|
'id': self.id, |
|
|
@ -257,6 +269,7 @@ class AppCommand(Hashable): |
|
|
|
'contexts': self.allowed_contexts.to_array() if self.allowed_contexts is not None else None, |
|
|
|
'integration_types': self.allowed_installs.to_array() if self.allowed_installs is not None else None, |
|
|
|
'options': [opt.to_dict() for opt in self.options], |
|
|
|
'handler': self.handler.value if self.handler is not None else None, |
|
|
|
} # type: ignore # Type checker does not understand this literal. |
|
|
|
|
|
|
|
def __str__(self) -> str: |
|
|
@ -317,6 +330,7 @@ class AppCommand(Hashable): |
|
|
|
default_member_permissions: Optional[Permissions] = MISSING, |
|
|
|
dm_permission: bool = MISSING, |
|
|
|
options: List[Union[Argument, AppCommandGroup]] = MISSING, |
|
|
|
handler: Optional[EntryPointCommandHandlerType] = MISSING, |
|
|
|
) -> AppCommand: |
|
|
|
"""|coro| |
|
|
|
|
|
|
@ -335,6 +349,10 @@ class AppCommand(Hashable): |
|
|
|
Indicates if the application command can be used in DMs. |
|
|
|
options: List[Union[:class:`Argument`, :class:`AppCommandGroup`]] |
|
|
|
List of new options for this application command. |
|
|
|
handler: Optional[:class:`~discord.EntryPointCommandHandlerType`] |
|
|
|
Determines whether the interaction is handled by the app's interactions handler or by Discord. |
|
|
|
|
|
|
|
Only available for commands with type :attr:`~discord.AppCommandType.primary_entry_point`. |
|
|
|
|
|
|
|
Raises |
|
|
|
------- |
|
|
@ -376,6 +394,9 @@ class AppCommand(Hashable): |
|
|
|
if options is not MISSING: |
|
|
|
payload['options'] = [option.to_dict() for option in options] |
|
|
|
|
|
|
|
if handler is not MISSING: |
|
|
|
payload['handler'] = handler |
|
|
|
|
|
|
|
if not payload: |
|
|
|
return self |
|
|
|
|
|
|
@ -433,6 +454,19 @@ class AppCommand(Hashable): |
|
|
|
) |
|
|
|
return GuildAppCommandPermissions(data=data, state=state, command=self) |
|
|
|
|
|
|
|
def is_default_entry_point_command(self) -> bool: |
|
|
|
""":class:`bool`: Returns ``True`` if this is the default entry point command. |
|
|
|
|
|
|
|
This is determined by the command's name and handler type. |
|
|
|
More information can be found in the :ddocs:`official Discord |
|
|
|
documentation <interactions/application-commands#default-entry-point-command>`. |
|
|
|
""" |
|
|
|
return ( |
|
|
|
self.type is AppCommandType.primary_entry_point |
|
|
|
and self.name.casefold() == 'launch' |
|
|
|
and self.handler is EntryPointCommandHandlerType.discord_launch_activity |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
class Choice(Generic[ChoiceT]): |
|
|
|
"""Represents an application command argument choice. |
|
|
|