2023-03-05 14:07:25 +00:00
|
|
|
from nio import AsyncClient
|
2023-04-11 05:41:26 +00:00
|
|
|
import re
|
|
|
|
import markdown
|
|
|
|
|
2023-03-05 14:07:25 +00:00
|
|
|
|
2023-05-30 02:26:39 +00:00
|
|
|
async def send_room_message(
|
|
|
|
client: AsyncClient,
|
|
|
|
room_id: str,
|
|
|
|
reply_message: str,
|
|
|
|
sender_id: str = "",
|
|
|
|
user_message: str = "",
|
|
|
|
reply_to_event_id: str = "",
|
|
|
|
markdown_formatted: bool = False,
|
|
|
|
) -> None:
|
|
|
|
NORMAL_BODY = content = {
|
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": reply_message,
|
|
|
|
}
|
|
|
|
if reply_to_event_id == "":
|
2023-04-11 05:41:26 +00:00
|
|
|
if markdown_formatted:
|
2023-04-14 11:03:34 +00:00
|
|
|
# only format message contains multiline codes, *, |
|
|
|
|
if re.search(r"```|\*|\|", reply_message) is not None:
|
2023-04-11 05:41:26 +00:00
|
|
|
content = {
|
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": reply_message,
|
|
|
|
"format": "org.matrix.custom.html",
|
2023-05-30 02:26:39 +00:00
|
|
|
"formatted_body": markdown.markdown(
|
|
|
|
reply_message, extensions=["nl2br", "tables", "fenced_code"]
|
|
|
|
),
|
2023-04-11 05:41:26 +00:00
|
|
|
}
|
|
|
|
else:
|
|
|
|
content = NORMAL_BODY
|
|
|
|
|
|
|
|
else:
|
|
|
|
content = NORMAL_BODY
|
2023-03-22 14:28:22 +00:00
|
|
|
else:
|
2023-05-30 02:26:39 +00:00
|
|
|
body = r"> <" + sender_id + r"> " + user_message + r"\n\n" + reply_message
|
|
|
|
format = r"org.matrix.custom.html"
|
|
|
|
formatted_body = (
|
|
|
|
r'<mx-reply><blockquote><a href="https://matrix.to/#/'
|
|
|
|
+ room_id
|
|
|
|
+ r"/"
|
|
|
|
+ reply_to_event_id
|
|
|
|
+ r'">In reply to</a> <a href="https://matrix.to/#/'
|
|
|
|
+ sender_id
|
|
|
|
+ r'">'
|
|
|
|
+ sender_id
|
|
|
|
+ r"</a><br>"
|
|
|
|
+ user_message
|
|
|
|
+ r"</blockquote></mx-reply>"
|
|
|
|
+ reply_message
|
|
|
|
)
|
2023-04-10 02:52:18 +00:00
|
|
|
|
2023-05-30 02:26:39 +00:00
|
|
|
content = {
|
|
|
|
"msgtype": "m.text",
|
|
|
|
"body": body,
|
|
|
|
"format": format,
|
|
|
|
"formatted_body": formatted_body,
|
|
|
|
"m.relates_to": {"m.in_reply_to": {"event_id": reply_to_event_id}},
|
|
|
|
}
|
2023-03-05 14:07:25 +00:00
|
|
|
await client.room_send(
|
|
|
|
room_id,
|
|
|
|
message_type="m.room.message",
|
2023-03-22 14:28:22 +00:00
|
|
|
content=content,
|
2023-03-14 14:37:30 +00:00
|
|
|
ignore_unverified_devices=True,
|
2023-03-05 14:07:25 +00:00
|
|
|
)
|
|
|
|
await client.room_typing(room_id, typing_state=False)
|