|
| 1 | +// Copyright (c) 2012 Florian H., https://github.com/js-coder https://github.com/js-coder/cookie.js |
| 2 | + |
| 3 | +!function (document, undefined) { |
| 4 | + |
| 5 | + var cookie = function () { |
| 6 | + return cookie.get.apply(cookie, arguments); |
| 7 | + }; |
| 8 | + |
| 9 | + var utils = cookie.utils = { |
| 10 | + |
| 11 | + // Is the given value an array? Use ES5 Array.isArray if it's available. |
| 12 | + isArray: Array.isArray || function (value) { |
| 13 | + return Object.prototype.toString.call(value) === '[object Array]'; |
| 14 | + }, |
| 15 | + |
| 16 | + // Is the given value a plain object / an object whose constructor is `Object`? |
| 17 | + isPlainObject: function (value) { |
| 18 | + return !!value && Object.prototype.toString.call(value) === '[object Object]'; |
| 19 | + }, |
| 20 | + |
| 21 | + // Convert an array-like object to an array – for example `arguments`. |
| 22 | + toArray: function (value) { |
| 23 | + return Array.prototype.slice.call(value); |
| 24 | + }, |
| 25 | + |
| 26 | + // Get the keys of an object. Use ES5 Object.keys if it's available. |
| 27 | + getKeys: Object.keys || function (obj) { |
| 28 | + var keys = [], |
| 29 | + key = ''; |
| 30 | + for (key in obj) { |
| 31 | + if (obj.hasOwnProperty(key)) keys.push(key); |
| 32 | + } |
| 33 | + return keys; |
| 34 | + }, |
| 35 | + |
| 36 | + // Unlike JavaScript's built-in escape functions, this method |
| 37 | + // only escapes characters that are not allowed in cookies. |
| 38 | + escape: function (value) { |
| 39 | + return String(value).replace(/[,;"\\=\s%]/g, function (character) { |
| 40 | + return encodeURIComponent(character); |
| 41 | + }); |
| 42 | + }, |
| 43 | + |
| 44 | + // Return fallback if the value is not defined, otherwise return value. |
| 45 | + retrieve: function (value, fallback) { |
| 46 | + return value == null ? fallback : value; |
| 47 | + } |
| 48 | + |
| 49 | + }; |
| 50 | + |
| 51 | + cookie.defaults = {}; |
| 52 | + |
| 53 | + cookie.expiresMultiplier = 60 * 60 * 24; |
| 54 | + |
| 55 | + cookie.set = function (key, value, options) { |
| 56 | + |
| 57 | + if (utils.isPlainObject(key)) { // Then `key` contains an object with keys and values for cookies, `value` contains the options object. |
| 58 | + |
| 59 | + |
| 60 | + for (var k in key) { // TODO: `k` really sucks as a variable name, but I didn't come up with a better one yet. |
| 61 | + if (key.hasOwnProperty(k)) this.set(k, key[k], value); |
| 62 | + } |
| 63 | + |
| 64 | + } else { |
| 65 | + |
| 66 | + options = utils.isPlainObject(options) ? options : { expires: options }; |
| 67 | + |
| 68 | + var expires = options.expires !== undefined ? options.expires : (this.defaults.expires || ''), // Empty string for session cookies. |
| 69 | + expiresType = typeof(expires); |
| 70 | + |
| 71 | + if (expiresType === 'string' && expires !== '') expires = new Date(expires); |
| 72 | + else if (expiresType === 'number') expires = new Date(+new Date + 1000 * this.expiresMultiplier * expires); // This is needed because IE does not support the `max-age` cookie attribute. |
| 73 | + |
| 74 | + if (expires !== '' && 'toGMTString' in expires) expires = ';expires=' + expires.toGMTString(); |
| 75 | + |
| 76 | + var path = options.path || this.defaults.path; // TODO: Too much code for a simple feature. |
| 77 | + path = path ? ';path=' + path : ''; |
| 78 | + |
| 79 | + var domain = options.domain || this.defaults.domain; |
| 80 | + domain = domain ? ';domain=' + domain : ''; |
| 81 | + |
| 82 | + var secure = options.secure || this.defaults.secure ? ';secure' : ''; |
| 83 | + |
| 84 | + document.cookie = utils.escape(key) + '=' + utils.escape(value) + expires + path + domain + secure; |
| 85 | + |
| 86 | + } |
| 87 | + |
| 88 | + return this; // Return the `cookie` object to make chaining possible. |
| 89 | + |
| 90 | + }; |
| 91 | + |
| 92 | + // TODO: This is commented out, because I didn't come up with a better method name yet. Any ideas? |
| 93 | + // cookie.setIfItDoesNotExist = function (key, value, options) { |
| 94 | + // if (this.get(key) === undefined) this.set.call(this, arguments); |
| 95 | + // }, |
| 96 | + |
| 97 | + cookie.remove = function (keys) { |
| 98 | + |
| 99 | + keys = utils.isArray(keys) ? keys : utils.toArray(arguments); |
| 100 | + |
| 101 | + for (var i = 0, l = keys.length; i < l; i++) { |
| 102 | + this.set(keys[i], '', -1); |
| 103 | + } |
| 104 | + |
| 105 | + return this; // Return the `cookie` object to make chaining possible. |
| 106 | + }; |
| 107 | + |
| 108 | + cookie.empty = function () { |
| 109 | + |
| 110 | + return this.remove(utils.getKeys(this.all())); |
| 111 | + |
| 112 | + }; |
| 113 | + |
| 114 | + cookie.get = function (keys, fallback) { |
| 115 | + |
| 116 | + fallback = fallback || undefined; |
| 117 | + var cookies = this.all(); |
| 118 | + |
| 119 | + if (utils.isArray(keys)) { |
| 120 | + |
| 121 | + var result = {}; |
| 122 | + |
| 123 | + for (var i = 0, l = keys.length; i < l; i++) { |
| 124 | + var value = keys[i]; |
| 125 | + result[value] = utils.retrieve(cookies[value], fallback); |
| 126 | + } |
| 127 | + |
| 128 | + return result; |
| 129 | + |
| 130 | + } else return utils.retrieve(cookies[keys], fallback); |
| 131 | + |
| 132 | + }; |
| 133 | + |
| 134 | + cookie.all = function () { |
| 135 | + |
| 136 | + if (document.cookie === '') return {}; |
| 137 | + |
| 138 | + var cookies = document.cookie.split('; '), |
| 139 | + result = {}; |
| 140 | + |
| 141 | + for (var i = 0, l = cookies.length; i < l; i++) { |
| 142 | + var item = cookies[i].split('='); |
| 143 | + result[decodeURIComponent(item[0])] = decodeURIComponent(item[1]); |
| 144 | + } |
| 145 | + |
| 146 | + return result; |
| 147 | + |
| 148 | + }; |
| 149 | + |
| 150 | + cookie.enabled = function () { |
| 151 | + |
| 152 | + if (navigator.cookieEnabled) return true; |
| 153 | + |
| 154 | + var ret = cookie.set('_', '_').get('_') === '_'; |
| 155 | + cookie.remove('_'); |
| 156 | + return ret; |
| 157 | + |
| 158 | + }; |
| 159 | + |
| 160 | + // If an AMD loader is present use AMD. |
| 161 | + // If a CommonJS loader is present use CommonJS. |
| 162 | + // Otherwise assign the `cookie` object to the global scope. |
| 163 | + |
| 164 | + if (typeof define === 'function' && define.amd) { |
| 165 | + define(function () { |
| 166 | + return cookie; |
| 167 | + }); |
| 168 | + } else if (typeof exports !== 'undefined') { |
| 169 | + exports.cookie = cookie; |
| 170 | + } else window.cookie = cookie; |
| 171 | + |
| 172 | +}(document); |
0 commit comments