Revamp HTML style parser
This commit is contained in:
parent
0e3d08ae75
commit
ae92c92c06
@ -7,23 +7,15 @@ from pyrogram.api.types import (
|
|||||||
MessageEntityCode as Code,
|
MessageEntityCode as Code,
|
||||||
MessageEntityTextUrl as Url,
|
MessageEntityTextUrl as Url,
|
||||||
MessageEntityPre as Pre,
|
MessageEntityPre as Pre,
|
||||||
InputMessageEntityMentionName as Mention
|
MessageEntityMentionName as MentionInvalid,
|
||||||
|
InputMessageEntityMentionName as Mention,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class HTML:
|
class HTML:
|
||||||
SMP_RE = re.compile(r"[\U00010000-\U0010FFFF]")
|
SMP_RE = re.compile(r"[\U00010000-\U0010FFFF]")
|
||||||
|
HTML_RE = re.compile(r"<(\w+)(?: href=\"(.*)\")?>(.*)</\1>")
|
||||||
BOLD_RE = r"(?P<b><b>(?P<b_body>.*?)</b>)"
|
MENTION_RE = re.compile(r"tg://user\?id=(\d+)")
|
||||||
STRONG_RE = r"(?P<strong><strong>(?P<strong_body>.*?)</strong>)"
|
|
||||||
ITALIC_RE = r"(?P<i><i>(?P<i_body>.*?)</i>)"
|
|
||||||
EMPATHIZE_RE = r"(?P<em><em>(?P<em_body>.*?)</em>)"
|
|
||||||
CODE_RE = r"(?P<code><code>(?P<code_body>.*?)</code>)"
|
|
||||||
PRE_RE = r"(?P<pre><pre>(?P<pre_body>.*?)</pre>)"
|
|
||||||
MENTION_RE = r"(?P<mention><a href=\"tg://user\?id=(?P<user_id>\d+?)\">(?P<mention_text>.*?)</a>)"
|
|
||||||
URL_RE = r"(?P<url><a href=\"(?P<url_path>.*?)\">(?P<url_text>.*?)</a>)"
|
|
||||||
|
|
||||||
HTML_RE = re.compile("|".join([BOLD_RE, STRONG_RE, ITALIC_RE, EMPATHIZE_RE, CODE_RE, PRE_RE, MENTION_RE, URL_RE]))
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def add_surrogates(cls, text):
|
def add_surrogates(cls, text):
|
||||||
@ -45,57 +37,38 @@ class HTML:
|
|||||||
text = self.add_surrogates(text)
|
text = self.add_surrogates(text)
|
||||||
offset = 0
|
offset = 0
|
||||||
|
|
||||||
# TODO: Beautify ifs
|
|
||||||
for match in self.HTML_RE.finditer(text):
|
for match in self.HTML_RE.finditer(text):
|
||||||
start = match.start() - offset
|
start = match.start() - offset
|
||||||
|
style, url, body = match.groups()
|
||||||
|
|
||||||
if match.group("b"):
|
if url:
|
||||||
pattern = match.group("b")
|
mention = self.MENTION_RE.match(url)
|
||||||
body = match.group("b_body")
|
|
||||||
|
if mention:
|
||||||
|
user_id = int(mention.group(1))
|
||||||
|
input_user = self.peers_by_id.get(user_id, None)
|
||||||
|
|
||||||
|
entity = (
|
||||||
|
Mention(start, len(body), input_user)
|
||||||
|
if input_user else MentionInvalid(start, len(body), user_id)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
entity = Url(start, len(body), url)
|
||||||
|
else:
|
||||||
|
if style == "b" or style == "strong":
|
||||||
entity = Bold(start, len(body))
|
entity = Bold(start, len(body))
|
||||||
offset += 7
|
elif style == "i" or style == "em":
|
||||||
elif match.group("strong"):
|
|
||||||
pattern = match.group("strong")
|
|
||||||
body = match.group("strong_body")
|
|
||||||
entity = Bold(start, len(body))
|
|
||||||
offset += 17
|
|
||||||
elif match.group("i"):
|
|
||||||
pattern = match.group("i")
|
|
||||||
body = match.group("i_body")
|
|
||||||
entity = Italic(start, len(body))
|
entity = Italic(start, len(body))
|
||||||
offset += 7
|
elif style == "code":
|
||||||
elif match.group("em"):
|
|
||||||
pattern = match.group("em")
|
|
||||||
body = match.group("em_body")
|
|
||||||
entity = Italic(start, len(body))
|
|
||||||
offset += 9
|
|
||||||
elif match.group("code"):
|
|
||||||
pattern = match.group("code")
|
|
||||||
body = match.group("code_body")
|
|
||||||
entity = Code(start, len(body))
|
entity = Code(start, len(body))
|
||||||
offset += 13
|
elif style == "pre":
|
||||||
elif match.group("pre"):
|
|
||||||
pattern = match.group("pre")
|
|
||||||
body = match.group("pre_body")
|
|
||||||
entity = Pre(start, len(body), "")
|
entity = Pre(start, len(body), "")
|
||||||
offset += 11
|
|
||||||
elif match.group("mention"):
|
|
||||||
pattern = match.group("mention")
|
|
||||||
body = match.group("mention_text")
|
|
||||||
user_id = match.group("user_id")
|
|
||||||
entity = Mention(start, len(body), self.peers_by_id[int(user_id)])
|
|
||||||
offset += len(user_id) + 28
|
|
||||||
elif match.group("url"):
|
|
||||||
pattern = match.group("url")
|
|
||||||
body = match.group("url_text")
|
|
||||||
path = match.group("url_path")
|
|
||||||
entity = Url(start, len(body), path)
|
|
||||||
offset += len(path) + 15
|
|
||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
entities.append(entity)
|
entities.append(entity)
|
||||||
text = text.replace(pattern, body)
|
text = text.replace(match.group(), body)
|
||||||
|
offset += len(style) * 2 + 5 + (len(url) + 8 if url else 0)
|
||||||
|
|
||||||
return dict(
|
return dict(
|
||||||
message=self.remove_surrogates(text),
|
message=self.remove_surrogates(text),
|
||||||
|
Loading…
Reference in New Issue
Block a user