matrix-alertbot/chat_functions.py
2019-10-04 14:46:51 +01:00

52 lines
1.2 KiB
Python

import logging
from nio import (
SendRetryError
)
from markdown import markdown
logger = logging.getLogger(__name__)
async def send_text_to_room(
client,
room_id,
message,
notice=True,
markdown_convert=True
):
"""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
notice (bool): Whether the message should be sent with an "m.notice" message type
(will not ping users)
markdown_convert (bool): Whether to convert the message content to markdown.
Defaults to true.
"""
# 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,
}
if markdown_convert:
content["formatted_body"] = markdown(message)
try:
await client.room_send(
room_id,
"m.room.message",
content,
)
except SendRetryError:
logger.exception(f"Unable to send message response to {room_id}")