BotanSS/net/Components/Cookie.js

60 lines
1006 B
JavaScript

var encodeCookie = function( cookie )
{
var cookieStr = "";
var p = "";
for( var i in cookie )
{
if( i.toLowerCase() == "path" )
{
p = cookie[i];
continue;
}
cookieStr += i + "=" + encodeURI( cookie[i] ) + ";";
}
// Path at tail
cookieStr += "path=" + p + ";";
return cookieStr;
};
var Cookie = function( cookieStr, HTTP )
{
var list = {};
cookieStr && cookieStr.split( ";" ).forEach( function( cookie )
{
var parts = cookie.split( "=" );
list[ parts.shift().trim() ] = decodeURI( parts.join( "=" ) );
} );
this.__cookie = list;
this.HTTP = HTTP;
};
Cookie.prototype.set = function( name, value )
{
this.__cookie[ name ] = value;
};
Cookie.prototype.seth = function( name, value )
{
this.set( name, value );
this.HTTP.response.headers[ "Set-Cookie" ] = this.toString();
};
Cookie.prototype.get = function( name )
{
return this.__cookie[ name ];
};
Cookie.prototype.toString = function()
{
return encodeCookie( this.__cookie );
};
module.exports = Cookie;