store.js
7.06 KB
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
/**
* @fileOverview store.js封装
* @author:Hbomb(zhouqq@yoho.cn)
* @date:2013-04-09
*/
define("lib/util/store", [], function(require, exports, module)
{
var json = require("lib/util/json");
var store = {}, win = window, doc = win.document, localStorageName = 'localStorage', namespace = '__storejs__', storage;
store.disabled = false;
store.set = function(key, value)
{
};
store.get = function(key)
{
};
store.remove = function(key)
{
};
store.clear = function()
{
};
store.transact = function(key, defaultVal, transactionFn)
{
var val = store.get(key);
if (transactionFn == null)
{
transactionFn = defaultVal;
defaultVal = null;
}
if (typeof val == 'undefined')
{
val = defaultVal || {};
}
transactionFn(val);
store.set(key, val);
};
store.getAll = function()
{
};
store.serialize = function(value)
{
return json.stringify(value);
};
store.deserialize = function(value)
{
if (typeof value != 'string')
{
return undefined;
}
try
{
return json.parse(value);
}
catch (e)
{
return value || undefined;
}
};
// Functions to encapsulate questionable FireFox 3.6.13 behavior
// when about.config::dom.storage.enabled === false
// See https://github.com/marcuswestin/store.js/issues#issue/13
function isLocalStorageNameSupported()
{
try
{
return (localStorageName in win && win[localStorageName]);
}
catch (err)
{
return false;
}
}
if (isLocalStorageNameSupported())
{
storage = win[localStorageName];
store.set = function(key, val)
{
if (val === undefined)
{
return store.remove(key);
}
storage.setItem(key, store.serialize(val));
return val;
};
store.get = function(key)
{
return store.deserialize(storage.getItem(key));
};
store.remove = function(key)
{
storage.removeItem(key);
};
store.clear = function()
{
storage.clear();
};
store.getAll = function()
{
var ret = {};
for ( var i = 0; i < storage.length; ++i)
{
var key = storage.key(i);
ret[key] = store.get(key);
}
return ret;
};
}
else if (doc.documentElement.addBehavior)
{
var storageOwner, storageContainer;
// Since #userData storage applies only to specific paths, we need to
// somehow link our data to a specific path. We choose /favicon.ico
// as a pretty safe option, since all browsers already make a request to
// this URL anyway and being a 404 will not hurt us here. We wrap an
// iframe pointing to the favicon in an ActiveXObject(htmlfile) object
// (see: http://msdn.microsoft.com/en-us/library/aa752574(v=VS.85).aspx)
// since the iframe access rules appear to allow direct access and
// manipulation of the document element, even for a 404 page. This
// document can be used instead of the current document (which would
// have been limited to the current path) to perform #userData storage.
try
{
storageContainer = new ActiveXObject('htmlfile');
storageContainer.open();
storageContainer.write('<s' + 'cript>document.w=window</s'
+ 'cript><iframe src="/favicon.ico"></frame>');
storageContainer.close();
storageOwner = storageContainer.w.frames[0].document;
storage = storageOwner.createElement('div');
}
catch (e)
{
// somehow ActiveXObject instantiation failed (perhaps some special
// security settings or otherwse), fall back to per-path storage
storage = doc.createElement('div');
storageOwner = doc.body;
}
function withIEStorage(storeFunction)
{
return function()
{
var args = Array.prototype.slice.call(arguments, 0);
args.unshift(storage);
// See
// http://msdn.microsoft.com/en-us/library/ms531081(v=VS.85).aspx
// and
// http://msdn.microsoft.com/en-us/library/ms531424(v=VS.85).aspx
storageOwner.appendChild(storage);
storage.addBehavior('#default#userData');
storage.load(localStorageName);
var result = storeFunction.apply(store, args);
storageOwner.removeChild(storage);
return result;
};
};
// In IE7, keys may not contain special chars. See all of
// https://github.com/marcuswestin/store.js/issues/40
var forbiddenCharsRegex = new RegExp(
"[!\"#$%&'()*+,/\\\\:;<=>?@[\\]^`{|}~]", "g");
function ieKeyFix(key)
{
return key.replace(forbiddenCharsRegex, '___');
}
store.set = withIEStorage(function(storage, key, val)
{
key = ieKeyFix(key);
if (val === undefined)
{
return store.remove(key);
}
storage.setAttribute(key, store.serialize(val));
storage.save(localStorageName);
return val;
});
store.get = withIEStorage(function(storage, key)
{
key = ieKeyFix(key);
return store.deserialize(storage.getAttribute(key));
});
store.remove = withIEStorage(function(storage, key)
{
key = ieKeyFix(key);
storage.removeAttribute(key);
storage.save(localStorageName);
});
store.clear = withIEStorage(function(storage)
{
var attributes = storage.XMLDocument.documentElement.attributes;
storage.load(localStorageName);
for ( var i = 0, attr; attr = attributes[i]; i++)
{
storage.removeAttribute(attr.name);
}
storage.save(localStorageName);
});
store.getAll = withIEStorage(function(storage)
{
var attributes = storage.XMLDocument.documentElement.attributes;
var ret = {};
for ( var i = 0, attr; attr = attributes[i]; ++i)
{
var key = ieKeyFix(attr.name);
ret[attr.name] = store.deserialize(storage.getAttribute(key));
}
return ret;
});
};
try
{
store.set(namespace, namespace);
if (store.get(namespace) != namespace)
{
store.disabled = true;
}
store.remove(namespace);
}
catch (e)
{
store.disabled = true;
}
store.enabled = !store.disabled;
module.exports = store;
});