powahroot/Server/RouterContext.mjs

51 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-04-26 22:35:10 +00:00
"use strict";
import url from 'url';
2019-04-27 14:27:09 +00:00
2019-04-26 22:35:10 +00:00
import Sender from './Sender.mjs';
2019-04-27 14:27:09 +00:00
import RequestEnvironment from './RequestEnvironment.mjs';
2019-04-26 22:35:10 +00:00
/**
* Contains context information about a single request / response pair.
*/
class RouterContext {
constructor(in_request, in_response) {
/**
* The Node.JS request object
* @type {http.ClientRequest}
*/
this.request = in_request;
/**
* The Node.JS response object
* @type {http.ServerResponse}
*/
this.response = in_response;
/**
* The parsed request URL
* @type {URL}
*/
this.url = url.parse(this.request.url, true);
/**
* The url parameters parsed out by the router
* @type {Object}
*/
this.params = {};
/**
* An object containing some utitlity methods for quickly sending responses
* @type {Sender}
*/
this.send = new Sender(this.response);
// FUTURE: Refactor the default population of this object elsewhere
/**
* The environment object.
* State variables that need to be attached to a specific request can
* go in here.
* @type {Object}
*/
2019-04-27 14:27:09 +00:00
this.env = new RequestEnvironment(this.request);
2019-04-26 22:35:10 +00:00
}
}
export default RouterContext;