mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
feat: 添加了对markdown的简单封装
This commit is contained in:
parent
0bf56f79f1
commit
ab5dc2200a
@ -2,11 +2,12 @@ import nonebot
|
||||
from nonebot.adapters.onebot import v11, v12
|
||||
from typing_extensions import Any
|
||||
|
||||
from .tools import de_escape
|
||||
from .typing import T_Bot
|
||||
|
||||
|
||||
async def send_markdown(markdown: str, bot: T_Bot, message_type: str, session_id: str) -> dict[str, Any]:
|
||||
markdown = markdown.replace("\n", r"\n").replace("\"", r'\\\"')
|
||||
formatted_md = de_escape(markdown).replace("\n", r"\n").replace("\"", r'\\\"')
|
||||
forward_data = await bot.call_api(
|
||||
api="send_private_forward_msg",
|
||||
user_id=bot.self_id,
|
||||
@ -20,7 +21,7 @@ async def send_markdown(markdown: str, bot: T_Bot, message_type: str, session_id
|
||||
{
|
||||
"type": "markdown",
|
||||
"data": {
|
||||
"content": '{"content":"%s"}' % markdown
|
||||
"content": '{"content":"%s"}' % formatted_md
|
||||
}
|
||||
}
|
||||
]
|
||||
@ -29,18 +30,28 @@ async def send_markdown(markdown: str, bot: T_Bot, message_type: str, session_id
|
||||
|
||||
]
|
||||
)
|
||||
data = await bot.send_msg(
|
||||
message_type=message_type,
|
||||
message=[
|
||||
v11.MessageSegment(
|
||||
type="longmsg",
|
||||
data={
|
||||
"id": forward_data["forward_id"]
|
||||
}
|
||||
)
|
||||
],
|
||||
user_id=session_id if message_type == "private" else None,
|
||||
group_id=session_id if message_type == "group" else None
|
||||
)
|
||||
nonebot.logger.info("已发送md:%s" % forward_data["forward_id"])
|
||||
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
|
||||
|
||||
|
||||
)
|
||||
return data
|
||||
|
Loading…
Reference in New Issue
Block a user