contentdb/app/markdown.py

180 lines
4.3 KiB
Python
Raw Normal View History

from functools import partial
2020-01-22 23:10:02 +01:00
import bleach
from bleach import Cleaner
from bleach.linkifier import LinkifyFilter
2021-02-02 21:05:24 +01:00
from bs4 import BeautifulSoup
2020-01-22 23:10:02 +01:00
from markdown import Markdown
2022-01-17 16:06:03 +01:00
from flask import Markup, url_for
from markdown.extensions import Extension
from markdown.inlinepatterns import SimpleTagInlineProcessor
2022-01-17 16:06:03 +01:00
from markdown.inlinepatterns import Pattern
from xml.etree import ElementTree
2020-01-22 23:10:02 +01:00
# Based on
2020-01-22 23:10:02 +01:00
# https://github.com/Wenzil/mdx_bleach/blob/master/mdx_bleach/whitelist.py
#
# License: MIT
2020-01-22 23:10:02 +01:00
ALLOWED_TAGS = [
"h1", "h2", "h3", "h4", "h5", "h6", "hr",
"ul", "ol", "li",
"p",
"br",
"pre",
"code",
"blockquote",
"strong",
"em",
"a",
"img",
"table", "thead", "tbody", "tr", "th", "td",
"div", "span", "del", "s",
]
ALLOWED_CSS = [
"highlight", "codehilite",
"hll", "c", "err", "g", "k", "l", "n", "o", "x", "p", "ch", "cm", "cp", "cpf", "c1", "cs",
"gd", "ge", "gr", "gh", "gi", "go", "gp", "gs", "gu", "gt", "kc", "kd", "kn", "kp", "kr",
"kt", "ld", "m", "s", "na", "nb", "nc", "no", "nd", "ni", "ne", "nf", "nl", "nn", "nx",
"py", "nt", "nv", "ow", "w", "mb", "mf", "mh", "mi", "mo", "sa", "sb", "sc", "dl", "sd",
"s2", "se", "sh", "si", "sx", "sr", "s1", "ss", "bp", "fm", "vc", "vg", "vi", "vm", "il",
2020-01-22 23:10:02 +01:00
]
2022-01-17 16:06:03 +01:00
def allow_class(_tag, name, value):
return name == "class" and value in ALLOWED_CSS
2022-01-17 16:06:03 +01:00
2020-01-22 23:10:02 +01:00
ALLOWED_ATTRIBUTES = {
2021-02-02 21:05:24 +01:00
"h1": ["id"],
"h2": ["id"],
"h3": ["id"],
"h4": ["id"],
2022-01-17 16:06:03 +01:00
"a": ["href", "title", "data-username"],
"img": ["src", "title", "alt"],
"code": allow_class,
"div": allow_class,
"span": allow_class,
2020-01-22 23:10:02 +01:00
}
ALLOWED_PROTOCOLS = ["http", "https", "mailto"]
2020-01-22 23:10:02 +01:00
md = None
2020-01-22 23:10:02 +01:00
2021-02-02 21:05:24 +01:00
2020-01-22 23:10:02 +01:00
def render_markdown(source):
html = md.convert(source)
cleaner = Cleaner(
2022-01-17 16:06:03 +01:00
tags=ALLOWED_TAGS,
attributes=ALLOWED_ATTRIBUTES,
protocols=ALLOWED_PROTOCOLS,
filters=[partial(LinkifyFilter, callbacks=bleach.linkifier.DEFAULT_CALLBACKS)])
return cleaner.clean(html)
2020-01-22 23:10:02 +01:00
2021-02-02 21:05:24 +01:00
class DelInsExtension(Extension):
def extendMarkdown(self, md):
2022-01-17 16:06:03 +01:00
del_proc = SimpleTagInlineProcessor(r"(\~\~)(.+?)(\~\~)", "del")
md.inlinePatterns.register(del_proc, "del", 200)
ins_proc = SimpleTagInlineProcessor(r"(\+\+)(.+?)(\+\+)", "ins")
md.inlinePatterns.register(ins_proc, "ins", 200)
2022-01-17 16:06:03 +01:00
RE_PARTS = dict(
USER=r"[A-Za-z0-9._-]*\b",
REPO=r"[A-Za-z0-9_]+\b"
)
2022-01-17 16:06:03 +01:00
class MentionPattern(Pattern):
ANCESTOR_EXCLUDES = ("a",)
def __init__(self, config, md):
MENTION_RE = r"(@({USER})(?:\/({REPO}))?)".format(**RE_PARTS)
super(MentionPattern, self).__init__(MENTION_RE, md)
self.config = config
def handleMatch(self, m):
2022-01-17 19:15:23 +01:00
from app.models import User
2022-01-17 16:06:03 +01:00
label = m.group(2)
user = m.group(3)
package_name = m.group(4)
if package_name:
el = ElementTree.Element("a")
el.text = label
el.set("href", url_for("packages.view", author=user, name=package_name))
return el
else:
2022-01-17 19:15:23 +01:00
if User.query.filter_by(username=user).count() == 0:
return None
2022-01-17 16:06:03 +01:00
el = ElementTree.Element("a")
el.text = label
el.set("href", url_for("users.profile", username=user))
el.set("data-username", user)
return el
class MentionExtension(Extension):
def __init__(self, *args, **kwargs):
super(MentionExtension, self).__init__(*args, **kwargs)
def extendMarkdown(self, md):
md.ESCAPED_CHARS.append("@")
md.inlinePatterns.register(MentionPattern(self.getConfigs(), md), "mention", 20)
MARKDOWN_EXTENSIONS = ["fenced_code", "tables", "codehilite", "toc", DelInsExtension(), MentionExtension()]
MARKDOWN_EXTENSION_CONFIG = {
"fenced_code": {},
"tables": {},
"codehilite": {
"guess_lang": False,
}
}
def init_markdown(app):
global md
md = Markdown(extensions=MARKDOWN_EXTENSIONS,
extension_configs=MARKDOWN_EXTENSION_CONFIG,
output_format="html5")
2020-01-22 23:10:02 +01:00
@app.template_filter()
def markdown(source):
return Markup(render_markdown(source))
2021-02-02 21:05:24 +01:00
def get_headings(html: str):
soup = BeautifulSoup(html, "html.parser")
headings = soup.find_all(["h1", "h2", "h3"])
root = []
stack = []
for heading in headings:
2022-01-17 16:06:03 +01:00
this = {"link": heading.get("id") or "", "text": heading.text, "children": []}
2021-02-02 21:05:24 +01:00
this_level = int(heading.name[1:]) - 1
while this_level <= len(stack):
stack.pop()
if len(stack) > 0:
stack[-1]["children"].append(this)
else:
root.append(this)
stack.append(this)
return root
2022-01-17 16:06:03 +01:00
def get_user_mentions(html: str) -> set:
soup = BeautifulSoup(html, "html.parser")
links = soup.select("a[data-username]")
return set([x.get("data-username") for x in links])