2021-01-29 21:19:13 +08:00
|
|
|
|
from enum import Enum
|
2021-01-30 21:51:51 +08:00
|
|
|
|
from typing import Any, Dict, Iterable, List, Optional, Union
|
2021-01-29 21:19:13 +08:00
|
|
|
|
|
|
|
|
|
from pydantic import validate_arguments
|
|
|
|
|
|
|
|
|
|
from nonebot.adapters import Message as BaseMessage
|
|
|
|
|
from nonebot.adapters import MessageSegment as BaseMessageSegment
|
|
|
|
|
from nonebot.typing import overrides
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageType(str, Enum):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""消息类型枚举类"""
|
2021-01-29 21:19:13 +08:00
|
|
|
|
SOURCE = 'Source'
|
|
|
|
|
QUOTE = 'Quote'
|
|
|
|
|
AT = 'At'
|
|
|
|
|
AT_ALL = 'AtAll'
|
|
|
|
|
FACE = 'Face'
|
|
|
|
|
PLAIN = 'Plain'
|
|
|
|
|
IMAGE = 'Image'
|
|
|
|
|
FLASH_IMAGE = 'FlashImage'
|
|
|
|
|
VOICE = 'Voice'
|
|
|
|
|
XML = 'Xml'
|
|
|
|
|
JSON = 'Json'
|
|
|
|
|
APP = 'App'
|
|
|
|
|
POKE = 'Poke'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MessageSegment(BaseMessageSegment):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
CQHTTP 协议 MessageSegment 适配。具体方法参考 `mirai-api-http 消息类型`_
|
|
|
|
|
|
|
|
|
|
.. _mirai-api-http 消息类型:
|
|
|
|
|
https://github.com/project-mirai/mirai-api-http/blob/master/docs/MessageType.md
|
|
|
|
|
"""
|
|
|
|
|
|
2021-01-29 21:19:13 +08:00
|
|
|
|
type: MessageType
|
|
|
|
|
data: Dict[str, Any]
|
|
|
|
|
|
|
|
|
|
@overrides(BaseMessageSegment)
|
|
|
|
|
@validate_arguments
|
|
|
|
|
def __init__(self, type: MessageType, **data):
|
2021-01-30 21:51:51 +08:00
|
|
|
|
super().__init__(type=type,
|
|
|
|
|
data={k: v for k, v in data.items() if v is not None})
|
2021-01-29 21:19:13 +08:00
|
|
|
|
|
|
|
|
|
@overrides(BaseMessageSegment)
|
|
|
|
|
def __str__(self) -> str:
|
2021-02-07 12:40:31 +08:00
|
|
|
|
return self.data['text'] if self.is_text() else repr(self)
|
|
|
|
|
|
|
|
|
|
def __repr__(self) -> str:
|
2021-01-29 21:19:13 +08:00
|
|
|
|
return '[mirai:%s]' % ','.join([
|
|
|
|
|
self.type.value,
|
|
|
|
|
*map(
|
|
|
|
|
lambda s: '%s=%r' % s,
|
|
|
|
|
self.data.items(),
|
|
|
|
|
),
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
@overrides(BaseMessageSegment)
|
|
|
|
|
def __add__(self, other) -> "MessageChain":
|
|
|
|
|
return MessageChain(self) + other
|
|
|
|
|
|
|
|
|
|
@overrides(BaseMessageSegment)
|
|
|
|
|
def __radd__(self, other) -> "MessageChain":
|
|
|
|
|
return MessageChain(other) + self
|
|
|
|
|
|
|
|
|
|
@overrides(BaseMessageSegment)
|
|
|
|
|
def is_text(self) -> bool:
|
|
|
|
|
return self.type == MessageType.PLAIN
|
|
|
|
|
|
|
|
|
|
def as_dict(self) -> Dict[str, Any]:
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""导出可以被正常json序列化的结构体"""
|
2021-01-29 21:19:13 +08:00
|
|
|
|
return {'type': self.type.value, **self.data}
|
|
|
|
|
|
2021-01-30 21:51:51 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
def source(cls, id: int, time: int):
|
|
|
|
|
return cls(type=MessageType.SOURCE, id=id, time=time)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def quote(cls, id: int, group_id: int, sender_id: int, target_id: int,
|
|
|
|
|
origin: "MessageChain"):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
生成回复引用消息段
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``id: int``: 被引用回复的原消息的message_id
|
|
|
|
|
* ``group_id: int``: 被引用回复的原消息所接收的群号,当为好友消息时为0
|
|
|
|
|
* ``sender_id: int``: 被引用回复的原消息的发送者的QQ号
|
|
|
|
|
* ``target_id: int``: 被引用回复的原消息的接收者者的QQ号(或群号)
|
|
|
|
|
* ``origin: MessageChain``: 被引用回复的原消息的消息链对象
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.QUOTE,
|
|
|
|
|
id=id,
|
|
|
|
|
groupId=group_id,
|
|
|
|
|
senderId=sender_id,
|
|
|
|
|
targetId=target_id,
|
|
|
|
|
origin=origin.export())
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def at(cls, target: int):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
@某个人
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``target: int``: 群员QQ号
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.AT, target=target)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def at_all(cls):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
@全体成员
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.AT_ALL)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def face(cls, face_id: Optional[int] = None, name: Optional[str] = None):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
发送QQ表情
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``face_id: Optional[int]``: QQ表情编号,可选,优先高于name
|
|
|
|
|
* ``name: Optional[str]``: QQ表情拼音,可选
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.FACE, faceId=face_id, name=name)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def plain(cls, text: str):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
纯文本消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``text: str``: 文字消息
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.PLAIN, text=text)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def image(cls,
|
|
|
|
|
image_id: Optional[str] = None,
|
|
|
|
|
url: Optional[str] = None,
|
|
|
|
|
path: Optional[str] = None):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
图片消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``image_id: Optional[str]``: 图片的image_id,群图片与好友图片格式不同。不为空时将忽略url属性
|
|
|
|
|
* ``url: Optional[str]``: 图片的URL,发送时可作网络图片的链接
|
|
|
|
|
* ``path: Optional[str]``: 图片的路径,发送本地图片
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.IMAGE, imageId=image_id, url=url, path=path)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def flash_image(cls,
|
|
|
|
|
image_id: Optional[str] = None,
|
|
|
|
|
url: Optional[str] = None,
|
|
|
|
|
path: Optional[str] = None):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
闪照消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
同 ``image``
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.FLASH_IMAGE,
|
|
|
|
|
imageId=image_id,
|
|
|
|
|
url=url,
|
|
|
|
|
path=path)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def voice(cls,
|
|
|
|
|
voice_id: Optional[str] = None,
|
|
|
|
|
url: Optional[str] = None,
|
|
|
|
|
path: Optional[str] = None):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
语音消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``voice_id: Optional[str]``: 语音的voice_id,不为空时将忽略url属性
|
|
|
|
|
* ``url: Optional[str]``: 语音的URL,发送时可作网络语音的链接
|
|
|
|
|
* ``path: Optional[str]``: 语音的路径,发送本地语音
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.FLASH_IMAGE,
|
|
|
|
|
imageId=voice_id,
|
|
|
|
|
url=url,
|
|
|
|
|
path=path)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def xml(cls, xml: str):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
XML消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``xml: str``: XML文本
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.XML, xml=xml)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def json(cls, json: str):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
Json消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``json: str``: Json文本
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.JSON, json=json)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def app(cls, content: str):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
应用程序消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``content: str``: 内容
|
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.APP, content=content)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def poke(cls, name: str):
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
戳一戳消息
|
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``name: str``: 戳一戳的类型
|
2021-02-01 14:24:45 +08:00
|
|
|
|
|
|
|
|
|
* ``Poke``: 戳一戳
|
|
|
|
|
* ``ShowLove``: 比心
|
|
|
|
|
* ``Like``: 点赞
|
|
|
|
|
* ``Heartbroken``: 心碎
|
|
|
|
|
* ``SixSixSix``: 666
|
|
|
|
|
* ``FangDaZhao``: 放大招
|
|
|
|
|
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return cls(type=MessageType.POKE, name=name)
|
|
|
|
|
|
2021-01-29 21:19:13 +08:00
|
|
|
|
|
2021-02-01 01:04:30 +08:00
|
|
|
|
class MessageChain(BaseMessage):
|
|
|
|
|
"""
|
|
|
|
|
Mirai 协议 Messaqge 适配
|
|
|
|
|
|
|
|
|
|
由于Mirai协议的Message实现较为特殊, 故使用MessageChain命名
|
|
|
|
|
"""
|
2021-01-29 21:19:13 +08:00
|
|
|
|
|
|
|
|
|
@overrides(BaseMessage)
|
2021-02-07 12:17:21 +08:00
|
|
|
|
def __init__(self, message: Union[List[Dict[str,
|
|
|
|
|
Any]], Iterable[MessageSegment],
|
|
|
|
|
MessageSegment, str], **kwargs):
|
2021-01-29 21:19:13 +08:00
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
|
if isinstance(message, MessageSegment):
|
|
|
|
|
self.append(message)
|
2021-02-07 12:17:21 +08:00
|
|
|
|
elif isinstance(message, str):
|
|
|
|
|
self.append(MessageSegment.plain(text=message))
|
2021-01-29 21:19:13 +08:00
|
|
|
|
elif isinstance(message, Iterable):
|
|
|
|
|
self.extend(self._construct(message))
|
|
|
|
|
else:
|
|
|
|
|
raise ValueError(
|
|
|
|
|
f'Type {type(message).__name__} is not supported in mirai adapter.'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@overrides(BaseMessage)
|
|
|
|
|
def _construct(
|
2021-01-31 16:02:59 +08:00
|
|
|
|
self, message: Union[List[Dict[str, Any]], Iterable[MessageSegment]]
|
2021-01-29 21:19:13 +08:00
|
|
|
|
) -> List[MessageSegment]:
|
|
|
|
|
if isinstance(message, str):
|
|
|
|
|
raise ValueError(
|
|
|
|
|
"String operation is not supported in mirai adapter")
|
|
|
|
|
return [
|
|
|
|
|
*map(
|
2021-01-31 16:02:59 +08:00
|
|
|
|
lambda x: x
|
|
|
|
|
if isinstance(x, MessageSegment) else MessageSegment(**x),
|
|
|
|
|
message)
|
2021-01-29 21:19:13 +08:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def export(self) -> List[Dict[str, Any]]:
|
2021-02-01 01:04:30 +08:00
|
|
|
|
"""导出为可以被正常json序列化的数组"""
|
2021-01-30 21:51:51 +08:00
|
|
|
|
return [
|
|
|
|
|
*map(lambda segment: segment.as_dict(), self.copy()) # type: ignore
|
|
|
|
|
]
|
2021-01-29 21:19:13 +08:00
|
|
|
|
|
2021-02-07 11:52:50 +08:00
|
|
|
|
def extract_first(self, *type: MessageType) -> Optional[MessageSegment]:
|
|
|
|
|
if not len(self):
|
|
|
|
|
return None
|
|
|
|
|
first: MessageSegment = self[0]
|
|
|
|
|
if (not type) or (first.type in type):
|
|
|
|
|
return self.pop(0)
|
|
|
|
|
return None
|
|
|
|
|
|
2021-01-29 21:19:13 +08:00
|
|
|
|
def __repr__(self) -> str:
|
|
|
|
|
return f'<{self.__class__.__name__} {[*self.copy()]}>'
|