forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookie.js
More file actions
117 lines (116 loc) · 4.99 KB
/
cookie.js
File metadata and controls
117 lines (116 loc) · 4.99 KB
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
steal('jquery', function($) {
/**
* @function jQuery.cookie jQuery.cookie
* @parent jquerypp
* @plugin jquerypp/dom/cookie
* @author Klaus Hartl/klaus.hartl@stilbuero.de
*
* @signature `jQuery.cookie(name, [value, ] [options])`
* @param {String} [name] The name of the cookie.
* @param {String} [value] The value of the cookie.
* @param {{}} [options] An object literal containing key/value pairs to provide optional cookie attributes. Values can be:
* @option {Integer|Date} expires Either an integer specifying the expiration date from now on in days or a Date object. If a negative value is specified (e.g. a date in the past), the cookie will be deleted. If set to null or omitted, the cookie will be a session cookie and will not be retained when the the browser exits.
* @option {String} domain The domain name
* @option {String} path The value of the path atribute of the cookie (default: path of page that created the cookie).
* @option {Boolean} secure If true, the secure attribute of the cookie will be set and the cookie transmission will require a secure protocol (like HTTPS).
*
* @return {String} the value of the cookie or {undefined} when setting the cookie.
*
* @body
*
* `jQuery.cookie(name, [value], [options])` lets you create, read and remove cookies. It is the
* [jQuery cookie plugin](https://github.com/carhartl/jquery-cookie) written by [Klaus Hartl](http://www.dasstilbuero.de/)
* and dual licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php)
* and [GPL](http://www.gnu.org/licenses/gpl.html) licenses.
*
* ## Examples
*
* Set the value of a cookie.
*
* $.cookie('the_cookie', 'the_value');
*
* Create a cookie with all available options.
*
* $.cookie('the_cookie', 'the_value', {
* expires: 7,
* path: '/',
* domain: 'jquery.com',
* secure: true
* });
*
* Create a session cookie.
*
* $.cookie('the_cookie', 'the_value');
*
* Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
* used when the cookie was set.
*
* $.cookie('the_cookie', null);
*
* Get the value of a cookie.
*
* $.cookie('the_cookie');
*
*/
$.cookie = function(name, value, options) {
if (typeof value != 'undefined') {
// name and value given, set cookie
options = options ||
{};
if (value === null) {
value = '';
options.expires = -1;
}
// convert value to JSON string
if (typeof value == 'object' && JSON.stringify) {
value = JSON.stringify(value);
}
var expires = '';
// Set expiry
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
}
else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
}
// CAUTION: Needed to parenthesize options.path and options.domain
// in the following expressions, otherwise they evaluate to undefined
// in the packed version for some reason...
var path = options.path ? '; path=' + (options.path) : '';
var domain = options.domain ? '; domain=' + (options.domain) : '';
var secure = options.secure ? '; secure' : '';
// Set the cookie name=value;expires=;path=;domain=;secure-
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
}
else { // only name given, get cookie
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = $.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) == (name + '=')) {
// Get the cookie value
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
// Parse JSON from the cookie into an object
if (cookieValue && cookieValue.match(/^\s*\{/)) {
try {
cookieValue = JSON.parse(cookieValue);
}
catch (e) {
}
}
return cookieValue;
}
};
return $;
});