nnnjjj123
2020-11-17 1b2c1edb61190eeb19f465ff031eaa3b2a1b8dbc
1
2
3
4
5
6
7
8
9
//>>built
define(["dojo","dijit","dojox","dojo/require!dojox/storage/manager,dojox/storage/Provider"],function(f,l,g){f.provide("dojox.storage.AirEncryptedLocalStorageProvider");f.require("dojox.storage.manager");f.require("dojox.storage.Provider");f.isAIR&&function(){if(!e)var e={};e.ByteArray=window.runtime.flash.utils.ByteArray;e.EncryptedLocalStore=window.runtime.flash.data.EncryptedLocalStore;f.declare("dojox.storage.AirEncryptedLocalStorageProvider",[g.storage.Provider],{initialize:function(){g.storage.manager.loaded()},
isAvailable:function(){return!0},_getItem:function(a){return(a=e.EncryptedLocalStore.getItem("__dojo_"+a))?a.readUTFBytes(a.length):""},_setItem:function(a,b){var c=new e.ByteArray;c.writeUTFBytes(b);e.EncryptedLocalStore.setItem("__dojo_"+a,c)},_removeItem:function(a){e.EncryptedLocalStore.removeItem("__dojo_"+a)},put:function(a,b,c,d){if(0==this.isValidKey(a))throw Error("Invalid key given: "+a);d=d||this.DEFAULT_NAMESPACE;if(0==this.isValidKey(d))throw Error("Invalid namespace given: "+d);try{var e=
this._getItem("namespaces")||"|";-1==e.indexOf("|"+d+"|")&&this._setItem("namespaces",e+d+"|");var f=this._getItem(d+"_keys")||"|";-1==f.indexOf("|"+a+"|")&&this._setItem(d+"_keys",f+a+"|");this._setItem("_"+d+"_"+a,b)}catch(k){console.debug("dojox.storage.AirEncryptedLocalStorageProvider.put:",k);c(this.FAILED,a,k.toString(),d);return}c&&c(this.SUCCESS,a,null,d)},get:function(a,b){if(0==this.isValidKey(a))throw Error("Invalid key given: "+a);b=b||this.DEFAULT_NAMESPACE;return this._getItem("_"+b+
"_"+a)},getNamespaces:function(){for(var a=[this.DEFAULT_NAMESPACE],b=(this._getItem("namespaces")||"|").split("|"),c=0;c<b.length;c++)b[c].length&&b[c]!=this.DEFAULT_NAMESPACE&&a.push(b[c]);return a},getKeys:function(a){a=a||this.DEFAULT_NAMESPACE;if(0==this.isValidKey(a))throw Error("Invalid namespace given: "+a);var b=[];a=(this._getItem(a+"_keys")||"|").split("|");for(var c=0;c<a.length;c++)a[c].length&&b.push(a[c]);return b},clear:function(a){if(0==this.isValidKey(a))throw Error("Invalid namespace given: "+
a);var b=this._getItem("namespaces")||"|";-1!=b.indexOf("|"+a+"|")&&this._setItem("namespaces",b.replace("|"+a+"|","|"));for(var b=(this._getItem(a+"_keys")||"|").split("|"),c=0;c<b.length;c++)b[c].length&&this._removeItem(a+"_"+b[c]);this._removeItem(a+"_keys")},remove:function(a,b){b=b||this.DEFAULT_NAMESPACE;var c=this._getItem(b+"_keys")||"|";-1!=c.indexOf("|"+a+"|")&&this._setItem(b+"_keys",c.replace("|"+a+"|","|"));this._removeItem("_"+b+"_"+a)},putMultiple:function(a,b,c,d){if(!1===this.isValidKeyArray(a)||
!b instanceof Array||a.length!=b.length)throw Error("Invalid arguments: keys \x3d ["+a+"], values \x3d ["+b+"]");if(null==d||"undefined"==typeof d)d=this.DEFAULT_NAMESPACE;if(0==this.isValidKey(d))throw Error("Invalid namespace given: "+d);this._statusHandler=c;try{for(var e=0;e<a.length;e++)this.put(a[e],b[e],null,d)}catch(h){console.debug("dojox.storage.AirEncryptedLocalStorageProvider.putMultiple:",h);c&&c(this.FAILED,a,h.toString(),d);return}c&&c(this.SUCCESS,a,null)},getMultiple:function(a,b){if(!1===
this.isValidKeyArray(a))throw Error("Invalid key array given: "+a);if(null==b||"undefined"==typeof b)b=this.DEFAULT_NAMESPACE;if(0==this.isValidKey(b))throw Error("Invalid namespace given: "+b);for(var c=[],d=0;d<a.length;d++)c[d]=this.get(a[d],b);return c},removeMultiple:function(a,b){b=b||this.DEFAULT_NAMESPACE;for(var c=0;c<a.length;c++)this.remove(a[c],b)},isPermanent:function(){return!0},getMaximumSize:function(){return this.SIZE_NO_LIMIT},hasSettingsUI:function(){return!1},showSettingsUI:function(){throw Error(this.declaredClass+
" does not support a storage settings user-interface");},hideSettingsUI:function(){throw Error(this.declaredClass+" does not support a storage settings user-interface");}});g.storage.manager.register("dojox.storage.AirEncryptedLocalStorageProvider",new g.storage.AirEncryptedLocalStorageProvider);g.storage.manager.initialize()}()});