takahe/core/html.py

33 wiersze
941 B
Python
Czysty Zwykły widok Historia

2022-11-12 05:02:43 +00:00
import bleach
2022-11-14 02:03:43 +00:00
from bleach.linkifier import LinkifyFilter
2022-11-12 05:02:43 +00:00
from django.utils.safestring import mark_safe
2022-11-14 02:03:43 +00:00
def allow_a(tag: str, name: str, value: str):
if name in ["href", "title", "class"]:
return True
elif name == "rel":
# Only allow rel attributes with a small subset of values
# (we're defending against, for example, rel=me)
rel_values = value.split()
if all(v in ["nofollow", "noopener", "noreferrer", "tag"] for v in rel_values):
return True
return False
2022-11-12 05:02:43 +00:00
def sanitize_post(post_html: str) -> str:
"""
Only allows a, br, p and span tags, and class attributes.
"""
2022-11-14 02:03:43 +00:00
cleaner = bleach.Cleaner(
2022-11-18 02:31:00 +00:00
tags=["br", "p"],
2022-11-14 02:03:43 +00:00
attributes={ # type:ignore
"a": allow_a,
"p": ["class"],
"span": ["class"],
},
filters=[LinkifyFilter],
2022-11-18 02:31:00 +00:00
strip=True,
2022-11-12 05:02:43 +00:00
)
2022-11-14 02:03:43 +00:00
return mark_safe(cleaner.clean(post_html))