# -*- coding: future_fstrings -*-
# mautrix-telegram - A Matrix-Telegram puppeting bridge
# Copyright (C) 2018 Tulir Asokan
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
"
f"
{html}") if evt.reply_to_msg_id: space = (evt.to_id.channel_id if isinstance(evt, Message) and isinstance(evt.to_id, PeerChannel) else source.tgid) msg = DBMessage.query.get((evt.reply_to_msg_id, space)) if msg: if native_replies: relates_to["m.in_reply_to"] = { "event_id": msg.mxid, "room_id": msg.mx_room, } if reply_text == "Edit": html = "Edit: " + (html or escape(text)) else: try: event = await main_intent.get_event(msg.mx_room, msg.mxid) content = event["content"] body = (content["formatted_body"] if "formatted_body" in content else content["body"]) sender = event['sender'] puppet = p.Puppet.get_by_mxid(sender, create=False) displayname = puppet.displayname if puppet else sender reply_to_user = f"{displayname}" reply_to_msg = (("{reply_text}") if message_link_in_reply else "Reply") quote = f"{reply_to_msg} to {reply_to_user}
{body}" except (ValueError, KeyError, MatrixRequestError): quote = "{reply_text} to unknown user (Failed to fetch message):
{entity_text}")
elif entity_type == MessageEntityPre:
if entity.language:
html.append(""
f"{entity_text}"
"")
else:
html.append(f"{entity_text}")
elif entity_type == MessageEntityMention:
username = entity_text[1:]
user = u.User.find_by_username(username)
if user:
mxid = user.mxid
else:
puppet = p.Puppet.find_by_username(username)
mxid = puppet.mxid if puppet else None
if mxid:
html.append(f"{entity_text}")
else:
skip_entity = True
elif entity_type == MessageEntityMentionName:
user = u.User.get_by_tgid(entity.user_id)
if user:
mxid = user.mxid
else:
puppet = p.Puppet.get(entity.user_id, create=False)
mxid = puppet.mxid if puppet else None
if mxid:
html.append(f"{entity_text}")
else:
skip_entity = True
elif entity_type == MessageEntityEmail:
html.append(f"{entity_text}")
elif entity_type in {MessageEntityTextUrl, MessageEntityUrl}:
url = escape(entity.url) if entity_type == MessageEntityTextUrl else entity_text
if not url.startswith(("https://", "http://", "ftp://", "magnet://")):
url = "http://" + url
html.append(f"{entity_text}")
elif entity_type == MessageEntityBotCommand:
html.append(f"!{entity_text[1:]}")
elif entity_type == MessageEntityHashtag:
html.append(f"{entity_text}")
else:
skip_entity = True
last_offset = entity.offset + (0 if skip_entity else entity.length)
html.append(text[last_offset:])
return "".join(html)