blob: e9b2c9d329b0e54e42be7c6978db7dea6ea9ae54 (
plain) (
blame)
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
|
( function () {
'use strict';
// Catch exceptions to avoid fatal in Chrome's "Block data storage" mode
// which throws when accessing the localStorage property itself, as opposed
// to the standard behaviour of throwing on getItem/setItem. (T148998)
var
localStorage = ( function () {
try {
return window.localStorage;
} catch ( e ) {}
}() ),
sessionStorage = ( function () {
try {
return window.sessionStorage;
} catch ( e ) {}
}() );
/**
* A wrapper for an HTML5 Storage interface (`localStorage` or `sessionStorage`)
* that is safe to call on all browsers.
*
* @class mw.SafeStorage
* @private
* @param {Object|undefined} store The Storage instance to wrap around
*/
function SafeStorage( store ) {
this.store = store;
}
/**
* Retrieve value from device storage.
*
* @param {string} key Key of item to retrieve
* @return {string|null|boolean} String value, null if no value exists, or false
* if localStorage is not available.
*/
SafeStorage.prototype.get = function ( key ) {
try {
return this.store.getItem( key );
} catch ( e ) {}
return false;
};
/**
* Set a value in device storage.
*
* @param {string} key Key name to store under
* @param {string} value Value to be stored
* @return {boolean} Whether the save succeeded or not
*/
SafeStorage.prototype.set = function ( key, value ) {
try {
this.store.setItem( key, value );
return true;
} catch ( e ) {}
return false;
};
/**
* Remove a value from device storage.
*
* @param {string} key Key of item to remove
* @return {boolean} Whether the save succeeded or not
*/
SafeStorage.prototype.remove = function ( key ) {
try {
this.store.removeItem( key );
return true;
} catch ( e ) {}
return false;
};
/**
* A wrapper for the HTML5 `localStorage` interface
* that is safe to call on all browsers.
*
* @class
* @singleton
* @extends mw.SafeStorage
*/
mw.storage = new SafeStorage( localStorage );
/**
* A wrapper for the HTML5 `sessionStorage` interface
* that is safe to call on all browsers.
*
* @class
* @singleton
* @extends mw.SafeStorage
*/
mw.storage.session = new SafeStorage( sessionStorage );
}() );
|