|
|
|
@ -1,81 +1,81 @@
|
|
|
|
|
// requirement
|
|
|
|
|
const https = require('https'),
|
|
|
|
|
fs = require('fs'),
|
|
|
|
|
urlparse = require('url'),
|
|
|
|
|
perfy = require('perfy'),
|
|
|
|
|
winston = require('winston'),
|
|
|
|
|
DailyRotateFile = require('winston-daily-rotate-file'),
|
|
|
|
|
path = require('path'),
|
|
|
|
|
fs = require('fs'),
|
|
|
|
|
urlparse = require('url'),
|
|
|
|
|
perfy = require('perfy'),
|
|
|
|
|
winston = require('winston'),
|
|
|
|
|
DailyRotateFile = require('winston-daily-rotate-file'),
|
|
|
|
|
path = require('path'),
|
|
|
|
|
// own modules
|
|
|
|
|
utils = require("./lib/utils"),
|
|
|
|
|
prepro = require("./lib/preprocessor"),
|
|
|
|
|
utils = require("./lib/utils"),
|
|
|
|
|
prepro = require("./lib/preprocessor"),
|
|
|
|
|
// args
|
|
|
|
|
args = require('args-parser')(process.argv), // create an args parser
|
|
|
|
|
args = require('args-parser')(process.argv), // create an args parser
|
|
|
|
|
// config file
|
|
|
|
|
config = JSON.parse(fs.readFileSync("./config/server.json")),
|
|
|
|
|
config = JSON.parse(fs.readFileSync("./config/server.json")),
|
|
|
|
|
|
|
|
|
|
// logging config using winston
|
|
|
|
|
fileLoggingFormat = winston.format.printf(info => {
|
|
|
|
|
return `${info.timestamp} ${info.level.toUpperCase()}: ${JSON.stringify(info.message)}`; // the logging format for files
|
|
|
|
|
}),
|
|
|
|
|
consoleLoggingFormat = winston.format.printf(info => {
|
|
|
|
|
return `${info.timestamp} [${info.level}] ${JSON.stringify(info.message)}`; //the logging format for the console
|
|
|
|
|
}),
|
|
|
|
|
loggingFullFormat = winston.format.combine(
|
|
|
|
|
winston.format.splat(),
|
|
|
|
|
winston.format.timestamp({
|
|
|
|
|
format: 'MM-DD HH:mm:ss.SSS' // don't include the year because the filename already tells
|
|
|
|
|
fileLoggingFormat = winston.format.printf(info => {
|
|
|
|
|
return `${info.timestamp} ${info.level.toUpperCase()}: ${JSON.stringify(info.message)}`; // the logging format for files
|
|
|
|
|
}),
|
|
|
|
|
consoleLoggingFormat = winston.format.printf(info => {
|
|
|
|
|
return `${info.timestamp} [${info.level}] ${JSON.stringify(info.message)}`; //the logging format for the console
|
|
|
|
|
}),
|
|
|
|
|
loggingFullFormat = winston.format.combine(
|
|
|
|
|
winston.format.splat(),
|
|
|
|
|
winston.format.timestamp({
|
|
|
|
|
format: 'MM-DD HH:mm:ss.SSS' // don't include the year because the filename already tells
|
|
|
|
|
}),
|
|
|
|
|
fileLoggingFormat // the logging format for files that logs with a capitalized level
|
|
|
|
|
),
|
|
|
|
|
logger = winston.createLogger({
|
|
|
|
|
level: winston.config.npm.levels, // logs with npm levels
|
|
|
|
|
format: loggingFullFormat, // the full format for files
|
|
|
|
|
transports: [
|
|
|
|
|
new winston.transports.Console({
|
|
|
|
|
format: winston.format.combine(
|
|
|
|
|
winston.format.colorize(), // colorizes the console logging output
|
|
|
|
|
winston.format.splat(),
|
|
|
|
|
winston.format.timestamp({
|
|
|
|
|
format: 'YY-MM-DD HH:mm:ss.SSS' // logs with the year to the console
|
|
|
|
|
}),
|
|
|
|
|
consoleLoggingFormat // logs with the custom console format
|
|
|
|
|
),
|
|
|
|
|
level: args.loglevel || 'info' // logs to the console with the arg loglevel or info if it is not given
|
|
|
|
|
}),
|
|
|
|
|
new winston.transports.File({
|
|
|
|
|
level: 'debug', // logs with debug level to the active file
|
|
|
|
|
filename: './.log/rcn-frontserver.log', // the filename of the current file,
|
|
|
|
|
options: {flags: 'w'} // overwrites the file on restart
|
|
|
|
|
}),
|
|
|
|
|
new DailyRotateFile({
|
|
|
|
|
level: 'verbose', // log verbose in the rotating logvile
|
|
|
|
|
filename: './.log/frontserver-%DATE%.log', // the pattern of the filename
|
|
|
|
|
datePattern: 'YYYY-MM-DD', // the pattern of %DATE%
|
|
|
|
|
zippedArchive: true, // indicates that old logfiles should get zipped
|
|
|
|
|
maxSize: '32m', // the maximum filesize
|
|
|
|
|
maxFiles: '30d' // the maximum files to keep
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
}),
|
|
|
|
|
fileLoggingFormat // the logging format for files that logs with a capitalized level
|
|
|
|
|
),
|
|
|
|
|
logger = winston.createLogger({
|
|
|
|
|
level: winston.config.npm.levels, // logs with npm levels
|
|
|
|
|
format: loggingFullFormat, // the full format for files
|
|
|
|
|
transports: [
|
|
|
|
|
new winston.transports.Console({
|
|
|
|
|
format: winston.format.combine(
|
|
|
|
|
winston.format.colorize(), // colorizes the console logging output
|
|
|
|
|
winston.format.splat(),
|
|
|
|
|
winston.format.timestamp({
|
|
|
|
|
format: 'YY-MM-DD HH:mm:ss.SSS' // logs with the year to the console
|
|
|
|
|
}),
|
|
|
|
|
consoleLoggingFormat // logs with the custom console format
|
|
|
|
|
),
|
|
|
|
|
level: args.loglevel || 'info' // logs to the console with the arg loglevel or info if it is not given
|
|
|
|
|
}),
|
|
|
|
|
new winston.transports.File({
|
|
|
|
|
level: 'debug', // logs with debug level to the active file
|
|
|
|
|
filename: './.log/rcn-frontserver.log', // the filename of the current file,
|
|
|
|
|
options: {flags: 'w'} // overwrites the file on restart
|
|
|
|
|
}),
|
|
|
|
|
new DailyRotateFile({
|
|
|
|
|
level: 'verbose', // log verbose in the rotating logvile
|
|
|
|
|
filename: './.log/frontserver-%DATE%.log', // the pattern of the filename
|
|
|
|
|
datePattern: 'YYYY-MM-DD', // the pattern of %DATE%
|
|
|
|
|
zippedArchive: true, // indicates that old logfiles should get zipped
|
|
|
|
|
maxSize: '32m', // the maximum filesize
|
|
|
|
|
maxFiles: '30d' // the maximum files to keep
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
}),
|
|
|
|
|
// serveroptions
|
|
|
|
|
options = {
|
|
|
|
|
key: fs.readFileSync('.ssh/key.pem'), // the key-file
|
|
|
|
|
cert: fs.readFileSync('.ssh/cert.pem') // the certificate-file
|
|
|
|
|
},
|
|
|
|
|
port = args.port || 443, // the port the server is running on. It's the https standard
|
|
|
|
|
routes = config.routes || {
|
|
|
|
|
".html": {
|
|
|
|
|
"path": "./res/html", // standard route to the html files
|
|
|
|
|
"mime": "text/html"
|
|
|
|
|
options = {
|
|
|
|
|
key: fs.readFileSync('.ssh/key.pem'), // the key-file
|
|
|
|
|
cert: fs.readFileSync('.ssh/cert.pem') // the certificate-file
|
|
|
|
|
},
|
|
|
|
|
".js": {
|
|
|
|
|
"path": "./res/scripts", // standard route to the script files
|
|
|
|
|
"mime": "text/javascript"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounts = config.mounts, // mounts are more important than routes.
|
|
|
|
|
cache = {}; // cache stores filenames for cached processed files
|
|
|
|
|
port = args.port || 443, // the port the server is running on. It's the https standard
|
|
|
|
|
routes = config.routes || {
|
|
|
|
|
".html": {
|
|
|
|
|
"path": "./res/html", // standard route to the html files
|
|
|
|
|
"mime": "text/html"
|
|
|
|
|
},
|
|
|
|
|
".js": {
|
|
|
|
|
"path": "./res/scripts", // standard route to the script files
|
|
|
|
|
"mime": "text/javascript"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounts = config.mounts, // mounts are more important than routes.
|
|
|
|
|
cache = {}; // cache stores filenames for cached processed files
|
|
|
|
|
|
|
|
|
|
// --- functional declaration part ---
|
|
|
|
|
|
|
|
|
@ -84,62 +84,62 @@ const https = require('https'),
|
|
|
|
|
* @return {boolean} Returns false if the server stopped by error.
|
|
|
|
|
*/
|
|
|
|
|
function main() {
|
|
|
|
|
try {
|
|
|
|
|
prepro.setLogger(logger);
|
|
|
|
|
https.createServer(options, function(req, res) {
|
|
|
|
|
logger.verbose({'msg': 'Received request', 'method': req.method, 'url': req.url});
|
|
|
|
|
try {
|
|
|
|
|
prepro.setLogger(logger);
|
|
|
|
|
https.createServer(options, function (req, res) {
|
|
|
|
|
logger.verbose({'msg': 'Received request', 'method': req.method, 'url': req.url});
|
|
|
|
|
|
|
|
|
|
perfy.start('response-calculation'); // caluclate the response time
|
|
|
|
|
let url = urlparse.parse(req.url); // parse the url
|
|
|
|
|
let uri = url.pathname; // set uri to the urls uriame
|
|
|
|
|
logger.debug({"msg": 'Got URL by using url package','url': url, 'path': uri});
|
|
|
|
|
perfy.start('response-calculation'); // caluclate the response time
|
|
|
|
|
let url = urlparse.parse(req.url); // parse the url
|
|
|
|
|
let uri = url.pathname; // set uri to the urls uriame
|
|
|
|
|
logger.debug({"msg": 'Got URL by using url package', 'url': url, 'path': uri});
|
|
|
|
|
|
|
|
|
|
let [response, mime] = getResponse(uri); // get a response for the url path
|
|
|
|
|
logger.debug({'response-length': response.length, 'mime-type': mime});
|
|
|
|
|
let [response, mime] = getResponse(uri); // get a response for the url path
|
|
|
|
|
logger.debug({'response-length': response.length, 'mime-type': mime});
|
|
|
|
|
|
|
|
|
|
res.writeHead(200, {"Content-Type": mime || "text/plain"}); // write the mime as head
|
|
|
|
|
res.end(response); // write the response
|
|
|
|
|
let execTime = perfy.end('response-calculation').fullMilliseconds; // get the execution time
|
|
|
|
|
logger.debug("Response-Time: " + execTime + " ms for " + req.url, "debug"); // log the execution time
|
|
|
|
|
res.writeHead(200, {"Content-Type": mime || "text/plain"}); // write the mime as head
|
|
|
|
|
res.end(response); // write the response
|
|
|
|
|
let execTime = perfy.end('response-calculation').fullMilliseconds; // get the execution time
|
|
|
|
|
logger.debug("Response-Time: " + execTime + " ms for " + req.url, "debug"); // log the execution time
|
|
|
|
|
|
|
|
|
|
}).listen(port); // server listens on port specified in the parameter
|
|
|
|
|
} catch (error) {
|
|
|
|
|
logger.error(error);
|
|
|
|
|
logger.info("Shutting Down...");
|
|
|
|
|
caching.cleanup();
|
|
|
|
|
winston.end();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}).listen(port); // server listens on port specified in the parameter
|
|
|
|
|
} catch (error) {
|
|
|
|
|
logger.error(error);
|
|
|
|
|
logger.info("Shutting Down...");
|
|
|
|
|
prepro.cleanup();
|
|
|
|
|
winston.end();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a string that depends on the uri It gets the data from the routes variable.
|
|
|
|
|
* @param {String} uriNormally a file-name. Depending on the extension, an other root-uriis choosen.
|
|
|
|
|
* @return {String} An Array containing (Either the files content or an error message) and the mime-type.
|
|
|
|
|
* @param uri
|
|
|
|
|
* @return {string[]} An Array containing (Either the files content or an error message) and the mime-type.
|
|
|
|
|
*/
|
|
|
|
|
function getResponse(uri) {
|
|
|
|
|
if (!uri || uri == "/") uri = "/index.html"; // uri redirects to the index.html if it is not set or if it is root
|
|
|
|
|
logger.verbose({'msg':'calculating response', 'path': uri});
|
|
|
|
|
let gp = prepro.getProcessed;
|
|
|
|
|
try {
|
|
|
|
|
// get the file extension
|
|
|
|
|
let extension = utils.getExtension(uri);
|
|
|
|
|
// returns the global script or css if the extension is css or js and the root-uriis glob.
|
|
|
|
|
if (uri.includes("/glob") && (extension == ".sass" || extension == ".js")) {
|
|
|
|
|
logger.verbose("Using global uri");
|
|
|
|
|
if (extension == ".sass") return [gp("." + uri), "text/css"];
|
|
|
|
|
else return [gp("." + uri), "text/javascript"];
|
|
|
|
|
if (!uri || uri === "/") uri = "/index.html"; // uri redirects to the index.html if it is not set or if it is root
|
|
|
|
|
logger.verbose({'msg': 'calculating response', 'path': uri});
|
|
|
|
|
let gp = prepro.getProcessed;
|
|
|
|
|
try {
|
|
|
|
|
// get the file extension
|
|
|
|
|
let extension = utils.getExtension(uri);
|
|
|
|
|
// returns the global script or css if the extension is css or js and the root-uriis glob.
|
|
|
|
|
if (uri.includes("/glob") && (extension === ".sass" || extension === ".js")) {
|
|
|
|
|
logger.verbose("Using global uri");
|
|
|
|
|
if (extension === ".sass") return [gp("." + uri), "text/css"];
|
|
|
|
|
else return [gp("." + uri), "text/javascript"];
|
|
|
|
|
}
|
|
|
|
|
let mount = getMount(uri); // get mount for uri it will be uses as path later instead of route
|
|
|
|
|
logger.verbose("Mount for uri is " + mount);
|
|
|
|
|
let route = routes[extension]; // get the route from the extension json
|
|
|
|
|
logger.verbose("Found route: " + JSON.stringify(route));
|
|
|
|
|
if (!route) return ["Not Allowed", "text/plain"]; // return not allowed if no route was found
|
|
|
|
|
return [gp(mount || path.join(route["path"], uri)), route["mime"]]; // get processed output (done by preprocessor)
|
|
|
|
|
} catch (error) {
|
|
|
|
|
logger.error(error);
|
|
|
|
|
return ["Error", "text/plain"];
|
|
|
|
|
}
|
|
|
|
|
let mount = getMount(uri); // get mount for uri it will be uses as path later instead of route
|
|
|
|
|
logger.verbose("Mount for uri is "+ mount);
|
|
|
|
|
let route = routes[extension]; // get the route from the extension json
|
|
|
|
|
logger.verbose("Found route: "+JSON.stringify(route));
|
|
|
|
|
if (!route) return ["Not Allowed", "text/plain"]; // return not allowed if no route was found
|
|
|
|
|
return [gp(mount || path.join(route["path"],uri)), route["mime"]]; // get processed output (done by preprocessor)
|
|
|
|
|
} catch (error) {
|
|
|
|
|
logger.error(error);
|
|
|
|
|
return ["Error", "text/plain"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -148,26 +148,26 @@ function getResponse(uri) {
|
|
|
|
|
* @return {String} The uri that points to the mounted path
|
|
|
|
|
*/
|
|
|
|
|
function getMount(uri) {
|
|
|
|
|
if (mounts){ // if mounts are set
|
|
|
|
|
for (var mount of mounts){ // for each set mount
|
|
|
|
|
if (mount.mount && mount.path) { // if the mount has the mount parameter and the path parameter
|
|
|
|
|
let regEx = RegExp(mount.mount); // create a regex from the mount
|
|
|
|
|
if (uri.match(regEx)) { // if there is a match
|
|
|
|
|
return uri.replace(regEx, mount.path); // returnthe modified uri
|
|
|
|
|
if (mounts) { // if mounts are set
|
|
|
|
|
for (let mount of mounts) { // for each set mount
|
|
|
|
|
if (mount.mount && mount.path) { // if the mount has the mount parameter and the path parameter
|
|
|
|
|
let regEx = RegExp(mount.mount); // create a regex from the mount
|
|
|
|
|
if (uri.match(regEx)) { // if there is a match
|
|
|
|
|
return uri.replace(regEx, mount.path); // returnthe modified uri
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Executing the main function
|
|
|
|
|
if (typeof require != 'undefined' && require.main == module) {
|
|
|
|
|
logger.exceptions.handle(
|
|
|
|
|
new winston.transports.File({
|
|
|
|
|
filename: './.log/frontserver-exceptions.log'
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
logger.info("Starting up... "); // log the current date so that the logfile is better to read.
|
|
|
|
|
main();
|
|
|
|
|
if (typeof require !== 'undefined' && require.main === module) {
|
|
|
|
|
logger.exceptions.handle(
|
|
|
|
|
new winston.transports.File({
|
|
|
|
|
filename: './.log/frontserver-exceptions.log'
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
logger.info("Starting up... "); // log the current date so that the logfile is better to read.
|
|
|
|
|
main();
|
|
|
|
|
}
|
|
|
|
|