forked from ToX82/cookie-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiebar-latest.js
533 lines (466 loc) · 14 KB
/
cookiebar-latest.js
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
/*
Plugin Name: Cookie Bar
Plugin URL: http://cookie-bar.eu/
@author: Emanuele "ToX" Toscano
@description: Cookie Bar is a free & simple solution to the EU cookie law.
*/
/*
* Available languages array
*/
var CookieLanguages = [
'bg',
'ca',
'cs',
'da',
'de',
'el',
'en',
'es',
'fi',
'fr',
'hu',
'it',
'nl',
'no',
'pl',
'pt',
'ro',
'ru',
'se',
'sk',
'sl'
];
var cookieLawStates = [
'AT',
'BE',
'BG',
'CY',
'CZ',
'DE',
'DK',
'EE',
'EL',
'ES',
'FI',
'FR',
'GB',
'HR',
'HU',
'IE',
'IT',
'LT',
'LU',
'LV',
'MT',
'NL',
'PL',
'PT',
'RO',
'SE',
'SI',
'SK'
];
/**
* Main function
*/
function setupCookieBar() {
var scriptPath = getScriptPath();
var cookieBar;
var button;
var buttonNo;
var prompt;
var promptBtn;
var promptClose;
var promptNoConsent;
var startup = false;
var shutup = false;
// Get the users current cookie selection
var currentCookieSelection = getCookie();
/**
* If cookies are disallowed, delete all the cookies at every refresh
* @param null
* @return null
*/
if (currentCookieSelection == 'CookieDisallowed') {
removeCookies();
setCookie('cookiebar', 'CookieDisallowed');
}
// Stop further execution,
// if the user already allowed / disallowed cookie usage.
if (currentCookieSelection !== undefined) {
return;
}
/**
* Load plugin only if needed:
* show if the "always" parameter is set
* do nothing if cookiebar cookie is set
* show only for european users
* @param null
* @return null
*/
// Init cookieBAR without geoip localization, if it was explicitly disabled.
if (getURLParameter('noGeoIp')) {
startup = true;
initCookieBar();
}
// Otherwise execute geoip localization and init cookieBAR afterwards.
else {
// If the user is in EU, then STARTUP
var checkEurope = new XMLHttpRequest();
checkEurope.open('GET', 'https://freegeoip.app/json/', true);
checkEurope.onreadystatechange = function() {
// Don't process anything else besides finished requests.
if (checkEurope.readyState !== 4) {
return;
}
// Immediately clear timeout handler in order to avoid multiple executions.
clearTimeout(xmlHttpTimeout);
// Process response on case of a successful request.
if (checkEurope.status === 200) {
var country = JSON.parse(checkEurope.responseText).country_code;
if (cookieLawStates.indexOf(country) > -1) {
startup = true;
} else {
// If the user is outside of EEA, allow cookies and refresh if needed
shutup = true;
setCookie('cookiebar', 'CookieAllowed');
if (getURLParameter('refreshPage')) {
window.location.reload();
}
}
}
// Enforce startup, if the webservice returned an error.
else {
startup = true;
}
// Init cookieBAR after geoip localization was finished.
initCookieBar();
};
/*
* Using an external service for geoip localization could be a long task
* If it takes more than 1.5 second, start normally
*/
var xmlHttpTimeout = setTimeout(function () {
console.log('cookieBAR - Timeout for ip geolocation');
// Make sure, that checkEurope.onreadystatechange() is not called anymore
// in order to avoid possible multiple executions of initCookieBar().
checkEurope.onreadystatechange = function() {};
// Abort geoip localization.
checkEurope.abort();
// Init cookieBAR after geoip localization was aborted.
startup = true;
initCookieBar();
}, 1500);
checkEurope.send();
}
/**
* Initialize cookieBAR according to the startup / shutup values.
* @return null
*/
function initCookieBar() {
// If at least a cookie or localstorage is set, then STARTUP
if (document.cookie.length > 0 || window.localStorage.length > 0) {
var accepted = getCookie();
if (accepted === undefined) {
startup = true;
} else {
shutup = true;
}
} else {
startup = false;
}
// If cookieBAR should always be show, then STARTUP
if (getURLParameter('always')) {
startup = true;
}
if (startup === true && shutup === false) {
startCookieBar();
}
}
/**
* Load external files (css, language files etc.)
* @return null
*/
function startCookieBar() {
var userLang = detectLang();
// Load CSS file
var theme = '';
if (getURLParameter('theme')) {
theme = '-' + getURLParameter('theme');
}
var path = scriptPath.replace(/[^\/]*$/, '');
var minified = (scriptPath.indexOf('.min') > -1) ? '.min' : '';
var stylesheet = document.createElement('link');
stylesheet.setAttribute('rel', 'stylesheet');
stylesheet.setAttribute('href', path + 'themes/cookiebar' + theme + minified + '.css');
document.head.appendChild(stylesheet);
// Load the correct language messages file and set some variables
var request = new XMLHttpRequest();
request.open('GET', path + 'lang/' + userLang + '.html', true);
request.onreadystatechange = function() {
if (request.readyState === 4 && request.status === 200) {
var element = document.createElement('div');
element.innerHTML = request.responseText;
document.getElementsByTagName('body')[0].appendChild(element);
cookieBar = document.getElementById('cookie-bar');
button = document.getElementById('cookie-bar-button');
buttonNo = document.getElementById('cookie-bar-button-no');
prompt = document.getElementById('cookie-bar-prompt');
promptBtn = document.getElementById('cookie-bar-prompt-button');
promptClose = document.getElementById('cookie-bar-prompt-close');
promptContent = document.getElementById('cookie-bar-prompt-content');
promptNoConsent = document.getElementById('cookie-bar-no-consent');
thirdparty = document.getElementById('cookie-bar-thirdparty');
tracking = document.getElementById('cookie-bar-tracking');
scrolling = document.getElementById('cookie-bar-scrolling');
privacyPage = document.getElementById('cookie-bar-privacy-page');
privacyLink = document.getElementById('cookie-bar-privacy-link');
mainBarPrivacyLink = document.getElementById('cookie-bar-main-privacy-link');
if (!getURLParameter('showNoConsent')) {
promptNoConsent.style.display = 'none';
buttonNo.style.display = 'none';
}
if (getURLParameter('blocking')) {
fadeIn(prompt, 500);
promptClose.style.display = 'none';
}
if (getURLParameter('thirdparty')) {
thirdparty.style.display = 'block';
}
if (getURLParameter('tracking')) {
tracking.style.display = 'block';
}
if (getURLParameter('hideDetailsBtn')) {
promptBtn.style.display = 'none';
}
if (getURLParameter('scrolling')) {
scrolling.style.display = 'inline-block';
}
if (getURLParameter('top')) {
cookieBar.style.top = 0;
setBodyMargin('top');
} else {
cookieBar.style.bottom = 0;
setBodyMargin('bottom');
}
if (getURLParameter('privacyPage')) {
privacyLink.href = getPrivacyPageUrl();
privacyPage.style.display = 'inline-block';
}
if (getURLParameter('showPolicyLink') && getURLParameter('privacyPage')) {
mainBarPrivacyLink.href = getPrivacyPageUrl();
mainBarPrivacyLink.style.display = 'inline-block';
}
setEventListeners();
fadeIn(cookieBar, 250);
setBodyMargin();
}
};
request.send();
}
/**
* Get the privacy page's url (if set as an option)
* @return {String} privacy page url
*/
function getPrivacyPageUrl() {
return decodeURIComponent(getURLParameter('privacyPage'));
}
/**
* Get this javascript's path
* @return {String} this javascript's path
*/
function getScriptPath() {
var scripts = document.getElementsByTagName('script');
for (i = 0; i < scripts.length; i += 1) {
if (scripts[i].hasAttribute('src')) {
path = scripts[i].src;
if (path.indexOf('cookiebar') > -1) {
return path;
}
}
}
}
/**
* Get browser's language or, if available, the specified one
* @return {String} userLang - short language name
*/
function detectLang() {
var userLang = getURLParameter('forceLang');
if (userLang === false) {
userLang = navigator.language || navigator.userLanguage;
}
userLang = userLang.substr(0, 2);
if (CookieLanguages.indexOf(userLang) < 0) {
userLang = 'en';
}
return userLang;
}
/**
* Get Cookie Bar's cookie if available
* @return {string} cookie value
*/
function getCookie() {
var cookieValue = document.cookie.match(/(;)?cookiebar=([^;]*);?/);
if (cookieValue == null) {
return undefined;
} else {
return decodeURI(cookieValue[2]);
}
}
/**
* Write cookieBar's cookie when user accepts cookies :)
* @param {string} name - cookie name
* @param {string} value - cookie value
* @return null
*/
function setCookie(name, value) {
var exdays = 30;
if (getURLParameter('remember')) {
exdays = getURLParameter('remember');
}
var exdate = new Date();
exdate.setDate(exdate.getDate() + parseInt(exdays));
var cValue = encodeURI(value) + ((exdays === null) ? '' : '; expires=' + exdate.toUTCString() + ';path=/');
document.cookie = name + '=' + cValue;
}
/**
* Remove all the cookies and empty localStorage when user refuses cookies
* @return null
*/
function removeCookies() {
// Clear cookies
document.cookie.split(';').forEach(function(c) {
document.cookie = c.replace(/^\ +/, '').replace(/\=.*/, '=;expires=' + new Date().toUTCString() + ';path=/');
});
// Clear localStorage
localStorage.clear();
}
/**
* FadeIn effect
* @param {HTMLElement} el - Element
* @param {number} speed - effect duration
* @return null
*/
function fadeIn(el, speed) {
var s = el.style;
s.opacity = 0;
s.display = 'block';
(function fade() {
(s.opacity -= -0.1) > 0.9 ? null : setTimeout(fade, (speed / 10));
})();
}
/**
* FadeOut effect
* @param {HTMLElement} el - Element
* @param {number} speed - effect duration
* @return null
*/
function fadeOut(el, speed) {
var s = el.style;
s.opacity = 1;
(function fade() {
(s.opacity -= 0.1) < 0.1 ? s.display = 'none' : setTimeout(fade, (speed / 10));
})();
}
/**
* Add a body tailored bottom (or top) margin so that CookieBar doesn't hide anything
* @param {String} where
* @return null
*/
function setBodyMargin(where) {
setTimeout(function () {
var height = document.getElementById('cookie-bar').clientHeight;
var bodyEl = document.getElementsByTagName('body')[0];
var bodyStyle = bodyEl.currentStyle || window.getComputedStyle(bodyEl);
switch (where) {
case 'top':
bodyEl.style.marginTop = (parseInt(bodyStyle.marginTop) + height) + 'px';
break;
case 'bottom':
bodyEl.style.marginBottom = (parseInt(bodyStyle.marginBottom) + height) + 'px';
break;
}
}, 300);
}
/**
* Clear the bottom (or top) margin when the user closes the CookieBar
* @return null
*/
function clearBodyMargin() {
var height = document.getElementById('cookie-bar').clientHeight;
if (getURLParameter('top')) {
var currentTop = parseInt(document.getElementsByTagName('body')[0].style.marginTop);
document.getElementsByTagName('body')[0].style.marginTop = currentTop - height + 'px';
} else {
var currentBottom = parseInt(document.getElementsByTagName('body')[0].style.marginBottom);
document.getElementsByTagName('body')[0].style.marginBottom = currentBottom -height + 'px';
}
}
/**
* Get ul parameter to look for
* @param {string} name - param name
* @return {String|Boolean} param value (false if parameter is not found)
*/
function getURLParameter(name) {
var set = scriptPath.split(name + '=');
if (set[1]) {
return set[1].split(/[&?]+/)[0];
} else {
return false;
}
}
/**
* Set button actions (event listeners)
* @return null
*/
function setEventListeners() {
button.addEventListener('click', function() {
setCookie('cookiebar', 'CookieAllowed');
clearBodyMargin();
fadeOut(prompt, 250);
fadeOut(cookieBar, 250);
if (getURLParameter('refreshPage')) {
window.location.reload();
}
});
buttonNo.addEventListener('click', function() {
var txt = promptNoConsent.textContent.trim();
var confirm = window.confirm(txt);
if (confirm === true) {
removeCookies();
setCookie('cookiebar', 'CookieDisallowed');
clearBodyMargin();
fadeOut(prompt, 250);
fadeOut(cookieBar, 250);
}
});
promptBtn.addEventListener('click', function() {
fadeIn(prompt, 250);
});
promptClose.addEventListener('click', function() {
fadeOut(prompt, 250);
});
if (getURLParameter('scrolling')) {
var scrollPos = document.body.getBoundingClientRect().top;
var scrolled = false;
window.addEventListener('scroll', function() {
if (scrolled === false) {
if (document.body.getBoundingClientRect().top - scrollPos > 250 || document.body.getBoundingClientRect().top - scrollPos < -250) {
setCookie('cookiebar', 'CookieAllowed');
clearBodyMargin();
fadeOut(prompt, 250);
fadeOut(cookieBar, 250);
scrolled = true;
if (getURLParameter('refreshPage')) {
window.location.reload();
}
}
}
});
}
}
}
// Load the script only if there is at least a cookie or a localStorage item
document.addEventListener('DOMContentLoaded', function() {
setupCookieBar();
});