2020-10-01 23:52:56 +08:00
|
|
|
|
"""
|
|
|
|
|
协议适配基类
|
2020-10-06 02:08:48 +08:00
|
|
|
|
============
|
2020-10-01 23:52:56 +08:00
|
|
|
|
|
|
|
|
|
各协议请继承以下基类,并使用 ``driver.register_adapter`` 注册适配器
|
|
|
|
|
"""
|
2020-07-05 20:39:34 +08:00
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
import abc
|
2020-12-09 19:57:49 +08:00
|
|
|
|
from typing_extensions import Literal
|
2020-08-13 15:23:04 +08:00
|
|
|
|
from functools import reduce, partial
|
2020-08-10 13:06:02 +08:00
|
|
|
|
from dataclasses import dataclass, field
|
2020-12-09 19:57:49 +08:00
|
|
|
|
from typing import Any, Dict, Union, Optional, Callable, Iterable, Awaitable, TYPE_CHECKING
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
2020-12-03 00:59:32 +08:00
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
2020-07-11 17:32:03 +08:00
|
|
|
|
from nonebot.config import Config
|
2020-12-06 02:30:19 +08:00
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2020-12-07 00:06:09 +08:00
|
|
|
|
from nonebot.drivers import Driver, WebSocket
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
2020-07-05 20:39:34 +08:00
|
|
|
|
|
2020-12-07 00:06:09 +08:00
|
|
|
|
class Bot(abc.ABC):
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""
|
|
|
|
|
Bot 基类。用于处理上报消息,并提供 API 调用接口。
|
|
|
|
|
"""
|
2020-07-05 20:39:34 +08:00
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-08-01 22:03:40 +08:00
|
|
|
|
def __init__(self,
|
2020-12-06 02:30:19 +08:00
|
|
|
|
driver: "Driver",
|
2020-08-07 17:51:57 +08:00
|
|
|
|
connection_type: str,
|
2020-08-01 22:03:40 +08:00
|
|
|
|
config: Config,
|
2020-08-13 15:23:04 +08:00
|
|
|
|
self_id: str,
|
2020-08-01 22:03:40 +08:00
|
|
|
|
*,
|
2020-12-06 02:30:19 +08:00
|
|
|
|
websocket: Optional["WebSocket"] = None):
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""
|
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
* ``driver: Driver``: Driver 对象
|
|
|
|
|
* ``connection_type: str``: http 或者 websocket
|
|
|
|
|
* ``config: Config``: Config 对象
|
|
|
|
|
* ``self_id: str``: 机器人 ID
|
|
|
|
|
* ``websocket: Optional[WebSocket]``: Websocket 连接对象
|
|
|
|
|
"""
|
2020-08-13 15:23:04 +08:00
|
|
|
|
self.driver = driver
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""Driver 对象"""
|
2020-08-07 17:51:57 +08:00
|
|
|
|
self.connection_type = connection_type
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""连接类型"""
|
2020-08-07 17:51:57 +08:00
|
|
|
|
self.config = config
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""Config 配置对象"""
|
2020-08-07 17:51:57 +08:00
|
|
|
|
self.self_id = self_id
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""机器人 ID"""
|
2020-08-07 17:51:57 +08:00
|
|
|
|
self.websocket = websocket
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""Websocket 连接对象"""
|
2020-08-07 17:51:57 +08:00
|
|
|
|
|
2020-08-13 15:23:04 +08:00
|
|
|
|
def __getattr__(self, name: str) -> Callable[..., Awaitable[Any]]:
|
|
|
|
|
return partial(self.call_api, name)
|
|
|
|
|
|
2020-08-07 17:51:57 +08:00
|
|
|
|
@property
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
|
def type(self) -> str:
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""Adapter 类型"""
|
2020-07-11 17:32:03 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-11-11 15:14:29 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
@abc.abstractmethod
|
2020-12-06 02:30:19 +08:00
|
|
|
|
async def check_permission(cls, driver: "Driver", connection_type: str,
|
2020-12-05 20:32:38 +08:00
|
|
|
|
headers: dict, body: Optional[dict]) -> str:
|
2020-11-13 01:46:26 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
检查连接请求是否合法的函数,如果合法则返回当前连接 ``唯一标识符``,通常为机器人 ID;如果不合法则抛出 ``RequestDenied`` 异常。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
* ``driver: Driver``: Driver 对象
|
|
|
|
|
* ``connection_type: str``: 连接类型
|
|
|
|
|
* ``headers: dict``: 请求头
|
|
|
|
|
* ``body: Optional[dict]``: 请求数据,WebSocket 连接该部分为空
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
:返回:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
- ``str``: 连接唯一标识符
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
:异常:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
- ``RequestDenied``: 请求非法
|
|
|
|
|
"""
|
2020-11-11 15:14:29 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-07-11 17:32:03 +08:00
|
|
|
|
async def handle_message(self, message: dict):
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
处理上报消息的函数,转换为 ``Event`` 事件后调用 ``nonebot.message.handle_event`` 进一步处理事件。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
* ``message: dict``: 收到的上报消息
|
|
|
|
|
"""
|
2020-07-11 17:32:03 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-10-01 23:52:56 +08:00
|
|
|
|
async def call_api(self, api: str, **data):
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
调用机器人 API 接口,可以通过该函数或直接通过 bot 属性进行调用
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
* ``api: str``: API 名称
|
|
|
|
|
* ``**data``: API 数据
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
:示例:
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
2020-11-13 01:46:26 +08:00
|
|
|
|
await bot.call_api("send_msg", message="hello world"})
|
2020-10-01 23:52:56 +08:00
|
|
|
|
await bot.send_msg(message="hello world")
|
|
|
|
|
"""
|
2020-07-11 17:32:03 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-08-25 15:23:10 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-07 00:31:14 +08:00
|
|
|
|
async def send(self, event: "Event",
|
|
|
|
|
message: Union[str, "Message", "MessageSegment"], **kwargs):
|
2020-10-01 23:52:56 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
调用机器人基础发送消息接口
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-01 23:52:56 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 17:03:05 +08:00
|
|
|
|
* ``event: Event``: 上报事件
|
|
|
|
|
* ``message: Union[str, Message, MessageSegment]``: 要发送的消息
|
2020-10-01 23:52:56 +08:00
|
|
|
|
* ``**kwargs``
|
|
|
|
|
"""
|
2020-08-25 15:23:10 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
2020-12-09 14:39:25 +08:00
|
|
|
|
class Event(abc.ABC, BaseModel):
|
2020-12-03 00:59:32 +08:00
|
|
|
|
|
2020-12-09 14:39:25 +08:00
|
|
|
|
class Config:
|
|
|
|
|
extra = "allow"
|
2020-12-03 00:59:32 +08:00
|
|
|
|
|
2020-08-10 14:50:12 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-09 14:39:25 +08:00
|
|
|
|
def get_type(self) -> Literal["message", "notice", "request", "meta_event"]:
|
2020-08-10 14:50:12 +08:00
|
|
|
|
raise NotImplementedError
|
2020-08-08 23:08:01 +08:00
|
|
|
|
|
2020-08-10 14:50:12 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-09 14:39:25 +08:00
|
|
|
|
def get_event_name(self) -> str:
|
2020-08-10 14:50:12 +08:00
|
|
|
|
raise NotImplementedError
|
2020-08-08 23:08:01 +08:00
|
|
|
|
|
2020-08-14 17:41:24 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-09 14:39:25 +08:00
|
|
|
|
def get_event_description(self) -> str:
|
2020-08-14 17:41:24 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-12-19 00:26:24 +08:00
|
|
|
|
def __str__(self) -> str:
|
2020-12-09 14:39:25 +08:00
|
|
|
|
return f"[{self.get_event_name()}]: {self.get_event_description()}"
|
2020-12-19 14:16:47 +08:00
|
|
|
|
|
|
|
|
|
def get_log_string(self) -> str:
|
|
|
|
|
return f"[{self.get_event_name()}]: {self.get_event_description()}"
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
@abc.abstractmethod
|
|
|
|
|
def get_user_id(self) -> str:
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-08-14 17:41:24 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-09 14:39:25 +08:00
|
|
|
|
def get_session_id(self) -> str:
|
2020-08-14 17:41:24 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-12-09 19:57:49 +08:00
|
|
|
|
@abc.abstractmethod
|
|
|
|
|
def get_message(self) -> "Message":
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
|
def get_plaintext(self) -> str:
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
@abc.abstractmethod
|
|
|
|
|
def is_tome(self) -> bool:
|
|
|
|
|
raise NotImplementedError
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
2020-07-15 20:39:59 +08:00
|
|
|
|
|
2020-08-10 14:50:12 +08:00
|
|
|
|
@dataclass
|
2020-12-07 00:06:09 +08:00
|
|
|
|
class MessageSegment(abc.ABC):
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""消息段基类"""
|
2020-08-10 14:50:12 +08:00
|
|
|
|
type: str
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
- 类型: ``str``
|
|
|
|
|
- 说明: 消息段类型
|
|
|
|
|
"""
|
2020-10-04 18:10:01 +08:00
|
|
|
|
data: Dict[str, Any] = field(default_factory=lambda: {})
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
- 类型: ``Dict[str, Union[str, list]]``
|
|
|
|
|
- 说明: 消息段数据
|
|
|
|
|
"""
|
2020-07-15 20:39:59 +08:00
|
|
|
|
|
2020-08-10 14:50:12 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-10 02:13:25 +08:00
|
|
|
|
def __str__(self) -> str:
|
2020-12-02 20:51:35 +08:00
|
|
|
|
"""该消息段所代表的 str,在命令匹配部分使用"""
|
2020-08-10 14:50:12 +08:00
|
|
|
|
raise NotImplementedError
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
2020-08-10 14:50:12 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-10 02:13:25 +08:00
|
|
|
|
def __add__(self, other) -> "Message":
|
2020-12-02 20:51:35 +08:00
|
|
|
|
"""你需要在这里实现不同消息段的合并:
|
|
|
|
|
比如:
|
|
|
|
|
if isinstance(other, str):
|
|
|
|
|
...
|
|
|
|
|
elif isinstance(other, MessageSegment):
|
|
|
|
|
...
|
|
|
|
|
注意:不能返回 self,需要返回一个新生成的对象
|
|
|
|
|
"""
|
2020-08-10 14:50:12 +08:00
|
|
|
|
raise NotImplementedError
|
2020-08-08 23:08:01 +08:00
|
|
|
|
|
2020-10-09 00:10:50 +08:00
|
|
|
|
def __getitem__(self, key):
|
|
|
|
|
return getattr(self, key)
|
|
|
|
|
|
2020-10-09 00:57:30 +08:00
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
|
return setattr(self, key, value)
|
|
|
|
|
|
2020-11-01 19:20:18 +08:00
|
|
|
|
def get(self, key, default=None):
|
|
|
|
|
return getattr(self, key, default)
|
|
|
|
|
|
2020-10-04 18:10:01 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-10 02:13:25 +08:00
|
|
|
|
def is_text(self) -> bool:
|
|
|
|
|
raise NotImplementedError
|
2020-10-04 18:10:01 +08:00
|
|
|
|
|
2020-08-08 23:08:01 +08:00
|
|
|
|
|
2020-12-07 00:06:09 +08:00
|
|
|
|
class Message(list, abc.ABC):
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""消息数组"""
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
def __init__(self,
|
2020-12-07 00:31:14 +08:00
|
|
|
|
message: Union[str, dict, list, BaseModel, MessageSegment,
|
|
|
|
|
"Message"] = None,
|
2020-07-18 18:18:43 +08:00
|
|
|
|
*args,
|
|
|
|
|
**kwargs):
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-03 00:59:32 +08:00
|
|
|
|
* ``message: Union[str, dict, list, BaseModel, MessageSegment, Message]``: 消息内容
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
2020-07-18 18:18:43 +08:00
|
|
|
|
super().__init__(*args, **kwargs)
|
2020-12-03 00:59:32 +08:00
|
|
|
|
if isinstance(message, (str, dict, list, BaseModel)):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
self.extend(self._construct(message))
|
2020-12-07 00:31:14 +08:00
|
|
|
|
elif isinstance(message, Message):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
self.extend(message)
|
2020-12-07 00:31:14 +08:00
|
|
|
|
elif isinstance(message, MessageSegment):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
self.append(message)
|
2020-07-11 17:32:03 +08:00
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return ''.join((str(seg) for seg in self))
|
2020-07-18 18:18:43 +08:00
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
@classmethod
|
2020-12-10 21:33:51 +08:00
|
|
|
|
def __get_validators__(cls):
|
2020-12-10 02:13:25 +08:00
|
|
|
|
yield cls._validate
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def _validate(cls, value):
|
|
|
|
|
return cls(value)
|
|
|
|
|
|
2020-07-18 18:18:43 +08:00
|
|
|
|
@staticmethod
|
2020-08-08 23:08:01 +08:00
|
|
|
|
@abc.abstractmethod
|
2020-12-06 02:30:19 +08:00
|
|
|
|
def _construct(
|
2020-12-07 00:31:14 +08:00
|
|
|
|
msg: Union[str, dict, list, BaseModel]) -> Iterable[MessageSegment]:
|
2020-07-18 18:18:43 +08:00
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
2020-12-07 00:31:14 +08:00
|
|
|
|
def __add__(self, other: Union[str, MessageSegment,
|
|
|
|
|
"Message"]) -> "Message":
|
2020-07-18 18:18:43 +08:00
|
|
|
|
result = self.__class__(self)
|
|
|
|
|
if isinstance(other, str):
|
|
|
|
|
result.extend(self._construct(other))
|
2020-12-07 00:31:14 +08:00
|
|
|
|
elif isinstance(other, MessageSegment):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
result.append(other)
|
2020-12-07 00:31:14 +08:00
|
|
|
|
elif isinstance(other, Message):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
result.extend(other)
|
|
|
|
|
return result
|
|
|
|
|
|
2020-12-07 00:31:14 +08:00
|
|
|
|
def __radd__(self, other: Union[str, MessageSegment, "Message"]):
|
2020-07-18 18:18:43 +08:00
|
|
|
|
result = self.__class__(other)
|
|
|
|
|
return result.__add__(self)
|
|
|
|
|
|
2020-12-07 00:31:14 +08:00
|
|
|
|
def append(self, obj: Union[str, MessageSegment]) -> "Message":
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
添加一个消息段到消息数组末尾
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
* ``obj: Union[str, MessageSegment]``: 要添加的消息段
|
|
|
|
|
"""
|
2020-12-07 00:31:14 +08:00
|
|
|
|
if isinstance(obj, MessageSegment):
|
2020-12-02 20:51:35 +08:00
|
|
|
|
super().append(obj)
|
2020-07-18 18:18:43 +08:00
|
|
|
|
elif isinstance(obj, str):
|
|
|
|
|
self.extend(self._construct(obj))
|
|
|
|
|
else:
|
|
|
|
|
raise ValueError(f"Unexpected type: {type(obj)} {obj}")
|
|
|
|
|
return self
|
|
|
|
|
|
2020-12-07 00:31:14 +08:00
|
|
|
|
def extend(self, obj: Union["Message",
|
|
|
|
|
Iterable[MessageSegment]]) -> "Message":
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
拼接一个消息数组或多个消息段到消息数组末尾
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
* ``obj: Union[Message, Iterable[MessageSegment]]``: 要添加的消息数组
|
|
|
|
|
"""
|
2020-07-18 18:18:43 +08:00
|
|
|
|
for segment in obj:
|
|
|
|
|
self.append(segment)
|
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
def reduce(self) -> None:
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-02 20:51:35 +08:00
|
|
|
|
缩减消息数组,即按 MessageSegment 的实现拼接相邻消息段
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
2020-07-18 18:18:43 +08:00
|
|
|
|
index = 0
|
|
|
|
|
while index < len(self):
|
2020-12-10 02:13:25 +08:00
|
|
|
|
if index > 0 and self[index -
|
|
|
|
|
1].is_text() and self[index].is_text():
|
2020-12-02 20:51:35 +08:00
|
|
|
|
self[index - 1] += self[index]
|
2020-07-18 18:18:43 +08:00
|
|
|
|
del self[index]
|
|
|
|
|
else:
|
|
|
|
|
index += 1
|
|
|
|
|
|
|
|
|
|
def extract_plain_text(self) -> str:
|
2020-10-03 18:18:43 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-03 18:18:43 +08:00
|
|
|
|
提取消息内纯文本消息
|
|
|
|
|
"""
|
2020-07-18 18:18:43 +08:00
|
|
|
|
|
2020-12-07 00:31:14 +08:00
|
|
|
|
def _concat(x: str, y: MessageSegment) -> str:
|
2020-12-10 02:13:25 +08:00
|
|
|
|
return f"{x} {y}" if y.is_text() else x
|
2020-07-18 18:18:43 +08:00
|
|
|
|
|
2020-10-03 14:56:38 +08:00
|
|
|
|
plain_text = reduce(_concat, self, "")
|
2020-12-03 19:12:46 +08:00
|
|
|
|
return plain_text[1:] if plain_text else plain_text
|