forked from studio24/cookie-message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie-message.js
61 lines (56 loc) · 1.72 KB
/
cookie-message.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
(function() {
/**
* Set cookie
*
* @param string name
* @param string value
* @param int days
* @param string path
* @see http://www.quirksmode.org/js/cookies.html
*/
function createCookie(name,value,days,path) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path="+path;
}
/**
* Read cookie
* @param string name
* @returns {*}
* @see http://www.quirksmode.org/js/cookies.html
*/
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var 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 c.substring(nameEQ.length,c.length);
}
return null;
}
var cookieMessage = document.getElementById('cookie-message');
if (cookieMessage == null) {
return;
}
var cookie = readCookie('seen-cookie-message');
if (cookie != null && cookie == 'yes') {
cookieMessage.style.display = 'none';
} else {
cookieMessage.style.display = 'block';
}
// Set/update cookie
var cookieExpiry = cookieMessage.getAttribute('data-cookie-expiry');
if (cookieExpiry == null) {
cookieExpiry = 30;
}
var cookiePath = cookieMessage.getAttribute('data-cookie-path');
if (cookiePath == null) {
cookiePath = "/";
}
createCookie('seen-cookie-message','yes',cookieExpiry,cookiePath);
})();