CookieProvider.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:3k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */
  2. /**
  3.  * @class Ext.state.CookieProvider
  4.  * @extends Ext.state.Provider
  5.  * The default Provider implementation which saves state via cookies.
  6.  * <br />Usage:
  7.  <pre><code>
  8.    var cp = new Ext.state.CookieProvider({
  9.        path: "/cgi-bin/",
  10.        expires: new Date(new Date().getTime()+(1000*60*60*24*30)), //30 days
  11.        domain: "extjs.com"
  12.    });
  13.    Ext.state.Manager.setProvider(cp);
  14.  </code></pre>
  15.  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
  16.  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
  17.  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
  18.  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'extjs.com' to include
  19.  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
  20.  * domain the page is running on including the 'www' like 'www.extjs.com')
  21.  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
  22.  * @constructor
  23.  * Create a new CookieProvider
  24.  * @param {Object} config The configuration object
  25.  */
  26. Ext.state.CookieProvider = function(config){
  27.     Ext.state.CookieProvider.superclass.constructor.call(this);
  28.     this.path = "/";
  29.     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
  30.     this.domain = null;
  31.     this.secure = false;
  32.     Ext.apply(this, config);
  33.     this.state = this.readCookies();
  34. };
  35. Ext.extend(Ext.state.CookieProvider, Ext.state.Provider, {
  36.     // private
  37.     set : function(name, value){
  38.         if(typeof value == "undefined" || value === null){
  39.             this.clear(name);
  40.             return;
  41.         }
  42.         this.setCookie(name, value);
  43.         Ext.state.CookieProvider.superclass.set.call(this, name, value);
  44.     },
  45.     // private
  46.     clear : function(name){
  47.         this.clearCookie(name);
  48.         Ext.state.CookieProvider.superclass.clear.call(this, name);
  49.     },
  50.     // private
  51.     readCookies : function(){
  52.         var cookies = {};
  53.         var c = document.cookie + ";";
  54.         var re = /s?(.*?)=(.*?);/g;
  55.      var matches;
  56.      while((matches = re.exec(c)) != null){
  57.             var name = matches[1];
  58.             var value = matches[2];
  59.             if(name && name.substring(0,3) == "ys-"){
  60.                 cookies[name.substr(3)] = this.decodeValue(value);
  61.             }
  62.         }
  63.         return cookies;
  64.     },
  65.     // private
  66.     setCookie : function(name, value){
  67.         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
  68.            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
  69.            ((this.path == null) ? "" : ("; path=" + this.path)) +
  70.            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
  71.            ((this.secure == true) ? "; secure" : "");
  72.     },
  73.     // private
  74.     clearCookie : function(name){
  75.         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
  76.            ((this.path == null) ? "" : ("; path=" + this.path)) +
  77.            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
  78.            ((this.secure == true) ? "; secure" : "");
  79.     }
  80. });