-
Notifications
You must be signed in to change notification settings - Fork 1
/
USTORE.js
394 lines (355 loc) · 12.4 KB
/
USTORE.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
/*******************************************************************************
*
* USTORE - a cross browser javascript based local & session storage solution
*
* Written by Sankho Mallik for HUGE inc, [email protected]
*
* browsers supported: IE6+, Firefox2+, Safari4+, Chrome4+ and Opera 10.5+
*
* *******
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.
* It is also available through the world-wide-web at this URL:
* http://hugeinc.com/license/********
*
* *****
* USAGE: USTORE is a simple self executing function resulting in a usable
* global javascript object. Before using any of it's functions to set
* or retrieve data, the init() function must be called.
*
* Note about session storage in IE - it only works if no other javascript
* is manipulating the value of window.name - this global persistent var
* is used to emulate session storage in IE's userData functionality
*
* Basic usage example:
* /*
* * USTORE.init(); //initialize databases
* * USTORE.setValue('key','value'); //sets key "key" = "value"
* * USTORE.getValue('key'); //returns the string "value"
* *
*
*
* ******* ******
* STORAGE LIMITS:
*
* 5 MB - Chrome 4+, FF2+, Opera 10.50, Safari 4+, iPhone Safari
* 10 MB - IE8 (wow!)
* 128 KB - IE6 + IE7 (not so wow!)
*
* ****** *******
* PUBLIC METHODS:
*
* USTORE.init()
* - figures out which storage system is supported, initializes IE userData as
* necessary
*
* USTORE.setValue(key,value)
* - saves a key = value pair in local storage
*
* USTORE.setSessionValue(key,value)
* - saves a key = value pair in session storage
*
* USTORE.getValue(key)
* - retrieves a key's value from local storage
*
* USTORE.getSessionValue(key)
* - retrieves a key's value from session storage
*
* USTORE.deleteValue(key)
* - delete's a key's value from local storage
*
* USTORE.deleteSessionValue(key)
* - delete's a key's value from session storage
*
* USTORE.clearLocalStorage()
* - clears everything from the local storage DB
*
* USTORE.clearSessionStorage()
* - clears everything from the session storage DB
*
* USTORE.clearDOMStorage()
* - clears everything from both session & local DBs
*
*******************************************************************************/
var USTORE = (function() {
//object variables
var localSupport, sessionSupport, userSupport, obj, objId, objDb, seshObj, seshObjId, seshDb;
//private functions
/**
* Wrapper object for all data storage functions
*
*/
var DB = {
/**
* Sets a key value pair into the local or session storage
* Main function to be used for all save action
*
* @param key This is the key
* @param value This is the value
* @param session If set to true, the key value pair is stored in the window session, not the browser session.
*/
setValue : function(key, value, session) {
if (localSupport) {
if (session && sessionSupport) {
sessionStorage.setItem(key, value);
} else {
localStorage.setItem(key, value);
}
} else if (userSupport) {
if (session) {
seshObj.setAttribute(key,value);
seshObj.save(seshDb);
} else {
obj.setAttribute(key, value);
obj.save(ieDb);
}
}
},
/**
* Gets a value from storage.
*
* @param key This is the key to search for
* @param session If set to true, searches in the window sesion as opposed to the browser.
* @return string
*/
getValue : function(key, session) {
var result = '';
if (localSupport) {
if (session && sessionSupport) {
result = sessionStorage.getItem(key);
} else {
result = localStorage.getItem(key);
}
} else if (userSupport) {
if (session) {
seshObj.load(seshDb);
result = seshObj.getAttribute(key);
} else {
obj.load(ieDb);
result = obj.getAttribute(key);
}
}
return result;
},
/**
* Deletes the value from storage.
*
* @param key This is the key to search for
* @param session If set to true, searches in the window sesion as opposed to the browser.
* @return string
*/
deleteValue : function(key, session) {
if (localSupport) {
this.setValue(key,null,session);
} else if (userSupport) {
if (session) {
seshObj.removeAttribute(key);
seshObj.save(seshDb);
} else {
obj.removeAttribute(key);
obj.save(ieDb);
}
}
},
/**
* Flushes all values from storage
*
* @param session If set to true, only flushes session values
*/
clearDB : function(session) {
if (localSupport) {
if (session) {
sessionStorage.clear();
} else {
localStorage.clear();
}
} else if (userSupport) {
IE.clearDB(session);
}
}
} // End var DB
/**
* Wrapper object for all IE functions
* 90% of the heavy lifting done here
*/
var IE = {
/**
* Detects Inernet explorer versions 5.5 --> 7
* used to test for userData functionality
*/
detectIE : function() {
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
if (ieversion>=5.5 && ieversion<=8) {
return true;
}
}
return false;
},
/**
* Sets up the databases on page load
* Used in the 'init' function
*
*/
init : function() {
//add meta tag
var meta = document.createElement('meta');
// set properties
meta.name = "save";
meta.content = "userdata";
document.getElementsByTagName('head').item(0).appendChild(meta);
var time = new Date().getTime();
//setup IE localStorage database
var newdiv = document.createElement('div');
objId = 'ie-db-' + time;
ieDb = 'userStorage';
newdiv.setAttribute('id',objId);
body.appendChild(newdiv);
obj = document.getElementById(objId);
obj.style.behavior = "url('#default#userData')";
obj.style.display = 'none';
//setup IE sessionStorage database
if (window.name === null || window.name === undefined || window.name === '') {
window.name = 'ie-sesh-db-' + time;
}
seshObjId = window.name;
seshDb = seshObjId;
newdiv = document.createElement('div');
newdiv.setAttribute('id', seshObjId);
obj.appendChild(newdiv);
seshObj = document.getElementById(seshObjId);
seshObj.style.behavior = "url('#default#userData')";
seshObj.style.display = 'none';
},
/**
* Iterates through all userData attributes and removes them
*
* Logic based on ThudJS article: http://thudjs.tumblr.com/post/419577524/localstorage-userdata
*
* @param session If true, clears the browser window's session storage
*/
clearDB : function(session) {
var time = new Date().getTime(),
newdiv = document.createElement('div'),
dbObj = session ? seshObj : obj,
dbName = session ? seshDb : ieDb,
doc = dbObj.xmlDocument,
attributes = doc.firstChild.attributes,
attr,
len = attributes.length;
while ( 0 <= --len ) {
attr = attributes[len];
dbObj.removeAttribute( attr.nodeName );
}
dbObj.save( dbName );
}
} //end var IE
//public functions
return {
/**
* Init function for the object; sets up all variables and dom elements
* Especially important for IE.
*/
init : function() {
if (typeof(window.localStorage) === 'object') {
localSupport = true;
//avoid a weird FF error with a little try catch
try {
if (typeof(window.sessionStorage) === 'object') {
sessionSupport = true;
}
} catch(err) {
sessionSupport = false;
}
} else if (IE.detectIE()) {
userSupport = true;
IE.init();
}
},
/**
* Sets a value into storage.
*
* @param key This is the key
* @param value This is the value
*/
setValue : function(key, value) {
DB.setValue(key,value,false);
},
/**
* Sets a value into session storage.
*
* @param key This is the key
* @param value This is the value
*/
setSessionValue : function(key, value) {
DB.setValue(key,value,true);
},
/**
* Gets a value from local storage.
*
* @param key This is the key to search for
* @return string
*/
getValue : function(key) {
return DB.getValue(key, false);
},
/**
* Gets a value from session storage.
*
* @param key This is the key
*/
getSessionValue : function(key) {
return DB.getValue(key, true);
},
/**
* Deletes the value from local storage.
*
* @param key This is the key to search for
* @return string
*/
deleteValue : function(key) {
DB.deleteValue(key, false);
},
/**
* Deletes a value from session storage.
*
* @param key This is the key
*/
deleteSessionValue : function(key) {
DB.deleteValue(key, true);
},
/**
* Clears the local storage database
*/
clearLocalStorage : function() {
DB.clearDB(false);
},
/**
* Clears the session storage database
*/
clearSessionStorage : function() {
DB.clearDB(true);
},
/**
* Clears both session & local storage databases
*/
clearDOMStorage : function() {
DB.clearDB(false); DB.clearDB(true);
}
}; //end return
/* TODO's
/*********************************************
* # **** - write a clear all values function *
# TODO - time constraints / expirations
# TODO - explore memory limit issues
# TODO - cookie fallbacks ?
# TODO - subdomain / domain issues
# TODO - examine sql
# TODO - look into performance problems w/ setting IE behavoir
# **** - convert to pure javascript independent of libraries
# **** - create wrapper functions for setting/getting/deleteing
session vars
*********************************************/
})();