8d852cb47e
This is enabled by default: - strict: only markdown syntax is parsed - loose: both markdown and html syntax are parsed
151 lines
4.4 KiB
Python
151 lines
4.4 KiB
Python
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
|
|
#
|
|
# This file is part of Pyrogram.
|
|
#
|
|
# Pyrogram is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Pyrogram 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 Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import html
|
|
import re
|
|
from typing import Union
|
|
|
|
import pyrogram
|
|
from . import utils
|
|
from .html import HTML
|
|
|
|
BOLD_DELIM = "**"
|
|
ITALIC_DELIM = "__"
|
|
UNDERLINE_DELIM = "--"
|
|
STRIKE_DELIM = "~~"
|
|
CODE_DELIM = "`"
|
|
PRE_DELIM = "```"
|
|
|
|
MARKDOWN_RE = re.compile(r"({d})|\[(.+?)\]\((.+?)\)".format(
|
|
d="|".join(
|
|
["".join(i) for i in [
|
|
[r"\{}".format(j) for j in i]
|
|
for i in [
|
|
PRE_DELIM,
|
|
CODE_DELIM,
|
|
STRIKE_DELIM,
|
|
UNDERLINE_DELIM,
|
|
ITALIC_DELIM,
|
|
BOLD_DELIM
|
|
]
|
|
]]
|
|
)))
|
|
|
|
OPENING_TAG = "<{}>"
|
|
CLOSING_TAG = "</{}>"
|
|
URL_MARKUP = '<a href="{}">{}</a>'
|
|
FIXED_WIDTH_DELIMS = [CODE_DELIM, PRE_DELIM]
|
|
|
|
|
|
class Markdown:
|
|
def __init__(self, client: Union["pyrogram.BaseClient", None]):
|
|
self.html = HTML(client)
|
|
|
|
def parse(self, text: str, strict: bool = False):
|
|
if strict:
|
|
text = html.escape(text)
|
|
|
|
delims = set()
|
|
is_fixed_width = False
|
|
|
|
for i, match in enumerate(re.finditer(MARKDOWN_RE, text)):
|
|
start, _ = match.span()
|
|
delim, text_url, url = match.groups()
|
|
full = match.group(0)
|
|
|
|
if delim in FIXED_WIDTH_DELIMS:
|
|
is_fixed_width = not is_fixed_width
|
|
|
|
if is_fixed_width and delim not in FIXED_WIDTH_DELIMS:
|
|
continue
|
|
|
|
if text_url:
|
|
text = utils.replace_once(text, full, URL_MARKUP.format(url, text_url), start)
|
|
continue
|
|
|
|
if delim == BOLD_DELIM:
|
|
tag = "b"
|
|
elif delim == ITALIC_DELIM:
|
|
tag = "i"
|
|
elif delim == UNDERLINE_DELIM:
|
|
tag = "u"
|
|
elif delim == STRIKE_DELIM:
|
|
tag = "s"
|
|
elif delim == CODE_DELIM:
|
|
tag = "code"
|
|
elif delim == PRE_DELIM:
|
|
tag = "pre"
|
|
else:
|
|
continue
|
|
|
|
if delim not in delims:
|
|
delims.add(delim)
|
|
tag = OPENING_TAG.format(tag)
|
|
else:
|
|
delims.remove(delim)
|
|
tag = CLOSING_TAG.format(tag)
|
|
|
|
text = utils.replace_once(text, delim, tag, start)
|
|
|
|
return self.html.parse(text)
|
|
|
|
@staticmethod
|
|
def unparse(text: str, entities: list):
|
|
text = utils.add_surrogates(text)
|
|
copy = text
|
|
|
|
for entity in entities:
|
|
start = entity.offset
|
|
end = start + entity.length
|
|
|
|
type = entity.type
|
|
|
|
url = entity.url
|
|
user = entity.user
|
|
|
|
sub = copy[start:end]
|
|
|
|
if type == "bold":
|
|
style = BOLD_DELIM
|
|
elif type == "italic":
|
|
style = ITALIC_DELIM
|
|
elif type == "underline":
|
|
style = UNDERLINE_DELIM
|
|
elif type == "strike":
|
|
style = STRIKE_DELIM
|
|
elif type == "code":
|
|
style = CODE_DELIM
|
|
elif type == "pre":
|
|
style = PRE_DELIM
|
|
# TODO: Blockquote for MD
|
|
# elif type == "blockquote":
|
|
# style = ...
|
|
elif type == "text_link":
|
|
text = text[:start] + text[start:].replace(sub, '[{1}]({0})'.format(url, sub), 1)
|
|
continue
|
|
elif type == "text_mention":
|
|
text = text[:start] + text[start:].replace(
|
|
sub, '[{1}](tg://user?id={0})'.format(user.id, sub), 1)
|
|
continue
|
|
else:
|
|
continue
|
|
|
|
text = text[:start] + text[start:].replace(sub, "{0}{1}{0}".format(style, sub), 1)
|
|
|
|
return utils.remove_surrogates(text)
|