|
|
@ -74,6 +74,7 @@ __all__ = ( |
|
|
|
'StoreChannelConverter', |
|
|
|
'ThreadConverter', |
|
|
|
'GuildChannelConverter', |
|
|
|
'GuildStickerConverter', |
|
|
|
'clean_content', |
|
|
|
'Greedy', |
|
|
|
'run_converters', |
|
|
@ -823,6 +824,45 @@ class PartialEmojiConverter(Converter[discord.PartialEmoji]): |
|
|
|
raise PartialEmojiConversionFailure(argument) |
|
|
|
|
|
|
|
|
|
|
|
class GuildStickerConverter(IDConverter[discord.GuildSticker]): |
|
|
|
"""Converts to a :class:`~discord.GuildSticker`. |
|
|
|
|
|
|
|
All lookups are done for the local guild first, if available. If that lookup |
|
|
|
fails, then it checks the client's global cache. |
|
|
|
|
|
|
|
The lookup strategy is as follows (in order): |
|
|
|
|
|
|
|
1. Lookup by ID. |
|
|
|
3. Lookup by name |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
""" |
|
|
|
|
|
|
|
async def convert(self, ctx: Context, argument: str) -> discord.GuildSticker: |
|
|
|
match = self._get_id_match(argument) |
|
|
|
result = None |
|
|
|
bot = ctx.bot |
|
|
|
guild = ctx.guild |
|
|
|
|
|
|
|
if match is None: |
|
|
|
# Try to get the sticker by name. Try local guild first. |
|
|
|
if guild: |
|
|
|
result = discord.utils.get(guild.stickers, name=argument) |
|
|
|
|
|
|
|
if result is None: |
|
|
|
result = discord.utils.get(bot.stickers, name=argument) |
|
|
|
else: |
|
|
|
sticker_id = int(match.group(1)) |
|
|
|
|
|
|
|
# Try to look up sticker by id. |
|
|
|
result = bot.get_sticker(sticker_id) |
|
|
|
|
|
|
|
if result is None: |
|
|
|
raise GuildStickerNotFound(argument) |
|
|
|
|
|
|
|
return result |
|
|
|
|
|
|
|
|
|
|
|
class clean_content(Converter[str]): |
|
|
|
"""Converts the argument to mention scrubbed version of |
|
|
|
said content. |
|
|
@ -1012,6 +1052,7 @@ CONVERTER_MAPPING: Dict[Type[Any], Any] = { |
|
|
|
discord.StoreChannel: StoreChannelConverter, |
|
|
|
discord.Thread: ThreadConverter, |
|
|
|
discord.abc.GuildChannel: GuildChannelConverter, |
|
|
|
discord.GuildSticker: GuildStickerConverter, |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|