Minor bug fixes. Added 302 redirect
This commit is contained in:
parent
1b361227e7
commit
21dfcaca0e
@ -1,11 +1,20 @@
|
|||||||
var encodeCookie = function( cookie )
|
var encodeCookie = function( cookie )
|
||||||
{
|
{
|
||||||
var cookieStr = "";
|
var cookieStr = "";
|
||||||
|
var p = "";
|
||||||
for( var i in cookie )
|
for( var i in cookie )
|
||||||
{
|
{
|
||||||
|
if( i.toLowerCase() == "path" )
|
||||||
|
{
|
||||||
|
p = cookie[i];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
cookieStr += i + "=" + encodeURI( cookie[i] ) + ";";
|
cookieStr += i + "=" + encodeURI( cookie[i] ) + ";";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path at tail
|
||||||
|
cookieStr += "path=" + p + ";";
|
||||||
|
|
||||||
return cookieStr;
|
return cookieStr;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ var RelayPoint = function( uri, internal )
|
|||||||
);
|
);
|
||||||
|
|
||||||
this.value = internal ? uri : stripURI( uri );
|
this.value = internal ? uri : stripURI( uri );
|
||||||
|
this.params = Array.prototype.slice.call( arguments, 2 );
|
||||||
};
|
};
|
||||||
|
|
||||||
var Router = function( http )
|
var Router = function( http )
|
||||||
@ -63,6 +64,7 @@ Router.prototype.route = function()
|
|||||||
var currentRoute = this.relaying.value;
|
var currentRoute = this.relaying.value;
|
||||||
var r;
|
var r;
|
||||||
|
|
||||||
|
// Direct means reroute using route key to match the route
|
||||||
if( this.relaying.direct )
|
if( this.relaying.direct )
|
||||||
{
|
{
|
||||||
if( r = this.routes[ this.relaying.value ] )
|
if( r = this.routes[ this.relaying.value ] )
|
||||||
@ -74,6 +76,7 @@ Router.prototype.route = function()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
// Parse RegEx rules one by one
|
||||||
for( var i in this.routes )
|
for( var i in this.routes )
|
||||||
{
|
{
|
||||||
r = this.routes[i];
|
r = this.routes[i];
|
||||||
@ -99,11 +102,12 @@ Router.prototype.route = function()
|
|||||||
// Set Route
|
// Set Route
|
||||||
Router.prototype.setRoute = function( _route, _match )
|
Router.prototype.setRoute = function( _route, _match )
|
||||||
{
|
{
|
||||||
|
var _self = this;
|
||||||
this.routeObj = {
|
this.routeObj = {
|
||||||
route: _route
|
route: _route
|
||||||
, match: _match
|
, match: _match
|
||||||
, router: this.router
|
, router: _self.router
|
||||||
, inputs: this.inputs
|
, inputs: _self.inputs
|
||||||
|
|
||||||
// Re-route function
|
// Re-route function
|
||||||
, reRoute: function( target, direct )
|
, reRoute: function( target, direct )
|
||||||
@ -112,11 +116,19 @@ Router.prototype.setRoute = function( _route, _match )
|
|||||||
"Reroute: " + target
|
"Reroute: " + target
|
||||||
+ ( direct ? ", Direct" : "" )
|
+ ( direct ? ", Direct" : "" )
|
||||||
);
|
);
|
||||||
this.relaying = new RelayPoint( target, direct );
|
_self.relaying = new RelayPoint( target, direct );
|
||||||
this.routable = true;
|
_self.routable = true;
|
||||||
this.reRoute = true;
|
_self.reRoute = true;
|
||||||
this.emit( "Route" );
|
_self.emit( "Route" );
|
||||||
}.bind( this )
|
}
|
||||||
|
, redirect: function( target )
|
||||||
|
{
|
||||||
|
Dragonfly.Debug( "Redirect: " + target );
|
||||||
|
_self.relaying = new RelayPoint( "302", true, target );
|
||||||
|
_self.routable = true;
|
||||||
|
_self.reRoute = true;
|
||||||
|
_self.emit( "Route" );
|
||||||
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@ var FatalError = require( '../errors/FatalError.js' );
|
|||||||
|
|
||||||
var Framework = function( garden )
|
var Framework = function( garden )
|
||||||
{
|
{
|
||||||
|
var _self = this;
|
||||||
|
|
||||||
this.HTTP = garden;
|
this.HTTP = garden;
|
||||||
this.result = 0;
|
this.result = 0;
|
||||||
this.planted = false;
|
this.planted = false;
|
||||||
@ -10,24 +12,38 @@ var Framework = function( garden )
|
|||||||
this.requestObj = {};
|
this.requestObj = {};
|
||||||
|
|
||||||
var Router = require( "./Router" );
|
var Router = require( "./Router" );
|
||||||
this.router = new Router( garden );
|
|
||||||
this.router.addRoute( "404", false, "404" );
|
var router = new Router( garden );
|
||||||
this.router.addRoute( "500", false, "500" );
|
router.addRoute( "302", false, "302" );
|
||||||
this.router.addListener( "Route", this.parseResult.bind( this ) );
|
router.addRoute( "404", false, "404" );
|
||||||
|
router.addRoute( "500", false, "500" );
|
||||||
|
router.addListener( "Route", this.parseResult.bind( this ) );
|
||||||
|
|
||||||
|
this.router = router;
|
||||||
|
|
||||||
|
var res = this.HTTP.response;
|
||||||
|
|
||||||
this.handlers = {
|
this.handlers = {
|
||||||
"404": function()
|
"404": function()
|
||||||
{
|
{
|
||||||
this.HTTP.response.statusCode = 404;
|
res.statusCode = 404;
|
||||||
this.result = "404 Not Found";
|
_self.result = "404 Not Found";
|
||||||
this.plantResult();
|
_self.plantResult();
|
||||||
}.bind( this )
|
}
|
||||||
|
, "302": function()
|
||||||
|
{
|
||||||
|
res.statusCode = 302;
|
||||||
|
res.headers[ "Location" ] = router.relaying.params[0];
|
||||||
|
|
||||||
|
_self.result = "";
|
||||||
|
_self.plantResult();
|
||||||
|
}
|
||||||
, "500": function()
|
, "500": function()
|
||||||
{
|
{
|
||||||
this.HTTP.response.statusCode = 500;
|
res.statusCode = 500;
|
||||||
this.result = "500 Internal Server Error";
|
_self.result = "500 Internal Server Error";
|
||||||
this.plantResult();
|
_self.plantResult();
|
||||||
}.bind( this )
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -46,7 +62,7 @@ Framework.prototype.run = function()
|
|||||||
{
|
{
|
||||||
_self.parseResult();
|
_self.parseResult();
|
||||||
});
|
});
|
||||||
|
|
||||||
method = "POST";
|
method = "POST";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user