2017-10-28 20:06:41 +03:00
|
|
|
"""
|
|
|
|
Simple markdown parser which does not support nesting. Intended primarily
|
|
|
|
for use within the library, which attempts to handle emojies correctly,
|
|
|
|
since they seem to count as two characters and it's a bit strange.
|
|
|
|
"""
|
|
|
|
import re
|
2017-11-16 21:13:13 +03:00
|
|
|
|
2017-11-17 17:57:48 +03:00
|
|
|
from ..tl import TLObject
|
2017-11-16 21:13:13 +03:00
|
|
|
|
2017-10-28 20:06:41 +03:00
|
|
|
from ..tl.types import (
|
2017-10-29 18:33:10 +03:00
|
|
|
MessageEntityBold, MessageEntityItalic, MessageEntityCode,
|
|
|
|
MessageEntityPre, MessageEntityTextUrl
|
2017-10-28 20:06:41 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2017-10-29 20:21:21 +03:00
|
|
|
DEFAULT_DELIMITERS = {
|
2017-11-10 13:01:02 +03:00
|
|
|
'**': MessageEntityBold,
|
|
|
|
'__': MessageEntityItalic,
|
|
|
|
'`': MessageEntityCode,
|
|
|
|
'```': MessageEntityPre
|
2017-10-29 20:21:21 +03:00
|
|
|
}
|
|
|
|
|
2017-11-06 12:29:32 +03:00
|
|
|
# Regex used to match utf-16le encoded r'\[(.+?)\]\((.+?)\)',
|
|
|
|
# reason why there's '\0' after every match-literal character.
|
2017-11-06 13:22:58 +03:00
|
|
|
DEFAULT_URL_RE = re.compile(b'\\[\0(.+?)\\]\0\\(\0(.+?)\\)\0')
|
2017-11-06 12:29:32 +03:00
|
|
|
|
2017-10-29 20:21:21 +03:00
|
|
|
|
|
|
|
def parse(message, delimiters=None, url_re=None):
|
2017-10-28 20:06:41 +03:00
|
|
|
"""
|
2017-11-26 19:14:28 +03:00
|
|
|
Parses the given markdown message and returns its stripped representation
|
|
|
|
plus a list of the MessageEntity's that were found.
|
2017-10-29 18:33:10 +03:00
|
|
|
|
2017-11-26 19:14:28 +03:00
|
|
|
:param message: the message with markdown-like syntax to be parsed.
|
|
|
|
:param delimiters: the delimiters to be used, {delimiter: type}.
|
|
|
|
:param url_re: the URL bytes regex to be used. Must have two groups.
|
|
|
|
:return: a tuple consisting of (clean message, [message entities]).
|
2017-10-28 20:06:41 +03:00
|
|
|
"""
|
2017-10-29 20:21:21 +03:00
|
|
|
if url_re is None:
|
|
|
|
url_re = DEFAULT_URL_RE
|
|
|
|
elif url_re:
|
2017-11-06 13:32:40 +03:00
|
|
|
if isinstance(url_re, bytes):
|
|
|
|
url_re = re.compile(url_re)
|
2017-10-29 18:33:10 +03:00
|
|
|
|
2017-10-28 20:06:41 +03:00
|
|
|
if not delimiters:
|
|
|
|
if delimiters is not None:
|
|
|
|
return message, []
|
2017-10-29 20:21:21 +03:00
|
|
|
delimiters = DEFAULT_DELIMITERS
|
2017-10-28 20:06:41 +03:00
|
|
|
|
2017-11-06 12:29:32 +03:00
|
|
|
delimiters = {k.encode('utf-16le'): v for k, v in delimiters.items()}
|
|
|
|
|
2017-11-06 13:32:40 +03:00
|
|
|
# Cannot use a for loop because we need to skip some indices
|
2017-11-06 12:29:32 +03:00
|
|
|
i = 0
|
2017-10-28 20:06:41 +03:00
|
|
|
result = []
|
2017-11-10 13:01:02 +03:00
|
|
|
current = None
|
2017-11-10 13:41:49 +03:00
|
|
|
end_delimiter = None
|
2017-11-06 13:32:40 +03:00
|
|
|
|
|
|
|
# Work on byte level with the utf-16le encoding to get the offsets right.
|
|
|
|
# The offset will just be half the index we're at.
|
2017-11-06 12:29:32 +03:00
|
|
|
message = message.encode('utf-16le')
|
2017-10-28 20:06:41 +03:00
|
|
|
while i < len(message):
|
2017-11-10 13:01:02 +03:00
|
|
|
if url_re and current is None:
|
2017-11-06 13:32:40 +03:00
|
|
|
# If we're not inside a previous match since Telegram doesn't allow
|
|
|
|
# nested message entities, try matching the URL from the i'th pos.
|
2017-10-29 18:33:10 +03:00
|
|
|
url_match = url_re.match(message, pos=i)
|
|
|
|
if url_match:
|
2017-11-06 13:32:40 +03:00
|
|
|
# Replace the whole match with only the inline URL text.
|
2017-11-06 12:29:32 +03:00
|
|
|
message = b''.join((
|
2017-10-29 18:33:10 +03:00
|
|
|
message[:url_match.start()],
|
|
|
|
url_match.group(1),
|
|
|
|
message[url_match.end():]
|
|
|
|
))
|
2017-11-06 02:17:22 +03:00
|
|
|
|
2017-11-10 13:01:02 +03:00
|
|
|
result.append(MessageEntityTextUrl(
|
|
|
|
offset=i // 2, length=len(url_match.group(1)) // 2,
|
|
|
|
url=url_match.group(2).decode('utf-16le')
|
2017-10-29 18:33:10 +03:00
|
|
|
))
|
2017-11-10 13:41:49 +03:00
|
|
|
i += len(url_match.group(1))
|
|
|
|
# Next loop iteration, don't check delimiters, since
|
|
|
|
# a new inline URL might be right after this one.
|
|
|
|
continue
|
2017-11-06 12:29:32 +03:00
|
|
|
|
2017-11-10 13:41:49 +03:00
|
|
|
if end_delimiter is None:
|
|
|
|
# We're not expecting any delimiter, so check them all
|
2017-10-29 18:33:10 +03:00
|
|
|
for d, m in delimiters.items():
|
2017-11-06 13:32:40 +03:00
|
|
|
# Slice the string at the current i'th position to see if
|
2017-11-10 13:41:49 +03:00
|
|
|
# it matches the current delimiter d, otherwise skip it.
|
|
|
|
if message[i:i + len(d)] != d:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if message[i + len(d):i + 2 * len(d)] == d:
|
|
|
|
# The same delimiter can't be right afterwards, if
|
|
|
|
# this were the case we would match empty strings
|
|
|
|
# like `` which we don't want to.
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Get rid of the delimiter by slicing it away
|
|
|
|
message = message[:i] + message[i + len(d):]
|
|
|
|
if m == MessageEntityPre:
|
|
|
|
# Special case, also has 'lang'
|
|
|
|
current = m(i // 2, None, '')
|
|
|
|
else:
|
|
|
|
current = m(i // 2, None)
|
|
|
|
|
|
|
|
end_delimiter = d # We expect the same delimiter.
|
|
|
|
break
|
|
|
|
|
|
|
|
elif message[i:i + len(end_delimiter)] == end_delimiter:
|
|
|
|
message = message[:i] + message[i + len(end_delimiter):]
|
|
|
|
current.length = (i // 2) - current.offset
|
|
|
|
result.append(current)
|
|
|
|
current, end_delimiter = None, None
|
|
|
|
# Don't increment i here as we matched a delimiter,
|
|
|
|
# and there may be a new one right after. This is
|
|
|
|
# different than when encountering the first delimiter,
|
|
|
|
# as we already know there won't be the same right after.
|
|
|
|
continue
|
2017-10-28 20:06:41 +03:00
|
|
|
|
2017-11-06 13:32:40 +03:00
|
|
|
# Next iteration, utf-16 encoded characters need 2 bytes.
|
|
|
|
i += 2
|
2017-10-28 20:17:18 +03:00
|
|
|
|
2017-11-10 13:01:02 +03:00
|
|
|
# We may have found some a delimiter but not its ending pair.
|
2017-11-10 13:44:27 +03:00
|
|
|
# If this is the case, we want to insert the delimiter character back.
|
|
|
|
if current is not None:
|
2017-11-16 21:07:53 +03:00
|
|
|
message = (
|
|
|
|
message[:2 * current.offset]
|
|
|
|
+ end_delimiter
|
|
|
|
+ message[2 * current.offset:]
|
|
|
|
)
|
2017-11-06 02:17:22 +03:00
|
|
|
|
2017-11-06 12:29:32 +03:00
|
|
|
return message.decode('utf-16le'), result
|
2017-11-16 21:13:13 +03:00
|
|
|
|
|
|
|
|
|
|
|
def get_inner_text(text, entity):
|
2017-11-26 19:14:28 +03:00
|
|
|
"""
|
|
|
|
Gets the inner text that's surrounded by the given entity or entities.
|
|
|
|
For instance: text = 'hey!', entity = MessageEntityBold(2, 2) -> 'y!'.
|
|
|
|
|
|
|
|
:param text: the original text.
|
|
|
|
:param entity: the entity or entities that must be matched.
|
|
|
|
:return: a single result or a list of the text surrounded by the entities.
|
2017-11-16 21:13:13 +03:00
|
|
|
"""
|
|
|
|
if not isinstance(entity, TLObject) and hasattr(entity, '__iter__'):
|
|
|
|
multiple = True
|
|
|
|
else:
|
|
|
|
entity = [entity]
|
|
|
|
multiple = False
|
|
|
|
|
|
|
|
text = text.encode('utf-16le')
|
|
|
|
result = []
|
|
|
|
for e in entity:
|
|
|
|
start = e.offset * 2
|
|
|
|
end = (e.offset + e.length) * 2
|
|
|
|
result.append(text[start:end].decode('utf-16le'))
|
|
|
|
|
|
|
|
return result if multiple else result[0]
|