Replace Matrix mentions with Telegram mentions (ping)

This commit is contained in:
Max Sandholm 2017-09-21 13:50:17 +03:00
parent b0aeb11e8a
commit 09945d75cc
2 changed files with 31 additions and 26 deletions

3
.gitignore vendored
View File

@ -122,6 +122,9 @@ Session.vim
tags tags
#VSCode
.vscode
### macOS ### ### macOS ###
*.DS_Store *.DS_Store
.AppleDouble .AppleDouble

View File

@ -12,6 +12,7 @@ from datetime import datetime
from time import time from time import time
from urllib.parse import unquote, quote, urlparse, parse_qs from urllib.parse import unquote, quote, urlparse, parse_qs
from io import BytesIO from io import BytesIO
import re
from PIL import Image from PIL import Image
from aiohttp import web, ClientSession from aiohttp import web, ClientSession
@ -97,6 +98,7 @@ def format_matrix_msg(form, username, content):
:return: The formatted string. :return: The formatted string.
""" """
if 'format' in content and content['format'] == 'org.matrix.custom.html': if 'format' in content and content['format'] == 'org.matrix.custom.html':
re.sub("<a href=\"https://matrix.to/#/@telegram_([0-9]+):{}\">(.+?)</a>".format(MATRIX_HOST_BARE), "<a href=\"tg://user?id=\\1\">\\2</a>", content['formatted_body'])
sanitized = sanitize_html(content['formatted_body']) sanitized = sanitize_html(content['formatted_body'])
return html.escape(form).format(username, sanitized), 'HTML' return html.escape(form).format(username, sanitized), 'HTML'
else: else: