2021-02-01 16:31:51 +08:00
|
|
|
|
import re
|
2021-02-01 13:19:37 +08:00
|
|
|
|
from functools import wraps
|
2021-11-22 23:21:26 +08:00
|
|
|
|
from typing import TYPE_CHECKING, Any, TypeVar, Callable, Optional, Coroutine
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
import httpx
|
2021-02-01 16:31:51 +08:00
|
|
|
|
from pydantic import Extra, ValidationError, validate_arguments
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
from nonebot.log import logger
|
2021-11-22 23:21:26 +08:00
|
|
|
|
import nonebot.exception as exception
|
2021-02-07 11:52:50 +08:00
|
|
|
|
from nonebot.message import handle_event
|
2021-02-01 16:31:51 +08:00
|
|
|
|
from nonebot.utils import escape_tag, logger_wrapper
|
|
|
|
|
|
2021-03-29 21:02:50 +08:00
|
|
|
|
from .message import MessageType, MessageSegment
|
2021-11-22 23:21:26 +08:00
|
|
|
|
from .event import Event, GroupMessage, MessageEvent, MessageSource
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
|
from .bot import Bot
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
_AsyncCallable = TypeVar("_AsyncCallable", bound=Callable[..., Coroutine])
|
|
|
|
|
_AnyCallable = TypeVar("_AnyCallable", bound=Callable)
|
|
|
|
|
|
|
|
|
|
|
2021-02-01 16:31:51 +08:00
|
|
|
|
class Log:
|
2021-02-05 20:09:19 +08:00
|
|
|
|
@staticmethod
|
2021-02-07 12:40:31 +08:00
|
|
|
|
def log(level: str, message: str, exception: Optional[Exception] = None):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
logger = logger_wrapper("MIRAI")
|
|
|
|
|
message = "<e>" + escape_tag(message) + "</e>"
|
2021-02-07 12:40:31 +08:00
|
|
|
|
logger(level=level.upper(), message=message, exception=exception)
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def info(cls, message: Any):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
cls.log("INFO", str(message))
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def debug(cls, message: Any):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
cls.log("DEBUG", str(message))
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def warn(cls, message: Any):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
cls.log("WARNING", str(message))
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def error(cls, message: Any, exception: Optional[Exception] = None):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
cls.log("ERROR", str(message), exception=exception)
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
|
2021-02-01 13:19:37 +08:00
|
|
|
|
class ActionFailed(exception.ActionFailed):
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
API 请求成功返回数据,但 API 操作失败。
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
super().__init__("mirai")
|
2021-02-01 13:19:37 +08:00
|
|
|
|
self.data = kwargs.copy()
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
return self.__class__.__name__ + "(%s)" % ", ".join(
|
|
|
|
|
map(lambda m: "%s=%r" % m, self.data.items())
|
|
|
|
|
)
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidArgument(exception.AdapterException):
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2021-03-29 21:02:50 +08:00
|
|
|
|
|
2021-02-01 13:19:37 +08:00
|
|
|
|
调用API的参数出错
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
super().__init__("mirai")
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def catch_network_error(function: _AsyncCallable) -> _AsyncCallable:
|
2021-06-18 01:23:13 +08:00
|
|
|
|
r"""
|
2021-02-01 13:19:37 +08:00
|
|
|
|
:说明:
|
|
|
|
|
|
2021-02-01 13:50:14 +08:00
|
|
|
|
捕捉函数抛出的httpx网络异常并释放 ``NetworkError`` 异常
|
|
|
|
|
|
|
|
|
|
处理返回数据, 在code不为0时释放 ``ActionFailed`` 异常
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
\:\:\: warning
|
|
|
|
|
此装饰器只支持使用了httpx的异步函数
|
|
|
|
|
\:\:\:
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
@wraps(function)
|
|
|
|
|
async def wrapper(*args, **kwargs):
|
|
|
|
|
try:
|
|
|
|
|
data = await function(*args, **kwargs)
|
|
|
|
|
except httpx.HTTPError:
|
2021-11-22 23:21:26 +08:00
|
|
|
|
raise exception.NetworkError("mirai")
|
|
|
|
|
logger.opt(colors=True).debug(
|
|
|
|
|
"<b>Mirai API returned data:</b> " f"<y>{escape_tag(str(data))}</y>"
|
|
|
|
|
)
|
2021-02-01 13:19:37 +08:00
|
|
|
|
if isinstance(data, dict):
|
2021-11-22 23:21:26 +08:00
|
|
|
|
if data.get("code", 0) != 0:
|
2021-02-01 13:19:37 +08:00
|
|
|
|
raise ActionFailed(**data)
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
return wrapper # type: ignore
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def argument_validation(function: _AnyCallable) -> _AnyCallable:
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
通过函数签名中的类型注解来对传入参数进行运行时校验
|
2021-03-29 21:02:50 +08:00
|
|
|
|
|
2021-02-01 13:50:14 +08:00
|
|
|
|
会在参数出错时释放 ``InvalidArgument`` 异常
|
2021-02-01 13:19:37 +08:00
|
|
|
|
"""
|
2021-11-22 23:21:26 +08:00
|
|
|
|
function = validate_arguments(
|
|
|
|
|
config={"arbitrary_types_allowed": True, "extra": Extra.forbid}
|
|
|
|
|
)(function)
|
2021-02-01 13:19:37 +08:00
|
|
|
|
|
|
|
|
|
@wraps(function)
|
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
|
try:
|
|
|
|
|
return function(*args, **kwargs)
|
|
|
|
|
except ValidationError:
|
|
|
|
|
raise InvalidArgument
|
|
|
|
|
|
|
|
|
|
return wrapper # type: ignore
|
2021-02-01 16:31:51 +08:00
|
|
|
|
|
|
|
|
|
|
2021-02-07 11:52:50 +08:00
|
|
|
|
def process_source(bot: "Bot", event: MessageEvent) -> MessageEvent:
|
|
|
|
|
source = event.message_chain.extract_first(MessageType.SOURCE)
|
|
|
|
|
if source is not None:
|
|
|
|
|
event.source = MessageSource.parse_obj(source.data)
|
|
|
|
|
return event
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_at(bot: "Bot", event: GroupMessage) -> GroupMessage:
|
|
|
|
|
at = event.message_chain.extract_first(MessageType.AT)
|
|
|
|
|
if at is not None:
|
2021-11-22 23:21:26 +08:00
|
|
|
|
if at.data["target"] == event.self_id:
|
2021-02-07 11:52:50 +08:00
|
|
|
|
event.to_me = True
|
|
|
|
|
else:
|
|
|
|
|
event.message_chain.insert(0, at)
|
2021-03-29 21:02:50 +08:00
|
|
|
|
if not event.message_chain:
|
2021-11-22 23:21:26 +08:00
|
|
|
|
event.message_chain.append(MessageSegment.plain(""))
|
2021-02-07 11:52:50 +08:00
|
|
|
|
return event
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_nick(bot: "Bot", event: GroupMessage) -> GroupMessage:
|
|
|
|
|
plain = event.message_chain.extract_first(MessageType.PLAIN)
|
|
|
|
|
if plain is not None:
|
|
|
|
|
text = str(plain)
|
2021-11-22 23:21:26 +08:00
|
|
|
|
nick_regex = "|".join(filter(lambda x: x, bot.config.nickname))
|
2021-02-01 16:31:51 +08:00
|
|
|
|
matched = re.search(rf"^({nick_regex})([\s,,]*|$)", text, re.IGNORECASE)
|
2021-02-07 11:52:50 +08:00
|
|
|
|
if matched is not None:
|
2021-02-07 12:17:21 +08:00
|
|
|
|
event.to_me = True
|
2021-02-07 11:52:50 +08:00
|
|
|
|
nickname = matched.group(1)
|
2021-11-22 23:21:26 +08:00
|
|
|
|
Log.info(f"User is calling me {nickname}")
|
|
|
|
|
plain.data["text"] = text[matched.end() :]
|
2021-02-07 11:52:50 +08:00
|
|
|
|
event.message_chain.insert(0, plain)
|
2021-02-01 16:31:51 +08:00
|
|
|
|
return event
|
2021-02-07 11:52:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_reply(bot: "Bot", event: GroupMessage) -> GroupMessage:
|
|
|
|
|
reply = event.message_chain.extract_first(MessageType.QUOTE)
|
|
|
|
|
if reply is not None:
|
2021-11-22 23:21:26 +08:00
|
|
|
|
if reply.data["senderId"] == event.self_id:
|
2021-02-07 11:52:50 +08:00
|
|
|
|
event.to_me = True
|
|
|
|
|
else:
|
|
|
|
|
event.message_chain.insert(0, reply)
|
|
|
|
|
return event
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def process_event(bot: "Bot", event: Event) -> None:
|
|
|
|
|
if isinstance(event, MessageEvent):
|
2021-02-07 12:40:31 +08:00
|
|
|
|
Log.debug(event.message_chain)
|
2021-02-07 11:52:50 +08:00
|
|
|
|
event = process_source(bot, event)
|
|
|
|
|
if isinstance(event, GroupMessage):
|
|
|
|
|
event = process_nick(bot, event)
|
|
|
|
|
event = process_at(bot, event)
|
2021-02-07 21:26:45 +08:00
|
|
|
|
event = process_reply(bot, event)
|
2021-03-29 21:02:50 +08:00
|
|
|
|
await handle_event(bot, event)
|