Browse Source

[commands] Add SoundboardSoundConverter

pull/9975/head
z03h 6 months ago
committed by GitHub
parent
commit
442ad40ab2
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 40
      discord/ext/commands/converter.py
  2. 19
      discord/ext/commands/errors.py
  3. 4
      docs/ext/commands/api.rst

40
discord/ext/commands/converter.py

@ -82,6 +82,7 @@ __all__ = (
'GuildChannelConverter',
'GuildStickerConverter',
'ScheduledEventConverter',
'SoundboardSoundConverter',
'clean_content',
'Greedy',
'Range',
@ -951,6 +952,44 @@ class ScheduledEventConverter(IDConverter[discord.ScheduledEvent]):
return result
class SoundboardSoundConverter(IDConverter[discord.SoundboardSound]):
"""Converts to a :class:`~discord.SoundboardSound`.
Lookups are done for the local guild if available. Otherwise, for a DM context,
lookup is done by the global cache.
The lookup strategy is as follows (in order):
1. Lookup by ID.
2. Lookup by name.
.. versionadded:: 2.5
"""
async def convert(self, ctx: Context[BotT], argument: str) -> discord.SoundboardSound:
guild = ctx.guild
match = self._get_id_match(argument)
result = None
if match:
# ID match
sound_id = int(match.group(1))
if guild:
result = guild.get_soundboard_sound(sound_id)
else:
result = ctx.bot.get_soundboard_sound(sound_id)
else:
# lookup by name
if guild:
result = discord.utils.get(guild.soundboard_sounds, name=argument)
else:
result = discord.utils.get(ctx.bot.soundboard_sounds, name=argument)
if result is None:
raise SoundboardSoundNotFound(argument)
return result
class clean_content(Converter[str]):
"""Converts the argument to mention scrubbed version of
said content.
@ -1263,6 +1302,7 @@ CONVERTER_MAPPING: Dict[type, Any] = {
discord.GuildSticker: GuildStickerConverter,
discord.ScheduledEvent: ScheduledEventConverter,
discord.ForumChannel: ForumChannelConverter,
discord.SoundboardSound: SoundboardSoundConverter,
}

19
discord/ext/commands/errors.py

@ -75,6 +75,7 @@ __all__ = (
'EmojiNotFound',
'GuildStickerNotFound',
'ScheduledEventNotFound',
'SoundboardSoundNotFound',
'PartialEmojiConversionFailure',
'BadBoolArgument',
'MissingRole',
@ -564,6 +565,24 @@ class ScheduledEventNotFound(BadArgument):
super().__init__(f'ScheduledEvent "{argument}" not found.')
class SoundboardSoundNotFound(BadArgument):
"""Exception raised when the bot can not find the soundboard sound.
This inherits from :exc:`BadArgument`
.. versionadded:: 2.5
Attributes
-----------
argument: :class:`str`
The sound supplied by the caller that was not found
"""
def __init__(self, argument: str) -> None:
self.argument: str = argument
super().__init__(f'SoundboardSound "{argument}" not found.')
class BadBoolArgument(BadArgument):
"""Exception raised when a boolean argument was not convertable.

4
docs/ext/commands/api.rst

@ -708,6 +708,9 @@ Exceptions
.. autoexception:: discord.ext.commands.ScheduledEventNotFound
:members:
.. autoexception:: discord.ext.commands.SoundboardSoundNotFound
:members:
.. autoexception:: discord.ext.commands.BadBoolArgument
:members:
@ -800,6 +803,7 @@ Exception Hierarchy
- :exc:`~.commands.EmojiNotFound`
- :exc:`~.commands.GuildStickerNotFound`
- :exc:`~.commands.ScheduledEventNotFound`
- :exc:`~.commands.SoundboardSoundNotFound`
- :exc:`~.commands.PartialEmojiConversionFailure`
- :exc:`~.commands.BadBoolArgument`
- :exc:`~.commands.RangeError`

Loading…
Cancel
Save