|
|
@ -2282,7 +2282,9 @@ def guild_only() -> Check[Any]: |
|
|
|
that is inherited from :exc:`.CheckFailure`. |
|
|
|
|
|
|
|
If used on hybrid commands, this will be equivalent to the |
|
|
|
:func:`discord.app_commands.guild_only` decorator. |
|
|
|
:func:`discord.app_commands.guild_only` decorator. In an unsupported |
|
|
|
context, such as a subcommand, this will still fallback to applying the |
|
|
|
check. |
|
|
|
""" |
|
|
|
|
|
|
|
# Due to implementation quirks, this check has to be re-implemented completely |
|
|
@ -2346,13 +2348,21 @@ def is_nsfw() -> Check[Any]: |
|
|
|
This check raises a special exception, :exc:`.NSFWChannelRequired` |
|
|
|
that is derived from :exc:`.CheckFailure`. |
|
|
|
|
|
|
|
If used on hybrid commands, this will be equivalent to setting the |
|
|
|
application command's ``nsfw`` attribute to ``True``. In an unsupported |
|
|
|
context, such as a subcommand, this will still fallback to applying the |
|
|
|
check. |
|
|
|
|
|
|
|
.. versionchanged:: 1.1 |
|
|
|
|
|
|
|
Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. |
|
|
|
DM channels will also now pass this check. |
|
|
|
""" |
|
|
|
|
|
|
|
def pred(ctx: Context[BotT]) -> bool: |
|
|
|
# Due to implementation quirks, this check has to be re-implemented completely |
|
|
|
# to work with both app_commands and the command framework. |
|
|
|
|
|
|
|
def predicate(ctx: Context[BotT]) -> bool: |
|
|
|
ch = ctx.channel |
|
|
|
if ctx.guild is None or ( |
|
|
|
isinstance(ch, (discord.TextChannel, discord.Thread, discord.VoiceChannel)) and ch.is_nsfw() |
|
|
@ -2360,7 +2370,33 @@ def is_nsfw() -> Check[Any]: |
|
|
|
return True |
|
|
|
raise NSFWChannelRequired(ch) # type: ignore |
|
|
|
|
|
|
|
return check(pred) |
|
|
|
def decorator(func: Union[Command, CoroFunc]) -> Union[Command, CoroFunc]: |
|
|
|
if isinstance(func, Command): |
|
|
|
func.checks.append(predicate) |
|
|
|
if hasattr(func, '__commands_is_hybrid__'): |
|
|
|
app_command = getattr(func, 'app_command', None) |
|
|
|
if app_command: |
|
|
|
app_command.nsfw = True |
|
|
|
else: |
|
|
|
if not hasattr(func, '__commands_checks__'): |
|
|
|
func.__commands_checks__ = [] |
|
|
|
|
|
|
|
func.__commands_checks__.append(predicate) |
|
|
|
func.__discord_app_commands_is_nsfw__ = True |
|
|
|
|
|
|
|
return func |
|
|
|
|
|
|
|
if inspect.iscoroutinefunction(predicate): |
|
|
|
decorator.predicate = predicate |
|
|
|
else: |
|
|
|
|
|
|
|
@functools.wraps(predicate) |
|
|
|
async def wrapper(ctx: Context[BotT]): |
|
|
|
return predicate(ctx) |
|
|
|
|
|
|
|
decorator.predicate = wrapper |
|
|
|
|
|
|
|
return decorator # type: ignore |
|
|
|
|
|
|
|
|
|
|
|
def cooldown( |
|
|
|