Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
32177f7f
Commit
32177f7f
authored
4 years ago
by
Manon Blanco
Browse files
Options
Downloads
Patches
Plain Diff
Use a global sanitizer config
parent
569f5eab
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arkindex/documents/serializers/light.py
+2
-2
2 additions, 2 deletions
arkindex/documents/serializers/light.py
arkindex/project/settings.py
+13
-0
13 additions, 0 deletions
arkindex/project/settings.py
with
15 additions
and
2 deletions
arkindex/documents/serializers/light.py
+
2
−
2
View file @
32177f7f
import
markdown
from
django.db.models
import
Max
from
html_sanitizer
import
S
anitizer
from
html_sanitizer
.django
import
get_s
anitizer
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
=
S
anitizer
()
sanitizer
=
get_s
anitizer
()
html
=
markdown
.
markdown
(
instance
.
value
)
instance
.
value
=
sanitizer
.
sanitize
(
html
)
return
super
().
to_representation
(
instance
)
...
...
This diff is collapsed.
Click to expand it.
arkindex/project/settings.py
+
13
−
0
View file @
32177f7f
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment