Skip to content
Snippets Groups Projects
Commit 32177f7f authored by Manon Blanco's avatar Manon Blanco
Browse files

Use a global sanitizer config

parent 569f5eab
No related branches found
No related tags found
No related merge requests found
import markdown
from django.db.models import Max
from html_sanitizer import Sanitizer
from html_sanitizer.django import get_sanitizer
from rest_framework import serializers
from rest_framework.exceptions import APIException, ValidationError
......@@ -106,7 +106,7 @@ class MetaDataLightSerializer(serializers.ModelSerializer):
def to_representation(self, instance):
# The value must be HTML
if instance.type == MetaType.Markdown:
sanitizer = Sanitizer()
sanitizer = get_sanitizer()
html = markdown.markdown(instance.value)
instance.value = sanitizer.sanitize(html)
return super().to_representation(instance)
......
......@@ -274,6 +274,19 @@ SPECTACULAR_SETTINGS = {
]
}
# Sanitizer config
HTML_SANITIZERS = {
'default': {
'tags': {
'a', 'h1', 'h2', 'h3', 'strong', 'em', 'p',
'ul', 'ol', 'li', 'br', 'sub', 'sup', 'hr',
'table', 'thead', 'tbody', 'tr', 'th', 'td'
},
'empty': {'hr', 'a', 'br', 'th'},
'is_mergeable': lambda e1, e2: False,
},
}
SEARCH_FILTER_MAX_TERMS = 10
# Elastic search config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment