-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathindex.js
101 lines (90 loc) · 2.38 KB
/
index.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
/**
* @fileOverview
* Provides cookie utilities.
*/
// Imports.
var global = require('../global');
var cookieConsent = require('../cookieConsent');
// Store to hold cookie values
var store = {};
/**
* Create a cookie.
*
* @param {String} name The cookie name.
* @param {String} value The cookie value.
* @param {Number} days The cookie lifespan in days.
* @param {String} [domain] The domain for the cookie.
* @param {Boolean} [secure] Whether this is a secure cookie.
*/
function createCookie (name, value, days, domain, secure) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
var expires = days ? ';expires=' + date.toGMTString() : '';
var c = encodeURIComponent(name) + '=' +
encodeURIComponent(value) +
expires +
';path=/' +
(domain ? (';domain=' + domain) : '') +
(secure ? (';secure') : '');
global.document.cookie = c;
}
/**
* Obtain the value of a cookie.
*
* @param {String} name The cookie name.
* @return {String} The cookie value or null if no such cookie.
*/
function readCookie (name) {
var nameEQ = encodeURIComponent(name) + '=';
var ca = global.document.cookie.split(';');
var i;
for (i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) === ' ') {
c = c.substring(1, c.length);
}
if (c.indexOf(nameEQ) === 0) {
return decodeURIComponent(c.substring(nameEQ.length, c.length));
}
}
return null;
}
/**
* Remove a cookie.
*
* @param {String} name The cookie name.
*/
function removeCookie (name, domain) {
delete store[name];
if (domain) {
createCookie(name, null, -1, domain);
}
else {
createCookie(name, '', -1);
}
}
module.exports = {
create: function (name, value, days, domain, secure) {
store[name] = value;
var consentPresent = cookieConsent.getConsent(name);
if (consentPresent) {
createCookie(name, value, days, domain, secure);
}
cookieConsent.subscribe(name,'add',function (consent) {
if (consent) {
createCookie(name,value,days,domain,secure);
}
else {
removeCookie(name,domain)
}
})
cookieConsent.subscribe(name, 'enable', function () {
createCookie(name, value, days, domain, secure);
});
cookieConsent.subscribe(name, 'disable', function () {
removeCookie(name, domain);
});
},
read: readCookie,
remove: removeCookie
};