2023-04-21 16:36:59 +08:00
|
|
|
|
# MessageSource的适配器
|
|
|
|
|
import typing
|
|
|
|
|
|
|
|
|
|
import mirai
|
|
|
|
|
|
2023-04-21 17:51:58 +08:00
|
|
|
|
|
2023-04-21 16:36:59 +08:00
|
|
|
|
class MessageSourceAdapter:
|
|
|
|
|
def __init__(self, config: dict):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def send_message(
|
|
|
|
|
self,
|
|
|
|
|
target_type: str,
|
|
|
|
|
target_id: str,
|
|
|
|
|
message: mirai.MessageChain
|
|
|
|
|
):
|
|
|
|
|
"""发送消息
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
target_type (str): 目标类型,`person`或`group`
|
|
|
|
|
target_id (str): 目标ID
|
|
|
|
|
message (mirai.MessageChain): YiriMirai库的消息链
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
def reply_message(
|
|
|
|
|
self,
|
|
|
|
|
message_source: mirai.MessageEvent,
|
2023-04-21 17:51:58 +08:00
|
|
|
|
message: mirai.MessageChain,
|
|
|
|
|
quote_origin: bool = False
|
2023-04-21 16:36:59 +08:00
|
|
|
|
):
|
|
|
|
|
"""回复消息
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
message_source (mirai.MessageEvent): YiriMirai消息源事件
|
|
|
|
|
message (mirai.MessageChain): YiriMirai库的消息链
|
2023-04-21 17:51:58 +08:00
|
|
|
|
quote_origin (bool, optional): 是否引用原消息. Defaults to False.
|
2023-04-21 16:36:59 +08:00
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
2023-04-21 17:51:58 +08:00
|
|
|
|
|
|
|
|
|
def is_muted(self, group_id: int) -> bool:
|
|
|
|
|
"""获取账号是否在指定群被禁言"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2023-04-21 16:36:59 +08:00
|
|
|
|
def register_listener(
|
|
|
|
|
self,
|
|
|
|
|
event_type: typing.Type[mirai.Event],
|
|
|
|
|
callback: typing.Callable[[mirai.Event], None]
|
|
|
|
|
):
|
|
|
|
|
"""注册事件监听器
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event_type (typing.Type[mirai.Event]): YiriMirai事件类型
|
|
|
|
|
callback (typing.Callable[[mirai.Event], None]): 回调函数,接收一个参数,为YiriMirai事件
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
def unregister_listener(
|
|
|
|
|
self,
|
|
|
|
|
event_type: typing.Type[mirai.Event],
|
|
|
|
|
callback: typing.Callable[[mirai.Event], None]
|
|
|
|
|
):
|
|
|
|
|
"""注销事件监听器
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event_type (typing.Type[mirai.Event]): YiriMirai事件类型
|
|
|
|
|
callback (typing.Callable[[mirai.Event], None]): 回调函数,接收一个参数,为YiriMirai事件
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
def run_sync(self):
|
|
|
|
|
"""以阻塞的方式运行适配器"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
def kill(self) -> bool:
|
|
|
|
|
"""关闭适配器
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
bool: 是否成功关闭,热重载时若此函数返回False则不会重载MessageSource底层
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
2023-04-23 15:58:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageConverter:
|
|
|
|
|
"""消息链转换器基类"""
|
|
|
|
|
@staticmethod
|
|
|
|
|
def yiri2target(message_chain: mirai.MessageChain):
|
|
|
|
|
"""将YiriMirai消息链转换为目标消息链
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
message_chain (mirai.MessageChain): YiriMirai消息链
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
typing.Any: 目标消息链
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def target2yiri(message_chain: typing.Any) -> mirai.MessageChain:
|
|
|
|
|
"""将目标消息链转换为YiriMirai消息链
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
message_chain (typing.Any): 目标消息链
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
mirai.MessageChain: YiriMirai消息链
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class EventConverter:
|
|
|
|
|
"""事件转换器基类"""
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def yiri2target(event: typing.Type[mirai.Event]):
|
|
|
|
|
"""将YiriMirai事件转换为目标事件
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event (typing.Type[mirai.Event]): YiriMirai事件
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
typing.Any: 目标事件
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def target2yiri(event: typing.Any) -> mirai.Event:
|
|
|
|
|
"""将目标事件的调用参数转换为YiriMirai的事件参数对象
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
event (typing.Any): 目标事件
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
typing.Type[mirai.Event]: YiriMirai事件
|
|
|
|
|
"""
|
|
|
|
|
raise NotImplementedError
|