-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
430 lines (353 loc) · 10.1 KB
/
test.html
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'unsafe-inline'; connect-src https://pdw-usr.userreport.com https://dnt-userreport.com">
<title>AudienceProject Data Web Test</title>
<h2>AudienceProject Data Web Test</h2>
<style>
h2 {
margin: 0 0 10px 0;
}
details {
display: block;
margin-top: 10px;
}
summary {
font-weight: bold;
cursor: default;
}
label {
display: block;
display: flex;
align-items: center;
margin-left: 17px;
margin-top: 10px;
margin-bottom: 10px;
}
label.offset {
margin-left: 35px;
}
label > input[type="checkbox"] {
margin-left:0;
margin-right:5px;
}
label > input:not([type="checkbox"]) {
margin-left:5px;
margin-right:0;
}
input[type="number"] {
width: 80px;
}
input[data-type="json"] {
width: 300px;
}
</style>
<script src="node_modules/es6-promise/dist/es6-promise.auto.js"></script>
<script>
if (typeof console === 'undefined') {
console = { log: function() {} };
}
</script>
<script src="dist/audienceproject-data-web.js"></script>
<input id="fetch-customerId" placeholder="Customer ID">
<input id="fetch-call" type="button" value="Fetch">
<details>
<summary>Fetch Options</summary>
<label>
<input id="fetch-options-allowStorageAccess" type="checkbox" checked>
Allow storage access
</label>
<label>
<input id="fetch-options-allowPersonalisation" type="checkbox" checked>
Allow personalisation
</label>
<label>
<input id="fetch-options-gdprApplies" type="checkbox" data-indeterminate>
GDPR applies
</label>
<label>
Consent string
<input id="fetch-options-consentString">
</label>
<label>
<input id="fetch-options-integrateWithCmp" type="checkbox">
Integrate with CMP
</label>
<label>
<input id="fetch-options-waitForCmpConsent" type="checkbox">
Wait for CMP consent
</label>
<label>
Request params
<input id="fetch-options-requestParams" data-type="json" value="{}">
</label>
<label>
Timeout
<input id="fetch-options-timeout" type="number" value="1000" step="100" min="0">
</label>
<label>
<input id="fetch-options-addStatusKey" type="checkbox">
Add status key
</label>
<label>
Cache type
<input id="fetch-options-cacheType">
</label>
<label>
Cache key
<input id="fetch-options-cacheKey" value="url,allowPersonalisation,requestParams">
</label>
<label>
Cache time
<input id="fetch-options-cacheTime" type="number" value="86400" step="60" min="0">
</label>
<label>
Request domains
<input id="fetch-options-requestDomains" data-type="json" value='{"regular":"pdw-usr.userreport.com","nonPersonalised":"dnt-userreport.com"}'>
</label>
<label>
<input id="fetch-options-debug" type="checkbox">
Debug
</label>
</details>
<script>
document.getElementById('fetch-options-debug').checked = true;
Array.prototype.forEach.call(document.querySelectorAll('[data-indeterminate]'), function (node) {
node.defaultIndeterminate = node.indeterminate = true;
});
var getOptions = function () {
var options = {};
Array.prototype.forEach.call(document.querySelectorAll('[id^="fetch-options-"]'), function (node) {
var value = node.type === 'checkbox'
? node.indeterminate ? null : node.checked
: node.value;
var defaultValue = node.type === 'checkbox'
? node.defaultIndeterminate ? null : node.defaultChecked
: node.defaultValue;
if (value === defaultValue) {
return;
}
if (node.type === 'number') {
value = Number(value);
defaultValue = Number(defaultValue);
} else if (node.getAttribute('data-type') === 'json') {
var parse = function (value){
return Function('"use strict";return (' + value + ')')();
};
value = parse(value);
defaultValue = parse(defaultValue);
}
options[node.id.split('-').pop()] = value;
});
return options;
}
</script>
<details>
<summary>Page Options</summary>
<label>
<input id="page-options-tcf" type="checkbox">
Use TCF 2.2 API
</label>
<label class="offset">
<input id="page-options-tcf-string" type="checkbox">
Consent string is present
</label>
<label class="offset">
<input id="page-options-tcf-dialog" type="checkbox">
Consent dialog is completed
</label>
<label class="offset">
<input id="page-options-tcf-storage" type="checkbox">
Consent to use storage (Purpose #1)
</label>
<label class="offset">
<input id="page-options-tcf-personalization" type="checkbox">
Consent to use personalization (Purpose #3)
</label>
<label class="offset">
<input id="page-options-tcf-vendor" type="checkbox">
Consent for AudienceProject (Vendor #394)
</label>
<label>
<input id="page-options-gpt" type="checkbox">
Use Google Publisher Tag API
</label>
<label>
<input id="page-options-localstorage" type="checkbox">
Freeze local storage
</label>
<label>
<input id="page-options-referrer" type="checkbox">
Emulate external referrer
</label>
</details>
<script>
(function () {
var node = document.getElementById('page-options-tcf');
var mock = function (command, version, callback, arguments) {
console.log('[Test Page] TCF call:', command, arguments);
if (command !== 'addEventListener') {
return;
}
setTimeout(function () {
callback({
gdprApplies: true,
eventStatus: document.getElementById('page-options-tcf-dialog').checked ? 'useractioncomplete' : 'cmpuishown',
tcString: document.getElementById('page-options-tcf-string').checked ? 'abc' : '',
purpose: {
consents: {
1: document.getElementById('page-options-tcf-storage').checked,
3: document.getElementById('page-options-tcf-personalization').checked
}
},
vendor: {
consents: {
394: document.getElementById('page-options-tcf-vendor').checked
}
}
}, true);
}, 1000);
};
node.onclick = function () {
if (node.checked) {
window.__tcfapi = mock;
} else {
delete window.__tcfapi;
}
}
node.onclick();
})();
(function () {
var node = document.getElementById('page-options-gpt');
var cmd = [];
const cmdPush = cmd.push.bind(cmd);
cmd.push = (callback) => {
cmdPush(callback);
callback();
}
var pubads = {
_targeting: {},
};
pubads.clearTargeting = (key) => {
if (key) {
delete pubads._targeting[key];
} else {
pubads._targeting = {};
}
};
pubads.getTargeting = (key) => {
return pubads._targeting[key];
};
pubads.getTargetingKeys = (key) => {
return Object.keys(pubads._targeting[key]);
};
pubads.setTargeting = (key, value) => {
pubads._targeting[key] = value;
};
var mock = {
cmd,
pubads: () => pubads,
};
node.onclick = function () {
if (node.checked) {
window.googletag = mock;
} else {
delete window.googletag;
}
}
node.onclick();
})();
(function () {
var realLocalStorage = localStorage;
var node = document.getElementById('page-options-localstorage');
node.onclick = function() {
if (node.checked) {
Object.defineProperty(window, 'localStorage', {
value: Object.freeze({}),
writable: true
});
} else {
Object.defineProperty(window, 'localStorage', {
value: realLocalStorage,
writable: true
});
}
};
node.onclick();
})();
(function () {
var realDocumentReferrer = document.referrer;
var node = document.getElementById('page-options-referrer');
node.onclick = function() {
if (node.checked) {
Object.defineProperty(document, 'referrer', {
value: 'https://www.audienceproject.com/',
writable: true
});
} else {
Object.defineProperty(document, 'referrer', {
value: realDocumentReferrer,
writable: true
});
}
};
node.onclick();
})();
</script>
<details>
<summary>Fetch Status</summary>
<label>
<textarea id="fetch-status-area" rows="15" style="width:100%" disabled></textarea>
</label>
</details>
<script>
(function () {
var node = document.getElementById('fetch-status-area');
setInterval(function () {
var data = JSON.stringify(AudienceProjectData.fetchStatus, null, 2);
if (node.innerHTML !== data) {
node.innerHTML = data;
}
}, 50);
})();
</script>
<details open>
<summary>Debug Log</summary>
<label>
<textarea id="debug-log-area" rows="25" style="width:100%" disabled></textarea>
</label>
</details>
<script>
(function () {
var node = document.getElementById('debug-log-area');
var realConsoleLog = console.log;
console.log = function() {
realConsoleLog.apply(console, arguments);
if (arguments[0] !== '[AudienceProjectData]') {
return;
}
Array.prototype.map.call(arguments, function (data, index, items) {
var result = typeof data === 'object' ? JSON.stringify(data) : data;
node.innerHTML += result + (index < items.length - 1 ? ' ' : '\n');
});
}
})();
var resetLogArea = function () {
document.getElementById('debug-log-area').innerHTML = '';
}
</script>
<script>
document.getElementById('fetch-call').onclick = function () {
resetLogArea();
var customer = document.getElementById('fetch-customerId').value || 'test';
var options = getOptions();
AudienceProjectData.fetch(customer, options, function (data) {
console.log('[Test Page] Success callback:', data);
}).promise()
.then(function (data) {
console.log('[Test Page] Success promise:', data);
})
.catch(function (error) {
console.log('[Test Page] Error promise:', error);
});
}
</script>