forked from osano/cookieconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookieconsent.js
341 lines (289 loc) · 9.85 KB
/
cookieconsent.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
function cookieconsent_banner(force) {
// Stop from running again, if accidently included more than once.
if (window.hasCookieConsent && !force) return;
window.hasCookieConsent = true;
/*
Constants
*/
// Client variable which may be present containing options to override with
var OPTIONS_VARIABLE = 'cookieconsent_options';
// Change cookie consent options on the fly.
var OPTIONS_UPDATER = 'update_cookieconsent_options';
// Name of cookie to be set when dismissed
var DISMISSED_COOKIE = 'cookieconsent_userchoice';
// The path to built in themes (s3 bucket). May be overridden with the 'theme' runtime option.
var THEME_BUCKET_PATH = '//s3.amazonaws.com/cc.silktide.com/';
// No point going further if they've already dismissed.
if (document.cookie.indexOf(DISMISSED_COOKIE) > -1 && ! force) {
return;
}
// IE8...
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}
/*
Helper methods
*/
var Util = {
isArray: function (obj) {
var proto = Object.prototype.toString.call(obj);
return proto == '[object Array]';
},
isObject: function (obj) {
return Object.prototype.toString.call(obj) == '[object Object]';
},
each: function (arr, callback, /* optional: */context, force) {
if (Util.isObject(arr) && !force) {
for (var key in arr) {
if (arr.hasOwnProperty(key)) {
callback.call(context, arr[key], key, arr);
}
}
} else {
for (var i = 0, ii = arr.length; i < ii; i++) {
callback.call(context, arr[i], i, arr);
}
}
},
merge: function (obj1, obj2) {
if (!obj1) return;
Util.each(obj2, function (val, key) {
if (Util.isObject(val) && Util.isObject(obj1[key])) {
Util.merge(obj1[key], val);
} else {
obj1[key] = val;
}
})
},
bind: function (func, context) {
return function () {
return func.apply(context, arguments);
};
},
/*
find a property based on a . separated path.
i.e. queryObject({details: {name: 'Adam'}}, 'details.name') // -> 'Adam'
returns null if not found
*/
queryObject: function (object, query) {
var queryPart;
var i = 0;
var head = object;
query = query.split('.');
while ( (queryPart = query[i++]) && head.hasOwnProperty(queryPart) && (head = head[queryPart]) ) {
if (i === query.length) return head;
}
return null;
},
setCookie: function (name, value, expirydays) {
var exdate = new Date();
expirydays = expirydays || 365;
exdate.setDate(exdate.getDate() + expirydays);
document.cookie = name + '=' + value + '; expires=' + exdate.toUTCString() + '; path=/'
},
addEventListener: function (el, event, eventListener) {
if (el.addEventListener) {
el.addEventListener(event, eventListener);
} else {
el.attachEvent('on' + event, eventListener);
}
}
};
var DomBuilder = (function () {
/*
The attribute we store events in.
*/
var eventAttribute = 'data-cc-event';
var conditionAttribute = 'data-cc-if';
/*
Shim to make addEventListener work correctly with IE.
*/
var addEventListener = function (el, event, eventListener) {
// Add multiple event listeners at once if array is passed.
if (Util.isArray(event)) {
return Util.each(event, function (ev) {
addEventListener(el, ev, eventListener);
});
}
if (el.addEventListener) {
el.addEventListener(event, eventListener);
} else {
el.attachEvent('on' + event, eventListener);
}
};
/*
Replace {{variable.name}} with it s property on the scope
Also supports {{variable.name || another.name || 'string'}}
*/
var insertReplacements = function (htmlStr, scope) {
return htmlStr.replace(/\{\{(.*?)\}\}/g, function (_match, sub) {
var tokens = sub.split('||');
var value;
while (token = tokens.shift()) {
token = token.trim();
// If string
if (token[0] === '"') return token.slice(1, token.length - 1);
// If query matches
value = Util.queryObject(scope, token);
if (value) return value;
}
return '';
});
};
/*
Turn a string of html into DOM
*/
var buildDom = function (htmlStr) {
var container = document.createElement('div');
container.innerHTML = htmlStr;
return container.children[0];
};
var applyToElementsWithAttribute = function (dom, attribute, func) {
var els = dom.parentNode.querySelectorAll('[' + attribute + ']');
Util.each(els, function (element) {
var attributeVal = element.getAttribute(attribute);
func(element, attributeVal);
}, window, true);
};
/*
Parse event attributes in dom and set listeners to their matching scope methods
*/
var applyEvents = function (dom, scope) {
applyToElementsWithAttribute(dom, eventAttribute, function (element, attributeVal) {
var parts = attributeVal.split(':');
var listener = Util.queryObject(scope, parts[1]);
addEventListener(element, parts[0], Util.bind(listener, scope));
});
};
var applyConditionals = function (dom, scope) {
applyToElementsWithAttribute(dom, conditionAttribute, function (element, attributeVal) {
var value = Util.queryObject(scope, attributeVal);
if (!value) {
element.parentNode.removeChild(element);
}
});
};
return {
build: function (htmlStr, scope) {
if (Util.isArray(htmlStr)) htmlStr = htmlStr.join('');
htmlStr = insertReplacements(htmlStr, scope);
var dom = buildDom(htmlStr);
applyEvents(dom, scope);
applyConditionals(dom, scope);
return dom;
}
};
})();
/*
Plugin
*/
var cookieconsent = {
options: {
callback_yes: function () {window.location.reload();},
callback_no: function () {window.location.reload();},
message: 'This website uses cookies to ensure you get the best experience on our website. ',
dismiss_yes: 'I accept!',
dismiss_no: 'I refuse!',
learnMore: 'More info',
link: null,
container: null, // selector
theme: 'light-top',
markup: [
'<div class="cc_banner-wrapper {{containerClasses}}">',
'<div class="cc_banner cc_container cc_container--open">',
'<a href="#null" data-cc-event="click:dismiss_yes" class="cc_btn cc_btn_accept_all">{{options.dismiss_yes}}</a>',
'<a href="#null" data-cc-event="click:dismiss_no" class="cc_btn cc_btn_accept_all">{{options.dismiss_no}}</a>',
'<p class="cc_message">{{options.message}} <a data-cc-if="options.link" class="cc_more_info" href="{{options.link || "#null"}}">{{options.learnMore}}</a></p>',
'<a class="cc_logo" target="_blank" href="http://silktide.com/cookieconsent">Cookie Consent plugin for the EU cookie law</a>',
'</div>',
'</div>'
]
},
init: function () {
var options = window[OPTIONS_VARIABLE];
if (options) this.setOptions(options);
this.setContainer();
// Calls render when theme is loaded.
if (this.options.theme) {
this.loadTheme(this.render);
} else {
this.render();
}
},
setOptionsOnTheFly: function (options) {
this.setOptions(options);
this.render();
},
setOptions: function (options) {
Util.merge(this.options, options);
},
setContainer: function () {
if (this.options.container) {
this.container = document.querySelector(this.options.container);
} else {
this.container = document.body;
}
// Add class to container classes so we can specify css for IE8 only.
this.containerClasses = '';
if (navigator.appVersion.indexOf('MSIE 8') > -1) {
this.containerClasses += ' cc_ie8'
}
},
loadTheme: function (callback) {
var theme = this.options.theme;
// If theme is specified by name
if (theme.indexOf('.css') === -1) {
theme = THEME_BUCKET_PATH + theme + '.css';
}
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = theme;
var loaded = false;
link.onload = Util.bind(function () {
if (!loaded && callback) {
callback.call(this);
loaded = true;
}
}, this);
document.getElementsByTagName("head")[0].appendChild(link);
},
render: function () {
// remove current element (if we've already rendered)
if (this.element && this.element.parentNode) {
this.element.parentNode.removeChild(this.element);
delete this.element;
}
this.element = DomBuilder.build(this.options.markup, this);
if (!this.container.firstChild) {
this.container.appendChild(this.element);
} else {
this.container.insertBefore(this.element, this.container.firstChild);
}
},
dismiss_yes: function (evt) {
evt.preventDefault();
Util.setCookie(DISMISSED_COOKIE, 'yes');
this.container.removeChild(this.element);
this.options.callback_yes();
},
dismiss_no: function (evt) {
evt.preventDefault();
Util.setCookie(DISMISSED_COOKIE, 'no');
this.container.removeChild(this.element);
this.options.callback_no();
},
};
var init;
var initialized = false;
(init = function () {
if (!initialized && document.readyState == 'complete') {
cookieconsent.init();
initialized = true;
window[OPTIONS_UPDATER] = Util.bind(cookieconsent.setOptionsOnTheFly, cookieconsent);
}
})();
Util.addEventListener(document, 'readystatechange', init);
};