matrix-alertbot/chat_functions.py

54 lines
1.3 KiB
Python
Raw Normal View History

2019-09-25 14:26:29 +02:00
import logging
from nio import (
SendRetryError
)
from markdown import markdown
logger = logging.getLogger(__name__)
2019-10-04 15:46:51 +02:00
async def send_text_to_room(
client,
room_id,
message,
notice=True,
markdown_convert=True
):
2019-09-25 14:26:29 +02:00
"""Send text to a matrix room
Args:
client (nio.AsyncClient): The client to communicate to matrix with
room_id (str): The ID of the room to send the message to
message (str): The message content
2019-10-04 15:46:51 +02:00
notice (bool): Whether the message should be sent with an "m.notice" message type
(will not ping users)
2019-09-25 14:26:29 +02:00
markdown_convert (bool): Whether to convert the message content to markdown.
Defaults to true.
"""
2019-10-04 15:46:51 +02:00
# Determine whether to ping room members or not
msgtype = "m.notice" if notice else "m.text"
content = {
"msgtype": msgtype,
"format": "org.matrix.custom.html",
"body": message,
}
2019-09-25 14:26:29 +02:00
if markdown_convert:
2019-10-04 15:46:51 +02:00
content["formatted_body"] = markdown(message)
2019-09-25 14:26:29 +02:00
try:
await client.room_send(
room_id,
"m.room.message",
2019-10-04 15:46:51 +02:00
content,
2020-02-24 23:13:28 +01:00
ignore_unverified_devices=True,
2019-09-25 14:26:29 +02:00
)
except SendRetryError:
logger.exception(f"Unable to send message response to {room_id}")
2019-10-04 15:46:51 +02:00