2024-03-19 21:56:31 +08:00
|
|
|
import nonebot
|
|
|
|
from nonebot.adapters.onebot import v11, v12
|
|
|
|
from typing_extensions import Any
|
|
|
|
|
2024-03-19 22:43:55 +08:00
|
|
|
from .tools import de_escape
|
2024-03-19 21:56:31 +08:00
|
|
|
from .typing import T_Bot
|
|
|
|
|
|
|
|
|
|
|
|
async def send_markdown(markdown: str, bot: T_Bot, message_type: str, session_id: str) -> dict[str, Any]:
|
2024-03-19 22:43:55 +08:00
|
|
|
formatted_md = de_escape(markdown).replace("\n", r"\n").replace("\"", r'\\\"')
|
2024-03-19 21:56:31 +08:00
|
|
|
forward_data = await bot.call_api(
|
|
|
|
api="send_private_forward_msg",
|
|
|
|
user_id=bot.self_id,
|
|
|
|
messages=[
|
|
|
|
v11.MessageSegment(
|
|
|
|
type="node",
|
|
|
|
data={
|
|
|
|
"name": "Liteyuki.OneBot",
|
|
|
|
"uin": bot.self_id,
|
|
|
|
"content": [
|
|
|
|
{
|
|
|
|
"type": "markdown",
|
|
|
|
"data": {
|
2024-03-19 22:43:55 +08:00
|
|
|
"content": '{"content":"%s"}' % formatted_md
|
2024-03-19 21:56:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
]
|
|
|
|
)
|
2024-03-19 22:43:55 +08:00
|
|
|
try:
|
|
|
|
data = await bot.send_msg(
|
|
|
|
message_type=message_type,
|
|
|
|
message=[
|
|
|
|
v11.MessageSegment(
|
|
|
|
type="longmsg",
|
|
|
|
data={
|
|
|
|
"id": forward_data["forward_id"]
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
nonebot.logger.warning("send_markdown error, send as plane text: %s", e)
|
|
|
|
data = await bot.send_msg(
|
|
|
|
message_type=message_type,
|
|
|
|
message=markdown,
|
|
|
|
user_id=session_id if message_type == "private" else None,
|
|
|
|
group_id=session_id if message_type == "group" else None
|
|
|
|
|
|
|
|
|
|
|
|
)
|
2024-03-19 21:56:31 +08:00
|
|
|
return data
|