-
Notifications
You must be signed in to change notification settings - Fork 1
/
sanitizer.py
161 lines (160 loc) · 5.25 KB
/
sanitizer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
from django.utils.html import mark_safe, format_html
from django.utils.translation import gettext_lazy
try:
import bleach
except ImportError:
# if bleach is not installed, render HTML as escaped text to prevent XSS attacks
heading = gettext_lazy("Install 'bleach' to render HTML properly.")
clean_html = lambda body: format_html('<p><em>{heading}</em></p>\n<div>{body}</div>',
heading=heading, body=body)
else:
styles = [
'border', 'border-top', 'border-right', 'border-bottom', 'border-left',
'border-radius',
'box-shadow',
'height',
'margin', 'margin-top', 'margin-right', 'margin-bottom', 'margin-left',
'padding', 'padding-top', 'padding-right', 'padding-bottom', 'padding-left',
'width',
'max-width',
'min-width',
'border-collapse',
'border-spacing',
'caption-side',
'empty-cells',
'table-layout',
'direction',
'font',
'font-family',
'font-style',
'font-variant',
'font-size',
'font-weight',
'letter-spacing',
'line-height',
'text-align',
'text-decoration',
'text-indent',
'text-overflow',
'text-shadow',
'text-transform',
'white-space',
'word-spacing',
'word-wrap',
'vertical-align',
'color',
'background',
'background-color',
'background-image',
'background-position',
'background-repeat',
'bottom',
'clear',
'cursor',
'display',
'float',
'left',
'opacity',
'outline',
'overflow',
'position',
'resize',
'right',
'top',
'visibility',
'z-index',
'list-style-position',
'list-style-tyle',
]
tags=[
'a',
'abbr',
'acronym',
'b',
'blockquote',
'br',
'caption',
'center',
'code',
'em',
'div',
'font',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
'head',
'hr',
'i',
'img',
'label',
'li',
'ol',
'p',
'pre',
'span',
'strong',
'table', 'tbody', 'tfoot', 'td', 'th', 'thead', 'tr',
'u',
'ul',
]
attributes={
'a': ['class', 'href', 'id', 'style', 'target'],
'abbr': ['class', 'id', 'style'],
'acronym': ['class', 'id', 'style'],
'b': ['class', 'id', 'style'],
'blockquote': ['class', 'id', 'style'],
'br': ['class', 'id', 'style'],
'caption': ['class', 'id', 'style'],
'center': ['class', 'id', 'style'],
'code': ['class', 'id', 'style'],
'em': ['class', 'id', 'style'],
'div': ['class', 'id', 'style', 'align', 'dir'],
'font': ['class', 'id', 'style', 'color', 'face', 'size'],
'h1': ['class', 'id', 'style', 'align', 'dir'],
'h2': ['class', 'id', 'style', 'align', 'dir'],
'h3': ['class', 'id', 'style', 'align', 'dir'],
'h4': ['class', 'id', 'style', 'align', 'dir'],
'h5': ['class', 'id', 'style', 'align', 'dir'],
'h6': ['class', 'id', 'style', 'align', 'dir'],
'head': ['dir', 'lang'],
'hr': ['align', 'size', 'width'],
'i': ['class', 'id', 'style'],
'img': ['class', 'id', 'style', 'align', 'border', 'height', 'hspace', 'src', 'usemap', 'vspace', 'width'],
'label': ['class', 'id', 'style'],
'li': ['class', 'id', 'style', 'dir', 'type'],
'ol': ['class', 'id', 'style', 'dir', 'type'],
'p': ['class', 'id', 'style', 'align', 'dir'],
'pre': ['class', 'id', 'style'],
'span': ['class', 'id', 'style'],
'strong': ['class', 'id', 'style'],
'table': ['class', 'id', 'style', 'align', 'bgcolor', 'border', 'cellpadding', 'cellspacing', 'dir', 'frame', 'rules', 'width'],
'tbody': ['class', 'id', 'style'],
'tfoot': ['class', 'id', 'style'],
'td': ['class', 'id', 'style', 'abbr', 'align', 'bgcolor', 'colspan', 'dir', 'height', 'lang', 'rowspan', 'scope', 'style', 'valign', 'width'],
'th': ['class', 'id', 'style', 'abbr', 'align', 'background', 'bgcolor', 'colspan', 'dir', 'height', 'lang', 'scope', 'style', 'valign', 'width'],
'thead': ['class', 'id', 'style'],
'tr': ['class', 'id', 'style', 'align', 'bgcolor', 'dir', 'style', 'valign'],
'u': ['class', 'id', 'style'],
'ul': ['class', 'id', 'style', 'dir', 'type'],
},
try:
from bleach.css_sanitizer import CSSSanitizer
css_sanitizer = CSSSanitizer(
allowed_css_properties=styles,
)
clean_html = lambda body: mark_safe(bleach.clean(
body,
tags=tags,
attributes=attributes,
strip=True,
strip_comments=True,
css_sanitizer=css_sanitizer,
))
except ModuleNotFoundError:
# if bleach version is prior to 5.0.0
clean_html = lambda body: mark_safe(bleach.clean(
body,
tags=tags,
attributes=attributes,
strip=True,
strip_comments=True,
styles=styles,
))