forked from pamelafox/lscache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlscache.js
175 lines (160 loc) · 5.81 KB
/
lscache.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
/**
* lscache library
* Copyright (c) 2011, Pamela Fox
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Creates a namespace for the lscache functions.
*/
var lscache = function() {
// Prefixes the key name on the expiration items in localStorage
var CACHESUFFIX = '-cacheexpiration';
// Determines if localStorage is supported in the browser;
// result is cached for better performance instead of being run each time.
// Feature detection is based on how Modernizr does it;
// it's not straightforward due to FF4 issues.
var supportsStorage = function () {
try {
return !!localStorage.getItem;
} catch (e) {
return false;
}
}();
// Determines if native JSON (de-)serialization is supported in the browser.
var supportsJSON = (window.JSON != null);
/**
* Returns the full string for the localStorage expiration item.
* @param {String} key
* @return {string}
*/
function expirationKey(key) {
return key + CACHESUFFIX;
}
/**
* Returns the number of minutes since the epoch.
* @return {number}
*/
function currentTime() {
return Math.floor((new Date().getTime())/60000);
}
return {
/**
* Stores the value in localStorage. Expires after specified number of minutes.
* @param {string} key
* @param {Object|string} value
* @param {number} time
*/
set: function(key, value, time) {
if (!supportsStorage) return;
// If we don't get a string value, try to stringify
// In future, localStorage may properly support storing non-strings
// and this can be removed.
if (typeof value != 'string') {
if (!supportsJSON) return;
try {
value = JSON.stringify(value);
} catch (e) {
// Sometimes we can't stringify due to circular refs
// in complex objects, so we won't bother storing then.
return;
}
}
try {
localStorage.setItem(key, value);
} catch (e) {
if (e.name === 'QUOTA_EXCEEDED_ERR' || e.name == 'NS_ERROR_DOM_QUOTA_REACHED') {
// If we exceeded the quota, then we will sort
// by the expire time, and then remove the N oldest
var storedKey, storedKeys = [];
for (var i = 0; i < localStorage.length; i++) {
storedKey = localStorage.key(i);
if (storedKey.indexOf(CACHESUFFIX) > -1) {
var mainKey = storedKey.split(CACHESUFFIX)[0];
storedKeys.push({key: mainKey, expiration: parseInt(localStorage[storedKey], 10)});
}
}
storedKeys.sort(function(a, b) { return (a.expiration-b.expiration); });
for (var i = 0, len = Math.min(30, storedKeys.length); i < len; i++) {
localStorage.removeItem(storedKeys[i].key);
localStorage.removeItem(expirationKey(storedKeys[i].key));
}
// TODO: This could still error if the items we removed were small and this is large
localStorage.setItem(key, value);
} else {
// If it was some other error, just give up.
return;
}
}
// If a time is specified, store expiration info in localStorage
if (time) {
localStorage.setItem(expirationKey(key), currentTime() + time);
} else {
// In case they set a time earlier, remove that info from localStorage.
localStorage.removeItem(expirationKey(key));
}
},
/**
* Retrieves specified value from localStorage, if not expired.
* @param {string} key
* @return {string|Object}
*/
get: function(key) {
if (!supportsStorage) return null;
/**
* Tries to de-serialize stored value if its an object, and returns the
* normal value otherwise.
* @param {String} key
*/
function parsedStorage(key) {
if (supportsJSON) {
try {
// We can't tell if its JSON or a string, so we try to parse
var value = JSON.parse(localStorage.getItem(key));
return value;
} catch(e) {
// If we can't parse, it's probably because it isn't an object
return localStorage.getItem(key);
}
} else {
return localStorage.getItem(key);
}
}
// Return the de-serialized item if not expired
if (localStorage.getItem(expirationKey(key))) {
var expirationTime = parseInt(localStorage.getItem(expirationKey(key)), 10);
// Check if we should actually kick item out of storage
if (currentTime() >= expirationTime) {
localStorage.removeItem(key);
localStorage.removeItem(expirationKey(key));
return null;
} else {
return parsedStorage(key);
}
} else if (localStorage.getItem(key)) {
return parsedStorage(key);
}
return null;
},
/**
* Removes a value from localStorage.
* Equivalent to 'delete' in memcache, but that's a keyword in JS.
* @param {string} key
*/
remove: function(key) {
if (!supportsStorage) return null;
localStorage.removeItem(key);
localStorage.removeItem(expirationKey(key));
}
};
}();