nonebot2/nonebot/permission.py

208 lines
6.0 KiB
Python
Raw Normal View History

2020-08-17 16:09:41 +08:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2020-09-14 20:48:03 +08:00
"""
权限
====
每个 ``Matcher`` 拥有一个 ``Permission`` 其中是 **异步** ``PermissionChecker`` 的集合只要有一个 ``PermissionChecker`` 检查结果为 ``True`` 时就会继续运行
\:\:\:tip 提示
``PermissionChecker`` 既可以是 async function 也可以是 sync function
\:\:\:
"""
2020-08-17 16:09:41 +08:00
import asyncio
from nonebot.utils import run_sync
2020-09-13 13:01:23 +08:00
from nonebot.typing import Bot, Event, Union, NoReturn, Callable, Awaitable, PermissionChecker
2020-08-17 16:09:41 +08:00
class Permission:
__slots__ = ("checkers",)
2020-09-13 13:01:23 +08:00
def __init__(self, *checkers: Callable[[Bot, Event],
Awaitable[bool]]) -> None:
2020-09-14 20:48:03 +08:00
"""
:参数:
* ``*checkers: Callable[[Bot, Event], Awaitable[bool]]``: **异步** PermissionChecker
"""
2020-09-13 13:01:23 +08:00
self.checkers = set(checkers)
2020-09-14 20:48:03 +08:00
"""
:说明:
存储 ``PermissionChecker``
:类型:
* ``Set[Callable[[Bot, Event], Awaitable[bool]]]``
"""
2020-08-17 16:09:41 +08:00
async def __call__(self, bot: Bot, event: Event) -> bool:
2020-09-14 20:48:03 +08:00
"""
:说明:
检查是否满足某个权限
:参数:
* ``bot: Bot``: Bot 对象
* ``event: Event``: Event 对象
:返回:
- ``bool``
"""
2020-08-17 16:09:41 +08:00
if not self.checkers:
return True
results = await asyncio.gather(
*map(lambda c: c(bot, event), self.checkers))
return any(results)
def __and__(self, other) -> NoReturn:
raise RuntimeError("And operation between Permissions is not allowed.")
def __or__(self, other: Union["Permission",
PermissionChecker]) -> "Permission":
2020-09-13 13:01:23 +08:00
checkers = self.checkers.copy()
2020-08-17 16:09:41 +08:00
if isinstance(other, Permission):
2020-09-13 13:01:23 +08:00
checkers |= other.checkers
2020-08-17 16:09:41 +08:00
elif asyncio.iscoroutinefunction(other):
2020-09-13 22:36:40 +08:00
checkers.add(other) # type: ignore
2020-08-17 16:09:41 +08:00
else:
2020-09-13 13:01:23 +08:00
checkers.add(run_sync(other))
2020-08-17 16:09:41 +08:00
return Permission(*checkers)
async def _message(bot: Bot, event: Event) -> bool:
return event.type == "message"
async def _notice(bot: Bot, event: Event) -> bool:
return event.type == "notice"
async def _request(bot: Bot, event: Event) -> bool:
return event.type == "request"
async def _metaevent(bot: Bot, event: Event) -> bool:
return event.type == "meta_event"
MESSAGE = Permission(_message)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意 ``message`` 类型事件仅在需要同时捕获不同类型事件时使用优先使用 message type Matcher
"""
2020-08-17 16:09:41 +08:00
NOTICE = Permission(_notice)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意 ``notice`` 类型事件仅在需要同时捕获不同类型事件时使用优先使用 notice type Matcher
"""
2020-08-17 16:09:41 +08:00
REQUEST = Permission(_request)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意 ``request`` 类型事件仅在需要同时捕获不同类型事件时使用优先使用 request type Matcher
"""
2020-08-17 16:09:41 +08:00
METAEVENT = Permission(_metaevent)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意 ``meta_event`` 类型事件仅在需要同时捕获不同类型事件时使用优先使用 meta_event type Matcher
"""
2020-08-17 16:09:41 +08:00
def USER(*user: int, perm: Permission = Permission()):
2020-09-14 20:48:03 +08:00
"""
:说明:
在白名单内且满足 perm
:参数:
* ``*user: int``: 白名单
* ``perm: Permission``: 需要同时满足的权限
"""
2020-08-17 16:09:41 +08:00
async def _user(bot: Bot, event: Event) -> bool:
return event.type == "message" and event.user_id in user and await perm(
bot, event)
return Permission(_user)
async def _private(bot: Bot, event: Event) -> bool:
return event.type == "message" and event.detail_type == "private"
async def _private_friend(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "private" and
event.sub_type == "friend")
async def _private_group(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "private" and
event.sub_type == "group")
async def _private_other(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "private" and
event.sub_type == "other")
PRIVATE = Permission(_private)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意私聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
PRIVATE_FRIEND = Permission(_private_friend)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意好友私聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
PRIVATE_GROUP = Permission(_private_group)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意群临时私聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
PRIVATE_OTHER = Permission(_private_other)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意其他私聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
async def _group(bot: Bot, event: Event) -> bool:
return event.type == "message" and event.detail_type == "group"
async def _group_member(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "group" and
event.sender.get("role") == "member")
async def _group_admin(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "group" and
event.sender.get("role") == "admin")
async def _group_owner(bot: Bot, event: Event) -> bool:
return (event.type == "message" and event.detail_type == "group" and
event.sender.get("role") == "owner")
GROUP = Permission(_group)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意群聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
GROUP_MEMBER = Permission(_group_member)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意群员群聊消息类型事件
\:\:\:warning 警告
该权限通过 event.sender 进行判断且不包含管理员以及群主
\:\:\:
"""
2020-08-17 16:09:41 +08:00
GROUP_ADMIN = Permission(_group_admin)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意群管理员群聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
GROUP_OWNER = Permission(_group_owner)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意群主群聊消息类型事件
"""
2020-08-17 16:09:41 +08:00
async def _superuser(bot: Bot, event: Event) -> bool:
return event.type == "message" and event.user_id in bot.config.superusers
SUPERUSER = Permission(_superuser)
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意超级用户消息类型事件
"""
2020-08-17 16:09:41 +08:00
EVERYBODY = MESSAGE
2020-09-14 20:48:03 +08:00
"""
- **说明**: 匹配任意消息类型事件
"""