-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCookie.js
580 lines (505 loc) · 19.4 KB
/
Cookie.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/*!
* Cookie.js, v1.6.0
*
* A tiny (1.24 KB gzipped), stand-alone JavaScript utility for
* managing cookies in the browser.
*
* https://github.com/jonlabelle/cookie-js
*
* Copyright (c) 2012-2020 Jon LaBelle
* Licensed under MIT (http://creativecommons.org/licenses/MIT/)
*/
(function(global, factory) {
"use strict";
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = factory();
} else {
typeof define === "function" && define.amd
? define(factory)
: (global.Cookie = factory());
}
})(this, function() {
"use strict";
var encode = encodeURIComponent,
decode = decodeURIComponent;
/**
* Determines if the value's type is a number.
*
* @param {*} val
*
* @return {Boolean}
*/
function isNumeric(val) {
return !isNaN(parseFloat(val)) && isFinite(val);
}
/**
* Merges two objects.
*
* @param {Object} objOne
* @param {Object} objTwo
*
* @return {Object}
*/
function mergeObjects(objOne, objTwo) {
if (objOne instanceof Array) {
return objOne.concat(objTwo);
}
var merged = {},
property;
for (property in objOne) {
if (objOne.hasOwnProperty(property)) {
merged[property] = objOne[property];
}
}
for (property in objTwo) {
if (objTwo.hasOwnProperty(property)) {
merged[property] = objTwo[property];
}
}
return merged;
}
/**
* Iterates over an object's properties and applies a callback
* function.
*
* @param {Object} obj The object to iterate over.
* @param {function} callback The callback function to
*/
function objectForEach(obj, callback) {
for (var property in obj) {
if (obj.hasOwnProperty(property)) {
callback(property, obj[property]);
}
}
}
return {
/**
* Creates a cookie string that can be assigned into document.cookie.
*
* @param {String} name The name of the cookie.
* @param {String} value The value of the cookie.
* @param {Boolean} encodeValue True to encode the value, false to leave as-is.
* @param {Object} options (Optional) Options for the cookie.
*
* @return {String} The formatted cookie string.
*/
createCookieString: function (name, value, encodeValue, options) {
options = options || {};
var text = encode(name) + "=" + (encodeValue ? encode(value) : value),
expires = options.expires,
path = options.path || "/",
domain = options.domain,
sameSite = options.sameSite || "Lax";
if (typeof options === "object") {
// expire date
if (expires instanceof Date) {
text += "; expires=" + expires.toUTCString();
} else if (isNumeric(expires)) {
// expire days (int)
var when = new Date();
when.setDate(when.getDate() + expires);
text += "; expires=" + when.toUTCString();
}
// path
if (typeof path === "string" && path !== "") {
text += "; path=" + path;
}
// domain
if (typeof domain === "string" && domain !== "") {
text += "; domain=" + domain;
}
// secure
if (options.secure === true) {
text += "; secure";
}
// SameSite
if (typeof sameSite === "string" && sameSite !== "") {
text += "; SameSite=" + sameSite;
}
}
return text;
},
/**
* Creates a string from a hash/object.
*
* @param {Object} hash An object of key-value pairs to create a string
* for.
*
* @return {String} A string suitable for use as a cookie value.
*/
createCookieHashString: function (hash) {
if (typeof hash !== "object") {
return "";
}
var text = [];
objectForEach(hash, function (key, value) {
if (typeof value !== "function" && typeof value !== "undefined") {
text.push(encode(key) + "=" + encode(String(value)));
}
});
return text.join("&");
},
/**
* Parses a cookie hash string into an object.
*
* @param {String} text The cookie hash string to parse (format:
* n1=v1&n2=v2).
*
* @return {Object} An object containing entries for each cookie value.
*/
parseCookieHash: function (text) {
var hashParts = text.split("&"),
hashPart = null,
hash = {};
if (text.length) {
for (var i = 0, len = hashParts.length; i < len; i++) {
hashPart = hashParts[i].split("=");
hash[decode(hashPart[0])] = decode(hashPart[1]);
}
}
return hash;
},
/**
* Parses a cookie string into an object representing all accessible
* cookies.
*
* @param {String} text The cookie string to parse.
* @param {Boolean} shouldDecode (Optional) Indicates if the cookie
* values should be decoded or not. Default is true.
* @param {Object} options (Optional) Contains settings for loading the
* cookie.
*
* @return {Object}
*/
parseCookieString: function (text, shouldDecode, options) {
var cookies = {};
if (typeof text === "string" && text.length > 0) {
var decodeValue = (shouldDecode === false ? function (s) {
return s;
} : decode),
cookieParts = text.split(/;\s/g),
cookieName = null,
cookieValue = null,
cookieNameValue = null;
for (var i = 0, len = cookieParts.length; i < len; i++) {
cookieNameValue = cookieParts[i].match(/([^=]+)=/i);
if (cookieNameValue instanceof Array) {
try {
cookieName = decode(cookieNameValue[1]);
cookieValue = decodeValue(cookieParts[i].substring(
cookieNameValue[1].length + 1));
} catch (ex) {
// ignore... encoding is wrong.
}
} else {
// means the cookie does not have an "=", so treat it as a
// boolean flag
cookieName = decode(cookieParts[i]);
cookieValue = "";
}
// don't overwrite an already loaded cookie if set by option
if (typeof options !== "undefined" && options.reverseCookieLoading) {
if (typeof cookies[cookieName] === "undefined") {
cookies[cookieName] = cookieValue;
}
} else {
cookies[cookieName] = cookieValue;
}
}
}
return cookies;
},
/**
* Determines if the cookie with the given name exists. This is useful
* for Boolean cookies (those that do not follow the name=value
* convention).
*
* @param {String} name The name of the cookie to check.
*
* @return {Boolean} True if the cookie exists, false if not.
*/
exists: function (name) {
if (typeof name !== "string" || name === "") {
return false;
}
var cookies = this.parseCookieString(document.cookie, true);
return cookies.hasOwnProperty(name);
},
/**
* Returns the cookie value for the given name.
*
* @param {String} name The name of the cookie to retrieve.
* @param {Function|Object} options (Optional) An object containing one
* or more cookie options: raw (true/false), reverseCookieLoading
* (true/false) and converter (a function). The converter function
* is run on the value before returning it. The function is not
* used if the cookie doesn't exist. The function can be passed
* instead of the options object for backwards compatibility. When
* raw is set to true, the cookie value is not URI decoded.
*
* @return {*} If no converter is specified, returns a string or null
* if the cookie doesn't exist. If the converter is specified,
* returns the value returned from the converter or null if the
* cookie doesn't exist.
*/
get: function (name, options) {
var cookies,
cookie,
converter;
// if options is a function, then it's the converter
if (typeof options === "function") {
converter = options;
options = {};
} else if (typeof options === "object") {
converter = options.converter;
} else {
options = {};
}
cookies = this.parseCookieString(document.cookie, !options.raw, options);
cookie = cookies[name];
// should return null, not undefined if the cookie doesn't exist
if (typeof cookie === "undefined") {
return null;
}
if (typeof converter === "function") {
return converter(cookie);
}
return cookie;
},
/**
* Returns the value of a sub-cookie.
*
* @param {String} name The name of the cookie to retrieve.
* @param {String} subName The name of the sub-cookie to retrieve.
* @param {Function} converter (Optional) A function to run on the value
* before returning it. The function is not used if the cookie
* doesn't exist.
* @param {Object} options (Optional) Containing one or more settings
* for cookie parsing.
*
* @return {*} If the cookie doesn't exist, null is returned. If the
* sub-cookie doesn't exist, null if also returned. If no converter
* is specified and the sub-cookie exists, a string is returned. If
* a converter is specified and the sub-cookie exists, the value
* returned from the converter is returned.
*
* @return {*}
*/
getSub: function (name, subName, converter, options) {
var hash = this.getSubs(name, options);
if (hash === null) {
return null;
}
if (typeof subName !== "string" || subName === "") {
return null;
}
if (typeof hash[subName] === "undefined") {
return null;
}
if (typeof converter === "function") {
return converter(hash[subName]);
}
return hash[subName];
},
/**
* Returns an object containing name-value pairs stored in the cookie
* with the given name.
*
* @param {String} name The name of the cookie to retrieve.
* @param {Object} options (Optional) Containing one or more settings
* for cookie parsing.
* @return {Object} An object of name-value pairs if the cookie with the
* given name exists, null if it does not.
*
* @return {Object}
*/
getSubs: function (name, options) {
var cookies = this.parseCookieString(document.cookie, false, options);
if (typeof cookies[name] === "string") {
return this.parseCookieHash(cookies[name]);
}
return null;
},
/**
* Removes a cookie from the machine by setting its expiration date to
* sometime in the past.
*
* @param {String} name The name of the cookie to remove.
* @param {Object} options (Optional) An object containing one or more
* cookie options: path (a string), domain (a string), and secure
* (true/false). The expires option will be overwritten by the
* method.
*
* @return {String} The created cookie string.
*
* @return {String} the created cookie string.
*/
remove: function (name, options) {
if (typeof name !== "string" || name === "") {
return "";
}
options = mergeObjects(options || {}, {
expires: new Date(0)
});
return this.set(name, "", options);
},
/**
* Removes a sub cookie with a given name.
*
* @param {String} name The name of the cookie in which the sub-cookie
* exists.
* @param {String} subName The name of the sub-cookie to remove.
* @param {Object} options (Optional) An object containing one or more
* cookie options: path (a string), domain (a string), expires (a
* Date object), removeIfEmpty (true/false), and secure
* (true/false). This must be the same settings as the original
* sub-cookie.
*
* @return {String} The created cookie string.
*
* @return {String} the created cookie string.
*/
removeSub: function (name, subName, options) {
if (typeof name !== "string" || name === "") {
return "";
}
if (typeof subName !== "string" || subName === "") {
return "";
}
options = options || {};
// get all sub-cookies for this cookie
var subs = this.getSubs(name);
// delete the indicated sub-cookie
if (typeof subs === "object" && subs.hasOwnProperty(subName)) {
delete subs[subName];
if (!options.removeIfEmpty) {
return this.setSubs(name, subs, options); // reset the cookie
} else {
// reset the cookie if there are sub-cookies left, else remove
for (var key in subs) {
if (subs.hasOwnProperty(key) && typeof subs[key] !== "function" &&
typeof subs[key] !== "undefined") {
return this.setSubs(name, subs, options);
}
}
return this.remove(name, options);
}
} else {
return "";
}
},
/**
* Sets a cookie with a given name and value.
*
* @param {String} name The name of the cookie to set.
* @param {*} value The value to set for the cookie.
* @param {Object} options (Optional) An object containing one or more
* cookie options: path (a string), domain (a string), expires (a
* Date object), secure (true/false), and raw (true/false). Setting
* raw to true indicates that the cookie should not be URI encoded
* before being set.
*
* @return {String} The created cookie string.
*/
set: function (name, value, options) {
if (typeof name !== "string" || name === "") {
return null;
}
if (typeof value === "undefined") {
return null;
}
options = options || {};
var text = this.createCookieString(name, value, !options.raw, options);
document.cookie = text;
return text;
},
/**
* Sets a sub cookie with a given name to a particular value.
*
* @param {String} name The name of the cookie to set.
* @param {String} subName The name of the sub-cookie to set.
* @param {*} value The value to set.
* @param {Object} options (Optional) An object containing one or more
* cookie options: path (a string), domain (a string), expires (a
* Date object), and secure (true/false).
*
* @return {String} The created cookie string.
*/
setSub: function (name, subName, value, options) {
if (typeof name !== "string" || name === "") {
return "";
}
if (typeof subName !== "string" || subName === "") {
return "";
}
if (typeof value === "undefined") {
return "";
}
var hash = this.getSubs(name);
if (!hash) {
hash = {};
}
hash[subName] = value;
return this.setSubs(name, hash, options);
},
/**
* Sets a cookie with a given name to contain a hash of name-value
* pairs.
*
* @param {String} name The name of the cookie to set.
* @param {Object} value An object containing name-value pairs.
* @param {Object} options (Optional) An object containing one or more
* cookie options: path (a string), domain (a string), expires (a
* Date object), and secure (true/false).
*
* @return {String} The created cookie string.
*/
setSubs: function (name, value, options) {
if (typeof name !== "string" || name === "") {
return "";
}
if (typeof value !== "object") {
return "";
}
var text = this.createCookieString(
name,
this.createCookieHashString(value),
false,
options
);
document.cookie = text;
return text;
},
/**
* Checks whether or not Cookies on the client browser.
*
* @return {Boolean} True if Cookies are enabled, otherwise False.
*/
enabled: function () {
if (navigator.cookieEnabled) {
return true;
}
var key = "_ismjclbf",
val = "ok",
cookieEnabled = false;
this.set(key, val);
if (this.get(key) === val) {
cookieEnabled = true;
this.remove(key);
}
return cookieEnabled;
},
/**
* Clears all browser cookies.
*/
clear: function () {
var cookies = document.cookie.split(";");
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var position = cookie.indexOf("=");
var name = position > -1 ? cookie.substr(0, position) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
}
}
};
});