-
Notifications
You must be signed in to change notification settings - Fork 11
/
EUCookieLaw-admin.js
425 lines (344 loc) · 11 KB
/
EUCookieLaw-admin.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
/**
* EUCookieLaw: simple object to accomplish european law requirements about cookie transmission to clients
* @class EUCookieLaw
* @link https://github.com/diegolamonica/EUCookieLaw/
* @author Diego La Monica (diegolamonica) <[email protected]>
* @copyright 2015 Diego La Monica
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
jQuery(document).ready(function($) {
if(window['pagenow'] === undefined || pagenow !== 'eu-cookie-law_page_EUCookieLaw-settings') return;
var EUCookieLawServices = {};
var mode = 'export';
function manageSettings(){
if($('#eucookielaw-settings').length == 0){
$('<div id="eucookielaw-settings"><textarea></textarea><p><button>done</button></p>').appendTo('body');
}
$('#eucookielaw-settings textarea').val( $('form').serialize() );
}
function exportSettings(event){
event.preventDefault();
mode = 'export';
manageSettings();
}
function importSettings(event){
event.preventDefault();
mode = 'import';
manageSettings();
}
window.EUCookieLawAddService = function( serviceName, rules){
EUCookieLawServices[serviceName] = rules;
}
function cloneItem(theContainer){
// Cloning the container with events
var clonedSection = $(theContainer).clone(true);
// And appending it just after the current container
return $(clonedSection).insertAfter(theContainer);
}
function makeRepeater(sectionsSelector, addClass, removeClass, callback) {
$(document
).on("click",
sectionsSelector + " " + addClass + "," +
sectionsSelector + " " + removeClass,
function (event) {
// Avoiding the link to do the default behavior.
event.preventDefault();
// Get the container to be removed/cloned
var theContainer = $(this).parents(sectionsSelector);
if ($(this).is(addClass)) {
var theItem = cloneItem(theContainer);
if(typeof(callback) === 'function'){
callback('added', theItem);
}
} else {
// If the user confirm the "Are You Sure" message
// we can remove the current container
// if (confirm(AYSMsg)) {
// Making fade out, hide and remove element a sequence
// to provide a nice UX when removing element.
$(theContainer).fadeOut('normal',
function () {
$(this).hide('fast',
function () {
$(this).remove();
if(typeof(callback) === 'function'){
callback('removed');
}
}
);
}
);
// }
}
});
}
makeRepeater(
'.eucookie-repeated-section', /* The container selector */
'.add', /* The add action selector */
'.remove', /* The remove action selector */
function(action) {
console.log(action);
$('input[name="blocked_domains[]"]:first').blur();
}
);
EUCookieLawAddService('google-all', [
'.google.it',
'.google.com',
'.googleapis.com'
]);
EUCookieLawAddService('google-fonts', [
'fonts.googleapis.com'
]);
EUCookieLawAddService('google-maps', [
'maps.google.com',
'maps.googleapis.com',
'www.google.com/maps',
'www.google.it/maps'
]);
EUCookieLawAddService('google-analytics', [
'.google-analytics.com'
]);
EUCookieLawAddService('google-adsense', [
'.googlesyndication.com/pagead/'
]);
EUCookieLawAddService('google-doubleclick', [
'.doubleclick.net'
]);
EUCookieLawAddService('facebook', [
'.facebook.net',
'.facebook.com',
'.facebook.it',
'.facebook.net'
]);
EUCookieLawAddService('instagram', [
'.instagram.com',
'.cdninstagram.com'
]);
EUCookieLawAddService('linkedin', [
'.linkedin.com'
]);
EUCookieLawAddService('pinterest', [
'.pinterest.com'
]);
EUCookieLawAddService('twitter', [
'.twitter.com',
'.twitterfeed.com'
]);
EUCookieLawAddService('vimeo', [
'.vimeo.com'
]);
EUCookieLawAddService('google-youtube', [
'.youtube-nocookie.com',
'.youtube.com'
]);
EUCookieLawAddService('Vimeo', [
'.vimeo.com'
]);
EUCookieLawAddService('digg', [
'.digg.com'
]);
EUCookieLawAddService('addthis', [
'.addthis.com'
]);
EUCookieLawAddService('eventbrite', [
'.eventbrite.it',
'.eventbrite.com'
]);
$('[data-eucookielaw-include]').on('click', function(event){
event.preventDefault();
var serviceRules = EUCookieLawServices[ $(this).data('eucookielaw-include')].slice() ;
if(serviceRules) {
$('#blocked-urls .eucookie-repeated-section input').each(function(){
var idx;
if(idx = serviceRules.indexOf( $(this).val() ) !=-1){
serviceRules[idx] = false;
}
});
serviceRules.forEach( function(item){
if(item != false){
cloneItem('#blocked-urls .eucookie-repeated-section:last');
$('#blocked-urls .eucookie-repeated-section:last input').val(item);
}
});
}
});
$('[data-set-url]').on('click', function(event){
event.preventDefault();
var $this = $(this);
$( $this.attr('href')).val( $this.data('set-url') );
});
$('#import-settings').on('click', importSettings);
$('#export-settings').on('click', exportSettings);
$(document).on('click', '#eucookielaw-settings button', function(){
if(mode =='import') {
var settings = $('#eucookielaw-settings textarea').val();
var queryString = {};
settings.replace(
new RegExp("([^?=&]+)(=([^&]*))?", "g"),
function($0, param, $2, value) {
param = decodeURIComponent(param);
value = decodeURIComponent(value).replace(/\+/g, ' ');
if(param!='nonce') {
if (/.*\[]$/.test(param)) {
param = param.substr(0, param.length - 2);
if (!$.isArray(queryString[param])) {
if (queryString[param] !== undefined)
queryString[param] = [queryString[param]];
else
queryString[param] = [];
}
if (value !== '') {
queryString[param].push(value);
}
} else {
queryString[param] = value;
}
}
}
);
for(var key in queryString){
if(key!='nonce') {
var value = queryString[key],
selector = '[name="' + key + '"]';
if ($.isArray(value)) {
selector = '[name="' + key + '[]"]';
$(selector).parent('.eucookie-repeated-section').not(':first').remove();
selector += ":last";
for (var i = 0; i <= value.length; i++) {
if (i > 0) {
cloneItem($(selector).parent('.eucookie-repeated-section'));
}
$(selector).val(value[i]);
}
} else {
$(selector).not(':checkbox').not(':radio').val(value);
$(selector + '[value="' + value + '"]:radio').click();
}
}
}
}
$('#eucookielaw-settings').remove();
});
$('.handlediv').on('click', function(event){
$(this).siblings('.inside').slideToggle('fast');
});
var pos = $('#submit').offset().top;
$(window).on('scroll', function () {
var scrollTop = $(window).scrollTop();
if (pos < scrollTop) {
$('#submit').parent().addClass('fixed-on-top');
} else {
$('#submit').parent().removeClass('fixed-on-top');
}
});
function escapeRegExp(str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
$(document).on('focus', 'input[name="blocked_domains[]"].invalid', function(event){
var rel = $(this).data('rel');
rel.addClass('invalid-by');
});
$(document).on('blur', 'input[name="blocked_domains[]"]', function(event){
var rel = $(this).data('rel');
if(rel) {
rel.removeClass('invalid-by');
}
// Check if there is a rule twice
// or a rule covered from another
var allURLs = $('input[name="blocked_domains[]"]'),
invalidURLs = [];
allURLs.each( function(){
var thisURL = $(this),
thisURLvalue = thisURL.val(),
isRegExp = (thisURLvalue[0] == '.'),
thisURLreg = new RegExp( '^' + (isRegExp?'([a-z0-9\\-_]{1,63}\\.)*':'') + escapeRegExp(thisURLvalue.substr(isRegExp?1:0)) );
if(thisURLvalue!='') {
allURLs.not(this).each(function () {
if (thisURLreg.test($(this).val()) || thisURLvalue == $(this).val()) {
$(this).data('rel', thisURL);
invalidURLs.push(this);
}
});
}
});
$(allURLs).not(invalidURLs).removeClass('invalid');
$(invalidURLs).addClass('invalid');
});
$('input[name="blocked_domains[]"]:first').blur();
$('[name=debug]').on('change', function(){
var val = $('[name=debug]:checked').val();
$('.on-debug-'+ val).slideDown();
$('.on-debug').not('.on-debug-'+ val).slideUp();
}).change();
$('[name=agree_on_scroll]').on('change', function(){
var val = $('[name=agree_on_scroll]:checked').val();
if(val == 'y'){
$('[name=agree_on_scroll]:checked').parents('label').next().show();
}else{
$('[name=agree_on_scroll]:checked').parents('label').prev().hide();
}
}).change();
function getTabLabel(lang){
return $('#eucookielaw-languages-tab > li').filter( function(){ return $(this).data('eucookielaw-lang') == lang });
}
function showLang(event){
event.preventDefault();
$('#eucookielaw-languages-tab > li.current').not(this).removeClass('current');
var lang = $(this).addClass('current').data('eucookielaw-lang');
var theRightTab = $('.language_box').filter( function(){return $(this).data('eucookielaw-lang-ref') == lang });
$('.language_box').not(theRightTab).hide();
theRightTab.show();
}
function addLang( lang, content ){
if( eucookielawLanguages[lang] && getTabLabel(lang) > 0 ) return false;
eucookielawLanguages[lang] = content;
var li = $('<li />')
.html(lang)
.insertBefore( '#add-new-language-box')
.data( 'eucookielaw-lang', lang)
.on('click', showLang);
var baseTab = $('.language_box:last');
var cloned = baseTab.clone();
cloned.insertBefore(baseTab).data('eucookielaw-lang-ref', lang);
$('*[data="eucookielaw-binded-lang"]', cloned).val( lang );
$('*[data="eucookielaw-binded-title"]', cloned).val( content.title );
$('*[data="eucookielaw-binded-message"]', cloned).val( content.message );
$('*[data="eucookielaw-binded-agree"]', cloned).val( content.agreeLabel);
$('*[data="eucookielaw-binded-disagree"]', cloned).val( content.disagreeLabel );
$('.mark-deleted input', cloned).val( lang).prop('checked', false);
li.click();
}
$('#add-new-language-box').on('click', function(){
addLang('New language', {
title: '',
message: '',
agreeLabel: '',
disagreeLabel: ''
});
});
$(document).on('change', '*[data="eucookielaw-binded-lang"]', function(event){
var lang = $(this).val(),
liCurrent = $('#eucookielaw-languages-tab > li.current'),
curLang = liCurrent.data('eucookielaw-lang-ref'),
languageBox = $('.language_box:visible');
eucookielawLanguages[lang] = eucookielawLanguages[curLang];
delete(eucookielawLanguages[curLang]);
liCurrent
.text(lang)
.data('eucookielaw-lang', lang);
languageBox.data('eucookielaw-lang-ref', lang);
$('.mark-deleted input', languageBox).val(lang);
} );
if(eucookielawLanguages){
if(eucookielawLanguages['']) delete eucookielawLanguages[''];
for(var lang in eucookielawLanguages){
console.log(lang);
addLang( lang, eucookielawLanguages[lang]);
}
$('#eucookielaw-languages-tab > li:first').click();
}else{
console.log(eucookielawLanguages);
}
});