-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookie-object.js
248 lines (147 loc) · 4.37 KB
/
cookie-object.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
'use strict';
/**
* A factory function for storing key:value object data in a cookie
*
* @param string cookieName Name of the cookie
* @return object cookieName Name of the cookie
*/
function cookieObject(cookieName, cookieDays = false, cookiePath = '/') {
if ( typeof cookieName !== 'string' ) {
throw new Error('cookieName has to be a type of string.');
}
return {
/**
* Set an item or whole object in the cookieName
*
* @param string|object itemName
* @param mixed itemValue
* @return mixed
*/
set(itemName = null, itemValue = null) {
if ( typeof itemName === 'object' ) {
try {
var cookieObjectStr = JSON.stringify(itemName);
var cookieObjectStrLength = cookieObjectStr.length;
if ( cookieObjectStrLength >= 4000 ) {
throw new Error('Reaching cookie size limit');
}
this.setCookieValue(cookieObjectStr);
} catch(error) {
throw new Error(error);
}
return this.get();
} else if ( typeof itemName === 'string' || typeof itemName === 'number' ) {
return this.setItem(itemName, itemValue);
}
},
/**
* Set an item in the "cookieName" cookie object
*
* @param string itemName
* @param mixed itemValue
* @return mixed
*/
setItem(itemName, itemValue) {
if ( typeof itemName === 'string' || typeof itemName === 'number' ) {
var cookieObject = this.get();
cookieObject[itemName] = itemValue;
this.set(cookieObject);
return this.getItem(itemName);
}
return null;
},
/**
* Get an item or all data from the "cookieName" cookie object
*
* @param string itemName
* @return mixed
*/
get(itemName = null) {
var cookieObject = this.getCookieValue(cookieName);
if ( itemName === null ) {
if ( !cookieObject || typeof cookieObject === 'undefined' ) {
return {};
}
try {
return JSON.parse(cookieObject);
} catch (e) {
return {};
}
} else if ( typeof itemName === 'string' || typeof itemName === 'number' ) {
return this.getItem(itemName);
}
return null;
},
/**
* Get an item from the "cookieName" cookie object
*
* @param string itemName
* @return mixed
*/
getItem(itemName) {
if ( typeof itemName === 'string' || typeof itemName === 'number' ) {
var cookieObject = this.get();
return ( typeof cookieObject[itemName] === 'undefined' ? null : cookieObject[itemName] );
} else {
return null;
}
},
/**
* Remove an item from the "cookieName" cookie object
*
* @param string itemName
* @return mixed
*/
removeItem(itemName) {
if ( typeof itemName === 'string' || typeof itemName === 'number' ) {
var cookieObject = this.get();
if ( typeof cookieObject[itemName] !== 'undefined' ) {
delete cookieObject[itemName];
this.set(cookieObject);
return true;
}
return null;
} else {
return null;
}
},
/**
* Reset the "cookieName" cookie object or an empty object
*
* @return mixed
*/
reset(defaultData = {}) {
this.set(defaultData);
return this.get();
},
setCookieValue(cookieValue) {
var expires;
if (cookieDays) {
var date = new Date();
date.setTime(date.getTime() + (cookieDays * 24 * 60 * 60 * 1000));
expires = '; expires=' + date.toUTCString();
} else { // session only cookie
expires = '';
}
document.cookie = cookieName + '=' + cookieValue + expires + '; path=' + cookiePath;
},
getCookieValue() {
if (document.cookie.length > 0) {
var start, end;
start = document.cookie.indexOf(cookieName + '=');
if (start != -1) {
start = start + cookieName.length + 1;
var end = document.cookie.indexOf(';', start);
if (end == -1) {
end = document.cookie.length;
}
return unescape(document.cookie.substring(start, end));
}
}
return null;
},
removeCookie() {
this.set(cookieName, '', -1, cookiePath);
},
}
}