forked from bot/app
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 nonebot.adapters.onebot import v11, v12
|
||||||
from typing_extensions import Any
|
from typing_extensions import Any
|
||||||
|
|
||||||
|
from .tools import de_escape
|
||||||
from .typing import T_Bot
|
from .typing import T_Bot
|
||||||
|
|
||||||
|
|
||||||
async def send_markdown(markdown: str, bot: T_Bot, message_type: str, session_id: str) -> dict[str, Any]:
|
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(
|
forward_data = await bot.call_api(
|
||||||
api="send_private_forward_msg",
|
api="send_private_forward_msg",
|
||||||
user_id=bot.self_id,
|
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",
|
"type": "markdown",
|
||||||
"data": {
|
"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(
|
try:
|
||||||
message_type=message_type,
|
data = await bot.send_msg(
|
||||||
message=[
|
message_type=message_type,
|
||||||
v11.MessageSegment(
|
message=[
|
||||||
type="longmsg",
|
v11.MessageSegment(
|
||||||
data={
|
type="longmsg",
|
||||||
"id": forward_data["forward_id"]
|
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"])
|
)
|
||||||
|
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
|
return data
|
||||||
|
Loading…
Reference in New Issue
Block a user