如何只允许管理员执行命令
How to allow only admins to execute a command
我正在写以下命令
@bot.command(pass_context=True)
async def admins_only_command(ctx, *, args):
'''do stuff
我如何才能将此命令限制为仅限管理员使用?我试着查看 ctx.author.roles.role
,它显示 @everyone
。我如何检查给定用户是否是 admin
?
有两种方法:通过角色白名单使用has_any_role
@bot.command(pass_context=True)
@commands.has_any_role("Big Cheese", "Medium Cheese")
async def admins_only_command(ctx, *, args):
'''do stuff'''
或使用 has_permissions
获得许可
@bot.command(pass_context=True)
@commands.has_permissions(administrator=True)
async def admins_only_command(ctx, *, args):
'''do stuff'''
这两个装饰器都是 Checks,如果它们失败,将引发 CommandError
的一些子类供您选择处理。
我正在写以下命令
@bot.command(pass_context=True)
async def admins_only_command(ctx, *, args):
'''do stuff
我如何才能将此命令限制为仅限管理员使用?我试着查看 ctx.author.roles.role
,它显示 @everyone
。我如何检查给定用户是否是 admin
?
有两种方法:通过角色白名单使用has_any_role
@bot.command(pass_context=True)
@commands.has_any_role("Big Cheese", "Medium Cheese")
async def admins_only_command(ctx, *, args):
'''do stuff'''
或使用 has_permissions
@bot.command(pass_context=True)
@commands.has_permissions(administrator=True)
async def admins_only_command(ctx, *, args):
'''do stuff'''
这两个装饰器都是 Checks,如果它们失败,将引发 CommandError
的一些子类供您选择处理。