113 lines
3.0 KiB
JavaScript
113 lines
3.0 KiB
JavaScript
//>>built
|
|
define(["dijit","dojo","dojox","dojo/require!dojox/storage/Provider,dojox/storage/manager,dojo/cookie"],function(_1,_2,_3){
|
|
_2.provide("dojox.storage.CookieStorageProvider");
|
|
_2.require("dojox.storage.Provider");
|
|
_2.require("dojox.storage.manager");
|
|
_2.require("dojo.cookie");
|
|
_2.declare("dojox.storage.CookieStorageProvider",[_3.storage.Provider],{store:null,cookieName:"dojoxStorageCookie",storageLife:730,initialize:function(){
|
|
this.store=_2.fromJson(_2.cookie(this.cookieName))||{};
|
|
this.initialized=true;
|
|
_3.storage.manager.loaded();
|
|
},isAvailable:function(){
|
|
return _2.cookie.isSupported();
|
|
},put:function(_4,_5,_6,_7){
|
|
this._assertIsValidKey(_4);
|
|
_7=_7||this.DEFAULT_NAMESPACE;
|
|
this._assertIsValidNamespace(_7);
|
|
fullKey=this.getFullKey(_4,_7);
|
|
this.store[fullKey]=_2.toJson(_5);
|
|
this._save();
|
|
var _8=_2.toJson(this.store)===_2.cookie(this.cookieName);
|
|
if(!_8){
|
|
this.remove(_4,_7);
|
|
}
|
|
if(_6){
|
|
_6(_8?this.SUCCESS:this.FAILED,_4,null,_7);
|
|
}
|
|
},get:function(_9,_a){
|
|
this._assertIsValidKey(_9);
|
|
_a=_a||this.DEFAULT_NAMESPACE;
|
|
this._assertIsValidNamespace(_a);
|
|
_9=this.getFullKey(_9,_a);
|
|
return this.store[_9]?_2.fromJson(this.store[_9]):null;
|
|
},getKeys:function(_b){
|
|
_b=_b||this.DEFAULT_NAMESPACE;
|
|
this._assertIsValidNamespace(_b);
|
|
_b="__"+_b+"_";
|
|
var _c=[];
|
|
for(var _d in this.store){
|
|
if(this._beginsWith(_d,_b)){
|
|
_d=_d.substring(_b.length);
|
|
_c.push(_d);
|
|
}
|
|
}
|
|
return _c;
|
|
},clear:function(_e){
|
|
_e=_e||this.DEFAULT_NAMESPACE;
|
|
this._assertIsValidNamespace(_e);
|
|
_e="__"+_e+"_";
|
|
for(var _f in this.store){
|
|
if(this._beginsWith(_f,_e)){
|
|
delete (this.store[_f]);
|
|
}
|
|
}
|
|
this._save();
|
|
},remove:function(key,_10){
|
|
_10=_10||this.DEFAULT_NAMESPACE;
|
|
this._assertIsValidNamespace(_10);
|
|
this._assertIsValidKey(key);
|
|
key=this.getFullKey(key,_10);
|
|
delete this.store[key];
|
|
this._save();
|
|
},getNamespaces:function(){
|
|
var _11=[this.DEFAULT_NAMESPACE];
|
|
var _12={};
|
|
_12[this.DEFAULT_NAMESPACE]=true;
|
|
var _13=/^__([^_]*)_/;
|
|
for(var _14 in this.store){
|
|
if(_13.test(_14)==true){
|
|
var _15=_14.match(_13)[1];
|
|
if(typeof _12[_15]=="undefined"){
|
|
_12[_15]=true;
|
|
_11.push(_15);
|
|
}
|
|
}
|
|
}
|
|
return _11;
|
|
},isPermanent:function(){
|
|
return true;
|
|
},getMaximumSize:function(){
|
|
return 4;
|
|
},hasSettingsUI:function(){
|
|
return false;
|
|
},isValidKey:function(_16){
|
|
if(_16===null||_16===undefined){
|
|
return false;
|
|
}
|
|
return /^[0-9A-Za-z_-]*$/.test(_16);
|
|
},isValidNamespace:function(_17){
|
|
if(_17===null||_17===undefined){
|
|
return false;
|
|
}
|
|
return /^[0-9A-Za-z-]*$/.test(_17);
|
|
},getFullKey:function(key,_18){
|
|
return "__"+_18+"_"+key;
|
|
},_save:function(){
|
|
_2.cookie(this.cookieName,_2.toJson(this.store),{expires:this.storageLife});
|
|
},_beginsWith:function(_19,_1a){
|
|
if(_1a.length>_19.length){
|
|
return false;
|
|
}
|
|
return _19.substring(0,_1a.length)===_1a;
|
|
},_assertIsValidNamespace:function(_1b){
|
|
if(this.isValidNamespace(_1b)===false){
|
|
throw new Error("Invalid namespace given: "+_1b);
|
|
}
|
|
},_assertIsValidKey:function(key){
|
|
if(this.isValidKey(key)===false){
|
|
throw new Error("Invalid key given: "+key);
|
|
}
|
|
}});
|
|
_3.storage.manager.register("dojox.storage.CookieStorageProvider",new _3.storage.CookieStorageProvider());
|
|
});
|