Cookies.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:4k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.util.Cookies
  3.  * Utility class for managing and interacting with cookies.
  4.  * @singleton
  5.  */
  6. Ext.util.Cookies = {
  7.     /**
  8.      * Create a cookie with the specified name and value. Additional settings
  9.      * for the cookie may be optionally specified (for example: expiration,
  10.      * access restriction, SSL).
  11.      * @param {Object} name
  12.      * @param {Object} value
  13.      * @param {Object} expires (Optional) Specify an expiration date the
  14.      * cookie is to persist until.  Note that the specified Date object will
  15.      * be converted to Greenwich Mean Time (GMT). 
  16.      * @param {String} path (Optional) Setting a path on the cookie restricts
  17.      * access to pages that match that path. Defaults to all pages (<tt>'/'</tt>). 
  18.      * @param {String} domain (Optional) Setting a domain restricts access to
  19.      * pages on a given domain (typically used to allow cookie access across
  20.      * subdomains). For example, "extjs.com" will create a cookie that can be
  21.      * accessed from any subdomain of extjs.com, including www.extjs.com,
  22.      * support.extjs.com, etc.
  23.      * @param {Boolean} secure (Optional) Specify true to indicate that the cookie
  24.      * should only be accessible via SSL on a page using the HTTPS protocol.
  25.      * Defaults to <tt>false</tt>. Note that this will only work if the page
  26.      * calling this code uses the HTTPS protocol, otherwise the cookie will be
  27.      * created with default options.
  28.      */
  29.     set : function(name, value){
  30.         var argv = arguments;
  31.         var argc = arguments.length;
  32.         var expires = (argc > 2) ? argv[2] : null;
  33.         var path = (argc > 3) ? argv[3] : '/';
  34.         var domain = (argc > 4) ? argv[4] : null;
  35.         var secure = (argc > 5) ? argv[5] : false;
  36.         document.cookie = name + "=" + escape(value) + ((expires === null) ? "" : ("; expires=" + expires.toGMTString())) + ((path === null) ? "" : ("; path=" + path)) + ((domain === null) ? "" : ("; domain=" + domain)) + ((secure === true) ? "; secure" : "");
  37.     },
  38.     /**
  39.      * Retrieves cookies that are accessible by the current page. If a cookie
  40.      * does not exist, <code>get()</code> returns <tt>null</tt>.  The following
  41.      * example retrieves the cookie called "valid" and stores the String value
  42.      * in the variable <tt>validStatus</tt>.
  43.      * <pre><code>
  44.      * var validStatus = Ext.util.Cookies.get("valid");
  45.      * </code></pre>
  46.      * @param {Object} name The name of the cookie to get
  47.      * @return {Mixed} Returns the cookie value for the specified name;
  48.      * null if the cookie name does not exist.
  49.      */
  50.     get : function(name){
  51.         var arg = name + "=";
  52.         var alen = arg.length;
  53.         var clen = document.cookie.length;
  54.         var i = 0;
  55.         var j = 0;
  56.         while(i < clen){
  57.             j = i + alen;
  58.             if(document.cookie.substring(i, j) == arg){
  59.                 return Ext.util.Cookies.getCookieVal(j);
  60.             }
  61.             i = document.cookie.indexOf(" ", i) + 1;
  62.             if(i === 0){
  63.                 break;
  64.             }
  65.         }
  66.         return null;
  67.     },
  68.     /**
  69.      * Removes a cookie with the provided name from the browser
  70.      * if found.
  71.      * @param {Object} name The name of the cookie to remove
  72.      */
  73.     clear : function(name){
  74.         if(Ext.util.Cookies.get(name)){
  75.             document.cookie = name + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  76.         }
  77.     },
  78.     /**
  79.      * @private
  80.      */
  81.     getCookieVal : function(offset){
  82.         var endstr = document.cookie.indexOf(";", offset);
  83.         if(endstr == -1){
  84.             endstr = document.cookie.length;
  85.         }
  86.         return unescape(document.cookie.substring(offset, endstr));
  87.     }
  88. };