mirror of
https://github.com/sbrl/powahroot.git
synced 2024-10-31 21:33:01 +00:00
33 lines
677 B
JavaScript
33 lines
677 B
JavaScript
"use strict";
|
|
|
|
import cookie from 'cookie';
|
|
|
|
/**
|
|
* Holds request environment and state variables.
|
|
*/
|
|
class RequestEnvironment {
|
|
constructor(request) {
|
|
/**
|
|
* Whether the user is logged in or not.
|
|
* @type {Boolean}
|
|
*/
|
|
this.logged_in = false;
|
|
/**
|
|
* The user's name. Guaranteed to be specified - if only as "anonymous".
|
|
* @type {String}
|
|
*/
|
|
this.username = "anonymous";
|
|
/**
|
|
* The parsed cookie object
|
|
* @type {Object}
|
|
*/
|
|
this.cookie = cookie.parse(request.headers["cookie"] || "");
|
|
/**
|
|
* The parsed post data as an object, if applicable.
|
|
* @type {Object|null}
|
|
*/
|
|
this.post_data = null;
|
|
}
|
|
}
|
|
|
|
export default RequestEnvironment;
|