-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdpr-tools.config.php
304 lines (223 loc) · 10.9 KB
/
gdpr-tools.config.php
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
/** @package GDPRTools\Package */
namespace MAKS\GDPRTools\Package;
return [
// [optional] (string|null) App entry point.
'entryPoint' => __DIR__ . '/app.php',
// [optional] (bool|null) Add frontend script as URL to a file or Base64 Data-URI.
'javascriptFile' => true,
// [required] (array) Frontend configuration.
'frontend' => [
// [required] (string) CMP settings cookie name.
'cookieName' => 'CookieName',
// [required] (string) CMP JavaScript-SDK object name.
'objectName' => 'CookieObject',
// [required] (string) CMP JavaScript-SDK update event name.
'updateEventName' => 'CookieObjectOnUpdate',
// [required] (array) CMP JavaScript-SDK proxy function.
'functions' => [
// [required] (string) A JavaScript function as string to show the CMP dialog.
'showDialog' => <<<'JS'
() => {
CookieObject.show();
}
JS,
// [required] (string) A JavaScript function as string to consent to the given category (function will be passed the category).
'consentTo' => <<<'JS'
(category) => {
CookieObject.consentTo(category);
}
JS,
// [required] (string) A JavaScript function as string to check if a consent is given to the given category (function will be passed the category and must return a boolean).
'isConsentedTo' => <<<'JS'
(category) => {
CookieObject.isConsentedTo(category);
}
JS,
],
// [optional] (array) Sanitization attributes names.
'attributes' => [
// [required] (string) "data-consent-element" attribute name override.
'data-consent-element' => 'data-consent-element',
// [required] (string) "data-consent-attribute" attribute name override.
'data-consent-attribute' => 'data-consent-attribute',
// [required] (string) "data-consent-value" attribute name override.
'data-consent-value' => 'data-consent-value',
// [required] (string) "data-consent-original-href" attribute name override.
'data-consent-original-href' => 'data-consent-original-href',
// [required] (string) "data-consent-original-src" attribute name override.
'data-consent-original-src' => 'data-consent-original-src',
// [required] (string) "data-consent-original-srcset" attribute name override.
'data-consent-original-srcset' => 'data-consent-original-srcset',
// [required] (string) "data-consent-original-poster" attribute name override.
'data-consent-original-poster' => 'data-consent-original-poster',
// [required] (string) "data-consent-original-data" attribute name override.
'data-consent-original-data' => 'data-consent-original-data',
// [required] (string) "data-consent-category" attribute name override.
'data-consent-category' => 'data-consent-category',
// [required] (string) "data-consent-alternative" attribute name override.
'data-consent-alternative' => 'data-consent-alternative',
// [required] (string) "data-consent-decorator" attribute name override.
'data-consent-decorator' => 'data-consent-decorator',
// [required] (string) "data-consent-evaluated" attribute name override.
'data-consent-evaluated' => 'data-consent-evaluated',
],
// [required] (array) Cookies categories.
'categories' => [
'necessary',
'preferences',
'statistics',
'marketing',
'unclassified',
],
// [required] (array) Services categorizations.
'categorization' => [
'necessary'=> [
'google.com/recaptcha',
],
'preferences'=> [
'app.cloudpano.com',
],
'statistics'=> [
'google-analytics.com',
],
'marketing'=> [
'studio1.de',
'google.com',
'youtube.com',
'youtube-nocookie.com',
'facebook.com',
'soundcloud.com',
'doubleclick.net',
],
'unclassified'=> [],
],
// [optional] (array|null) Elements that should be decorated.
'decorations' => [
'iframe',
'img',
'embed',
'audio',
'video',
'track',
'object',
],
// [optional] (array|null) Decoration overlay messages.
'messages' => [
// [optional] (string) Overlay title text.
'overlayTitle' => 'Content is blocked due to insufficient Cookies configuration!',
// [optional] (string) Overlay description text.
'overlayDescription' => 'This content requires consent to the "{type}" Cookies, to be viewed.',
// [optional] (string) Overlay accept button text.
'overlayAcceptButton' => 'Allow this category',
// [optional] (string) Overlay info button text.
'overlayInfoButton' => 'More Info',
],
// [optional] (array|null) Decoration CSS Classes.
'classes' => [
// [optional] (string) Wrapper CSS class.
'wrapper' => '',
// [optional] (string) Container CSS class.
'container' => 'd-flex justify-content-center align-items-center h-100 w-100 bg-dark text-white',
// [optional] (string) Element CSS class.
'element' => 'd-none',
// [optional] (string) Overlay CSS class.
'overlay' => 'w-75',
// [optional] (string) Overlay title CSS class.
'overlayTitle' => 'h4 mb-5 text-center font-weight-bold',
// [optional] (string) Overlay description CSS class.
'overlayDescription' => 'mb-3 text-center',
// [optional] (string) Overlay buttons CSS class.
'overlayButtons' => 'd-flex flex-nowrap justify-content-center align-items-center',
// [optional] (string) Overlay accept button CSS class.
'overlayAcceptButton' => 'btn btn-outline-light',
// [optional] (string) Overlay info button CSS class.
'overlayInfoButton' => 'btn btn-outline-light',
],
],
// [required] (array) Backend configuration.
'backend' => [
// [optional] (callable) A function to determine whether or not to perform the sanitization (function will be passed the data being sanitized and must return a boolean).
'condition' => null,
// [optional] (array|null) Domains that should not be sanitized.
'whitelist' => [
'cdn.jsdelivr.net',
],
// [optional] (array|null) URIs to be used as replacements for sanitized resources.
'uris' => [
// [required] (string) <link href="" /> "link" element temporary "href" value.
'link' => 'data:text/css;charset=UTF-8;base64,',
// [required] (string) <script src="" /> "script" element temporary "src" value.
'script' => 'data:text/javascript;charset=UTF-8;base64,',
// [required] (string) <iframe src="" /> "iframe" element temporary "src" value.
'iframe' => 'data:text/html;charset=UTF-8;base64,',
// [required] (string) <embed src="" /> "embed" element temporary "src" value.
'embed' => 'data:image/gif;charset=UTF-8;base64,',
// [required] (string) <img src="" /> "img" element temporary "src" value.
'img' => 'data:image/png;charset=UTF-8;base64,',
// [required] (string) <audio src="" /> "audio" element temporary "src" value.
'audio' => 'data:audio/mp3;charset=UTF-8;base64,',
// [required] (string) <video src="" /> "video" element temporary "src" value.
'video' => 'data:video/mp4;charset=UTF-8;base64,',
// [required] (string) <source src="" /> "source" element temporary "src" value.
'source' => 'data:audio/mpeg;charset=UTF-8;base64,',
// [required] (string) <track src="" /> "track" element temporary "src" value.
'track' => 'data:video/webm;charset=UTF-8;base64,',
// [required] (string) <object data="" /> "object" element temporary "data" value.
'object' => 'data:img/jpg;charset=UTF-8;base64,',
],
// [optional] (array|null) HTML appends to the final sanitized response.
'appends' => [
// [optional] (array|string) HTML to append to the <head> element.
'head' => [
// '<link rel="stylesheet" href="/path/to/style.css" />',
],
// [optional] (array|string) HTML to append to the <body> element.
'body' => [
// '<script src="/path/to/script.js"></script>',
],
],
// [optional] (array|null) HTML prepends to the final sanitized response.
'prepends' => [
// [optional] (array|string) HTML to prepend in the <head> element.
'head' => [
// '<link rel="stylesheet" href="/path/to/style.css" />',
],
// [optional] (array|string) HTML to prepend in the <body> element.
'body' => [
// '<script src="/path/to/script.js"></script>',
],
],
// [optional] (array|null) HTML injections to the final sanitized response.
'injections' => [
// [optional] (array) HTML injections that should be prepended.
'PREPEND' => [
// [optional] (array|string) HTML to prepend in the <head> element.
'head' => [
// '<link rel="stylesheet" href="/path/to/style.css" />',
],
],
// [optional] (array) HTML injections that should be appended.
'APPEND' => [
// [optional] (array|string) HTML to prepend in the <body> element.
'body' => [
// '<script src="/path/to/script.js"></script>',
],
],
// [optional] (array) HTML injections that should be inserted before.
'BEFORE' => [
// [optional] (array|string) HTML to prepend in the <title> element.
'title' => [
// '<link rel="stylesheet" href="/path/to/style.css" />',
],
],
// [optional] (array) HTML injections that should be inserted after.
'AFTER' => [
// [optional] (array|string) HTML to prepend in the <title> element.
'title' => [
// '<script src="/path/to/script.js"></script>',
],
],
],
],
];