nonebot2/nonebot/internal/adapter/bot.py

162 lines
4.8 KiB
Python
Raw Normal View History

import abc
import asyncio
from functools import partial
from typing import TYPE_CHECKING, Any, Set, Union, Optional, Protocol
from nonebot.log import logger
from nonebot.config import Config
from nonebot.exception import MockApiException
2021-09-27 00:19:30 +08:00
from nonebot.typing import T_CalledAPIHook, T_CallingAPIHook
if TYPE_CHECKING:
from .event import Event
from .adapter import Adapter
from .message import Message, MessageSegment
class _ApiCall(Protocol):
async def __call__(self, **kwargs: Any) -> Any:
...
class Bot(abc.ABC):
2022-01-20 14:49:46 +08:00
"""Bot 基类。
用于处理上报消息并提供 API 调用接口
参数:
adapter: 协议适配器实例
self_id: 机器人 ID
"""
_calling_api_hook: Set[T_CallingAPIHook] = set()
2022-01-20 14:49:46 +08:00
"""call_api 时执行的函数"""
_called_api_hook: Set[T_CalledAPIHook] = set()
2022-01-20 14:49:46 +08:00
"""call_api 后执行的函数"""
2021-12-06 22:19:05 +08:00
def __init__(self, adapter: "Adapter", self_id: str):
2021-12-07 02:16:18 +08:00
self.adapter: "Adapter" = adapter
2022-01-20 14:49:46 +08:00
"""协议适配器实例"""
self.self_id: str = self_id
"""机器人 ID"""
def __repr__(self) -> str:
return f"Bot(type={self.type!r}, self_id={self.self_id!r})"
def __getattr__(self, name: str) -> "_ApiCall":
return partial(self.call_api, name)
@property
def type(self) -> str:
2022-01-20 14:49:46 +08:00
"""协议适配器名称"""
2021-12-06 22:19:05 +08:00
return self.adapter.get_name()
2021-12-06 22:19:05 +08:00
@property
def config(self) -> Config:
2022-01-20 14:49:46 +08:00
"""全局 NoneBot 配置"""
2021-12-06 22:19:05 +08:00
return self.adapter.config
async def call_api(self, api: str, **data: Any) -> Any:
2022-01-20 14:49:46 +08:00
"""调用机器人 API 接口,可以通过该函数或直接通过 bot 属性进行调用
2022-01-12 18:31:12 +08:00
参数:
2022-01-12 19:10:29 +08:00
api: API 名称
2022-01-20 14:49:46 +08:00
data: API 数据
2022-01-12 18:53:30 +08:00
用法:
```python
await bot.call_api("send_msg", message="hello world")
await bot.send_msg(message="hello world")
2022-01-12 18:53:30 +08:00
```
"""
result: Any = None
skip_calling_api: bool = False
exception: Optional[Exception] = None
if coros := [hook(self, api, data) for hook in self._calling_api_hook]:
try:
logger.debug("Running CallingAPI hooks...")
await asyncio.gather(*coros)
except MockApiException as e:
skip_calling_api = True
result = e.result
logger.debug(
f"Calling API {api} is cancelled. Return {result} instead."
)
except Exception as e:
logger.opt(colors=True, exception=e).error(
"<r><bg #f8bbd0>Error when running CallingAPI hook. "
"Running cancelled!</bg #f8bbd0></r>"
)
if not skip_calling_api:
try:
2021-12-21 18:22:14 +08:00
result = await self.adapter._call_api(self, api, **data)
except Exception as e:
exception = e
if coros := [
hook(self, exception, api, data, result) for hook in self._called_api_hook
]:
try:
logger.debug("Running CalledAPI hooks...")
await asyncio.gather(*coros)
except MockApiException as e:
result = e.result
logger.debug(
f"Calling API {api} result is mocked. Return {result} instead."
)
except Exception as e:
logger.opt(colors=True, exception=e).error(
"<r><bg #f8bbd0>Error when running CalledAPI hook. "
"Running cancelled!</bg #f8bbd0></r>"
)
if exception:
raise exception
return result
@abc.abstractmethod
async def send(
2022-01-20 14:49:46 +08:00
self,
event: "Event",
message: Union[str, "Message", "MessageSegment"],
**kwargs: Any,
) -> Any:
2022-01-20 14:49:46 +08:00
"""调用机器人基础发送消息接口
2022-01-12 18:31:12 +08:00
参数:
2022-01-12 19:10:29 +08:00
event: 上报事件
message: 要发送的消息
2022-01-20 14:49:46 +08:00
kwargs: 任意额外参数
"""
raise NotImplementedError
@classmethod
def on_calling_api(cls, func: T_CallingAPIHook) -> T_CallingAPIHook:
2022-01-20 14:49:46 +08:00
"""调用 api 预处理。
2022-01-23 11:48:35 +08:00
钩子函数参数:
2022-01-20 14:49:46 +08:00
- bot: 当前 bot 对象
- api: 调用的 api 名称
- data: api 调用的参数字典
"""
cls._calling_api_hook.add(func)
return func
@classmethod
def on_called_api(cls, func: T_CalledAPIHook) -> T_CalledAPIHook:
2022-01-20 14:49:46 +08:00
"""调用 api 后处理。
2022-01-23 11:48:35 +08:00
钩子函数参数:
2022-01-20 14:49:46 +08:00
- bot: 当前 bot 对象
- exception: 调用 api 时发生的错误
- api: 调用的 api 名称
- data: api 调用的参数字典
- result: api 调用的返回
"""
cls._called_api_hook.add(func)
return func