2022-01-12 19:20:59 +08:00
|
|
|
|
"""
|
2022-01-12 19:24:01 +08:00
|
|
|
|
## 权限
|
2020-09-14 20:48:03 +08:00
|
|
|
|
|
2022-01-12 18:19:21 +08:00
|
|
|
|
每个 `Matcher` 拥有一个 `Permission` ,其中是 `PermissionChecker` 的集合,只要有一个 `PermissionChecker` 检查结果为 `True` 时就会继续运行。
|
2020-09-14 20:48:03 +08:00
|
|
|
|
|
2022-01-16 11:30:09 +08:00
|
|
|
|
FrontMatter:
|
|
|
|
|
sidebar_position: 6
|
|
|
|
|
description: nonebot.permission 模块
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
import asyncio
|
2021-11-21 12:36:44 +08:00
|
|
|
|
from contextlib import AsyncExitStack
|
2021-12-23 17:50:59 +08:00
|
|
|
|
from typing import Any, Set, Tuple, Union, NoReturn, Optional, Coroutine
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
2021-11-14 18:51:23 +08:00
|
|
|
|
from nonebot.adapters import Bot, Event
|
2021-12-12 18:19:08 +08:00
|
|
|
|
from nonebot.dependencies import Dependent
|
2021-12-01 19:21:31 +08:00
|
|
|
|
from nonebot.exception import SkippedException
|
2021-12-16 23:22:25 +08:00
|
|
|
|
from nonebot.typing import T_Handler, T_DependencyCache, T_PermissionChecker
|
2021-12-23 17:50:59 +08:00
|
|
|
|
from nonebot.params import (
|
|
|
|
|
BotParam,
|
|
|
|
|
EventType,
|
|
|
|
|
EventParam,
|
|
|
|
|
DependParam,
|
|
|
|
|
DefaultParam,
|
|
|
|
|
)
|
2020-12-06 02:30:19 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
2021-12-06 22:19:05 +08:00
|
|
|
|
async def _run_coro_with_catch(coro: Coroutine[Any, Any, Any]):
|
|
|
|
|
try:
|
|
|
|
|
return await coro
|
|
|
|
|
except SkippedException:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
class Permission:
|
2021-05-30 11:07:27 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
`Matcher` 规则类,当事件传递时,在 `Matcher` 运行前进行检查。
|
2021-05-30 11:07:27 +08:00
|
|
|
|
|
2022-01-12 18:53:30 +08:00
|
|
|
|
用法:
|
|
|
|
|
```python
|
2021-05-30 11:07:27 +08:00
|
|
|
|
Permission(async_function) | sync_function
|
|
|
|
|
# 等价于
|
|
|
|
|
from nonebot.utils import run_sync
|
|
|
|
|
Permission(async_function, run_sync(sync_function))
|
2022-01-12 18:53:30 +08:00
|
|
|
|
```
|
2021-05-30 11:07:27 +08:00
|
|
|
|
"""
|
2021-11-22 23:21:26 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
__slots__ = ("checkers",)
|
|
|
|
|
|
2021-12-12 18:19:08 +08:00
|
|
|
|
HANDLER_PARAM_TYPES = [
|
2021-12-23 17:50:59 +08:00
|
|
|
|
DependParam,
|
|
|
|
|
BotParam,
|
|
|
|
|
EventParam,
|
|
|
|
|
DefaultParam,
|
2021-12-12 18:19:08 +08:00
|
|
|
|
]
|
2021-11-21 12:36:44 +08:00
|
|
|
|
|
2021-12-12 18:19:08 +08:00
|
|
|
|
def __init__(self, *checkers: Union[T_PermissionChecker, Dependent[bool]]) -> None:
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:31:12 +08:00
|
|
|
|
参数:
|
2022-01-12 18:25:25 +08:00
|
|
|
|
*checkers: PermissionChecker
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2021-11-21 15:46:48 +08:00
|
|
|
|
|
2021-12-12 18:19:08 +08:00
|
|
|
|
self.checkers: Set[Dependent[bool]] = set(
|
2021-11-22 23:21:26 +08:00
|
|
|
|
checker
|
2021-12-12 18:19:08 +08:00
|
|
|
|
if isinstance(checker, Dependent)
|
|
|
|
|
else Dependent[bool].parse(
|
|
|
|
|
call=checker, allow_types=self.HANDLER_PARAM_TYPES
|
|
|
|
|
)
|
2021-11-22 23:21:26 +08:00
|
|
|
|
for checker in checkers
|
|
|
|
|
)
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
存储 `PermissionChecker`
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
2021-11-21 12:36:44 +08:00
|
|
|
|
async def __call__(
|
|
|
|
|
self,
|
|
|
|
|
bot: Bot,
|
|
|
|
|
event: Event,
|
|
|
|
|
stack: Optional[AsyncExitStack] = None,
|
2021-12-16 23:22:25 +08:00
|
|
|
|
dependency_cache: Optional[T_DependencyCache] = None,
|
2021-11-22 23:21:26 +08:00
|
|
|
|
) -> bool:
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:16:05 +08:00
|
|
|
|
检查是否满足某个权限
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2022-01-12 18:31:12 +08:00
|
|
|
|
参数:
|
2022-01-12 19:10:29 +08:00
|
|
|
|
bot: Bot 对象
|
|
|
|
|
event: Event 对象
|
|
|
|
|
stack: 异步上下文栈
|
|
|
|
|
dependency_cache: 依赖缓存
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
if not self.checkers:
|
|
|
|
|
return True
|
|
|
|
|
results = await asyncio.gather(
|
2021-11-22 23:21:26 +08:00
|
|
|
|
*(
|
2021-12-06 22:19:05 +08:00
|
|
|
|
_run_coro_with_catch(
|
|
|
|
|
checker(
|
|
|
|
|
bot=bot,
|
|
|
|
|
event=event,
|
2021-12-12 18:19:08 +08:00
|
|
|
|
stack=stack,
|
|
|
|
|
dependency_cache=dependency_cache,
|
2021-12-06 22:19:05 +08:00
|
|
|
|
)
|
2021-11-22 23:21:26 +08:00
|
|
|
|
)
|
|
|
|
|
for checker in self.checkers
|
2021-12-01 19:21:31 +08:00
|
|
|
|
),
|
2021-11-22 23:21:26 +08:00
|
|
|
|
)
|
2021-12-06 22:19:05 +08:00
|
|
|
|
return any(results)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
def __and__(self, other) -> NoReturn:
|
|
|
|
|
raise RuntimeError("And operation between Permissions is not allowed.")
|
|
|
|
|
|
2020-09-27 18:05:13 +08:00
|
|
|
|
def __or__(
|
2021-11-22 23:21:26 +08:00
|
|
|
|
self, other: Optional[Union["Permission", T_PermissionChecker]]
|
|
|
|
|
) -> "Permission":
|
2020-09-27 18:05:13 +08:00
|
|
|
|
if other is None:
|
|
|
|
|
return self
|
|
|
|
|
elif isinstance(other, Permission):
|
2021-11-21 12:36:44 +08:00
|
|
|
|
return Permission(*self.checkers, *other.checkers)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
else:
|
2021-11-21 12:36:44 +08:00
|
|
|
|
return Permission(*self.checkers, other)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class Message:
|
2021-12-23 17:50:59 +08:00
|
|
|
|
async def __call__(self, type: str = EventType()) -> bool:
|
|
|
|
|
return type == "message"
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class Notice:
|
2021-12-23 17:50:59 +08:00
|
|
|
|
async def __call__(self, type: str = EventType()) -> bool:
|
|
|
|
|
return type == "notice"
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class Request:
|
2021-12-23 17:50:59 +08:00
|
|
|
|
async def __call__(self, type: str = EventType()) -> bool:
|
|
|
|
|
return type == "request"
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class MetaEvent:
|
2021-12-23 17:50:59 +08:00
|
|
|
|
async def __call__(self, type: str = EventType()) -> bool:
|
|
|
|
|
return type == "meta_event"
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
MESSAGE = Permission(Message())
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
匹配任意 `message` 类型事件,仅在需要同时捕获不同类型事件时使用。优先使用 message type 的 Matcher。
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2021-12-06 10:10:51 +08:00
|
|
|
|
NOTICE = Permission(Notice())
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
匹配任意 `notice` 类型事件,仅在需要同时捕获不同类型事件时使用。优先使用 notice type 的 Matcher。
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2021-12-06 10:10:51 +08:00
|
|
|
|
REQUEST = Permission(Request())
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
匹配任意 `request` 类型事件,仅在需要同时捕获不同类型事件时使用。优先使用 request type 的 Matcher。
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2021-12-06 10:10:51 +08:00
|
|
|
|
METAEVENT = Permission(MetaEvent())
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
匹配任意 `meta_event` 类型事件,仅在需要同时捕获不同类型事件时使用。优先使用 meta_event type 的 Matcher。
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class User:
|
|
|
|
|
def __init__(
|
|
|
|
|
self, users: Tuple[str, ...], perm: Optional[Permission] = None
|
|
|
|
|
) -> None:
|
|
|
|
|
self.users = users
|
|
|
|
|
self.perm = perm
|
|
|
|
|
|
|
|
|
|
async def __call__(self, bot: Bot, event: Event) -> bool:
|
|
|
|
|
return bool(
|
|
|
|
|
event.get_session_id() in self.users
|
|
|
|
|
and (self.perm is None or await self.perm(bot, event))
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def USER(*users: str, perm: Optional[Permission] = None):
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2022-01-12 18:19:21 +08:00
|
|
|
|
`event` 的 `session_id` 在白名单内且满足 perm
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2022-01-12 18:31:12 +08:00
|
|
|
|
参数:
|
2022-01-12 18:25:25 +08:00
|
|
|
|
*user: 白名单
|
|
|
|
|
perm: 需要同时满足的权限
|
2020-09-14 20:48:03 +08:00
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
return Permission(User(users, perm))
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
class SuperUser:
|
|
|
|
|
async def __call__(self, bot: Bot, event: Event) -> bool:
|
2021-12-26 18:46:54 +08:00
|
|
|
|
return event.get_type() == "message" and (
|
|
|
|
|
f"{bot.adapter.get_name().split(maxsplit=1)[0].lower()}:{event.get_user_id()}"
|
|
|
|
|
in bot.config.superusers
|
|
|
|
|
or event.get_user_id() in bot.config.superusers # 兼容旧配置
|
2021-12-06 10:10:51 +08:00
|
|
|
|
)
|
2020-12-10 02:13:25 +08:00
|
|
|
|
|
|
|
|
|
|
2021-12-06 10:10:51 +08:00
|
|
|
|
SUPERUSER = Permission(SuperUser())
|
2020-12-10 02:13:25 +08:00
|
|
|
|
"""
|
2022-01-12 18:16:05 +08:00
|
|
|
|
匹配任意超级用户消息类型事件
|
2020-12-10 02:13:25 +08:00
|
|
|
|
"""
|