forked from svrjs/svrjs
Lint out the codebase
This commit is contained in:
parent
488bee1a95
commit
2f783ce1a2
13 changed files with 326 additions and 273 deletions
|
@ -272,7 +272,7 @@ function clientErrorHandler(err, socket) {
|
|||
http.STATUS_CODES[errorCode]
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")
|
||||
.replace(/>/g, ">"),
|
||||
)
|
||||
.replace(/{errorDesc}/g, serverHTTPErrorDescs[errorCode])
|
||||
.replace(
|
||||
|
@ -284,7 +284,7 @@ function clientErrorHandler(err, socket) {
|
|||
.replace(/\r\n/g, "<br/>")
|
||||
.replace(/\n/g, "<br/>")
|
||||
.replace(/\r/g, "<br/>")
|
||||
.replace(/ {2}/g, " ")
|
||||
.replace(/ {2}/g, " "),
|
||||
)
|
||||
.replace(
|
||||
/{server}/g,
|
||||
|
@ -296,7 +296,7 @@ function clientErrorHandler(err, socket) {
|
|||
)
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")
|
||||
.replace(/>/g, ">"),
|
||||
)
|
||||
.replace(
|
||||
/{contact}/g,
|
||||
|
@ -305,7 +305,7 @@ function clientErrorHandler(err, socket) {
|
|||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")
|
||||
.replace(/\./g, "[dot]")
|
||||
.replace(/@/g, "[at]")
|
||||
.replace(/@/g, "[at]"),
|
||||
)}`,
|
||||
);
|
||||
res.end();
|
||||
|
@ -377,11 +377,11 @@ function clientErrorHandler(err, socket) {
|
|||
}
|
||||
res.writeHead(errorCode, http.STATUS_CODES[errorCode], cheaders);
|
||||
res.write(
|
||||
(
|
||||
`<!DOCTYPE html><html><head><title>{errorMessage}</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>${defaultPageCSS}</style></head><body><h1>{errorMessage}</h1><p>{errorDesc}</p>${additionalError == 404
|
||||
`<!DOCTYPE html><html><head><title>{errorMessage}</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>${defaultPageCSS}</style></head><body><h1>{errorMessage}</h1><p>{errorDesc}</p>${
|
||||
additionalError == 404
|
||||
? ""
|
||||
: "<p>Additionally, a {additionalError} error occurred while loading an error page.</p>"}<p><i>{server}</i></p></body></html>`
|
||||
)
|
||||
: "<p>Additionally, a {additionalError} error occurred while loading an error page.</p>"
|
||||
}<p><i>{server}</i></p></body></html>`
|
||||
.replace(
|
||||
/{errorMessage}/g,
|
||||
errorCode.toString() +
|
||||
|
@ -438,16 +438,19 @@ function clientErrorHandler(err, socket) {
|
|||
process.reqcounter++;
|
||||
process.malformedcounter++;
|
||||
logFacilities.locmessage(
|
||||
`Somebody connected to ${config.secure && fromMain
|
||||
`Somebody connected to ${
|
||||
config.secure && fromMain
|
||||
? (typeof config.sport == "number" ? "port " : "socket ") + config.sport
|
||||
: (typeof config.port == "number" ? "port " : "socket ") +
|
||||
config.port}...`,
|
||||
: (typeof config.port == "number" ? "port " : "socket ") + config.port
|
||||
}...`,
|
||||
);
|
||||
logFacilities.reqmessage(
|
||||
`Client ${!reqip || reqip == ""
|
||||
`Client ${
|
||||
!reqip || reqip == ""
|
||||
? "[unknown client]"
|
||||
: reqip +
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")} sent invalid request.`,
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")
|
||||
} sent invalid request.`,
|
||||
);
|
||||
try {
|
||||
head = fs.existsSync("./.head")
|
||||
|
|
|
@ -33,16 +33,19 @@ function noproxyHandler(req, socket, head) {
|
|||
var reqport = socket.remotePort;
|
||||
process.reqcounter++;
|
||||
logFacilities.locmessage(
|
||||
`Somebody connected to ${config.secure
|
||||
`Somebody connected to ${
|
||||
config.secure
|
||||
? (typeof config.sport == "number" ? "port " : "socket ") + config.sport
|
||||
: (typeof config.port == "number" ? "port " : "socket ") +
|
||||
config.port}...`,
|
||||
: (typeof config.port == "number" ? "port " : "socket ") + config.port
|
||||
}...`,
|
||||
);
|
||||
logFacilities.reqmessage(
|
||||
`Client ${!reqip || reqip == ""
|
||||
`Client ${
|
||||
!reqip || reqip == ""
|
||||
? "[unknown client]"
|
||||
: reqip +
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")} wants to proxy ${req.url} through this server`,
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")
|
||||
} wants to proxy ${req.url} through this server`,
|
||||
);
|
||||
if (req.headers["user-agent"] != undefined)
|
||||
logFacilities.reqmessage("Client uses " + req.headers["user-agent"]);
|
||||
|
|
|
@ -39,16 +39,19 @@ function proxyHandler(req, socket, head) {
|
|||
var reqport = socket.remotePort;
|
||||
process.reqcounter++;
|
||||
logFacilities.locmessage(
|
||||
`Somebody connected to ${config.secure
|
||||
`Somebody connected to ${
|
||||
config.secure
|
||||
? (typeof config.sport == "number" ? "port " : "socket ") + config.sport
|
||||
: (typeof config.port == "number" ? "port " : "socket ") +
|
||||
config.port}...`,
|
||||
: (typeof config.port == "number" ? "port " : "socket ") + config.port
|
||||
}...`,
|
||||
);
|
||||
logFacilities.reqmessage(
|
||||
`Client ${!reqip || reqip == ""
|
||||
`Client ${
|
||||
!reqip || reqip == ""
|
||||
? "[unknown client]"
|
||||
: reqip +
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")} wants to proxy ${req.url} through this server`,
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")
|
||||
} wants to proxy ${req.url} through this server`,
|
||||
);
|
||||
if (req.headers["user-agent"] != undefined)
|
||||
logFacilities.reqmessage("Client uses " + req.headers["user-agent"]);
|
||||
|
|
|
@ -134,9 +134,7 @@ function requestHandler(req, res) {
|
|||
req.socket.remoteAddress == "::1" ||
|
||||
req.socket.remoteAddress == "::ffff:127.0.0.1" ||
|
||||
req.socket.remoteAddress == "127.0.0.1" ||
|
||||
req.socket.remoteAddress == "localhost" ||
|
||||
req.socket.remoteAddress == host ||
|
||||
req.socket.remoteAddress == "::ffff:" + host)
|
||||
req.socket.remoteAddress == "localhost")
|
||||
) {
|
||||
let headers = config.getCustomHeaders();
|
||||
res.writeHead(204, http.STATUS_CODES[204], headers);
|
||||
|
@ -204,10 +202,11 @@ function requestHandler(req, res) {
|
|||
req.isProxy = false;
|
||||
if (req.url[0] != "/" && req.url != "*") req.isProxy = true;
|
||||
logFacilities.locmessage(
|
||||
`Somebody connected to ${config.secure && fromMain
|
||||
`Somebody connected to ${
|
||||
config.secure && fromMain
|
||||
? (typeof config.sport == "number" ? "port " : "socket ") + config.sport
|
||||
: (typeof config.port == "number" ? "port " : "socket ") +
|
||||
config.port}...`,
|
||||
: (typeof config.port == "number" ? "port " : "socket ") + config.port
|
||||
}...`,
|
||||
);
|
||||
|
||||
if (req.socket == null) {
|
||||
|
@ -267,10 +266,13 @@ function requestHandler(req, res) {
|
|||
}
|
||||
|
||||
logFacilities.reqmessage(
|
||||
`Client ${!reqip || reqip == ""
|
||||
`Client ${
|
||||
!reqip || reqip == ""
|
||||
? "[unknown client]"
|
||||
: reqip +
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")} wants ${req.method == "GET"
|
||||
(reqport && reqport !== 0 && reqport != "" ? ":" + reqport : "")
|
||||
} wants ${
|
||||
req.method == "GET"
|
||||
? "content in "
|
||||
: req.method == "POST"
|
||||
? "to post content in "
|
||||
|
@ -280,7 +282,8 @@ function requestHandler(req, res) {
|
|||
? "to delete content in "
|
||||
: req.method == "PATCH"
|
||||
? "to patch content in "
|
||||
: "to access content using " + req.method + " method in "}${req.headers.host == undefined || req.isProxy ? "" : req.headers.host}${req.url}`,
|
||||
: "to access content using " + req.method + " method in "
|
||||
}${req.headers.host == undefined || req.isProxy ? "" : req.headers.host}${req.url}`,
|
||||
);
|
||||
if (req.headers["user-agent"] != undefined)
|
||||
logFacilities.reqmessage("Client uses " + req.headers["user-agent"]);
|
||||
|
@ -528,11 +531,11 @@ function requestHandler(req, res) {
|
|||
|
||||
res.writeHead(errorCode, http.STATUS_CODES[errorCode], cheaders);
|
||||
res.write(
|
||||
(
|
||||
`<!DOCTYPE html><html><head><title>{errorMessage}</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>${defaultPageCSS}</style></head><body><h1>{errorMessage}</h1><p>{errorDesc}</p>${additionalError == 404
|
||||
`<!DOCTYPE html><html><head><title>{errorMessage}</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>${defaultPageCSS}</style></head><body><h1>{errorMessage}</h1><p>{errorDesc}</p>${
|
||||
additionalError == 404
|
||||
? ""
|
||||
: "<p>Additionally, a {additionalError} error occurred while loading an error page.</p>"}<p><i>{server}</i></p></body></html>`
|
||||
)
|
||||
: "<p>Additionally, a {additionalError} error occurred while loading an error page.</p>"
|
||||
}<p><i>{server}</i></p></body></html>`
|
||||
.replace(
|
||||
/{errorMessage}/g,
|
||||
errorCode.toString() +
|
||||
|
|
86
src/index.js
86
src/index.js
|
@ -657,8 +657,7 @@ if (!disableMods) {
|
|||
if (mod.modInfo) modInfos.push(mod.modInfo);
|
||||
else {
|
||||
modInfos.push({
|
||||
name:
|
||||
`Unknown mod (${modFileRaw}; module.exports.modInfo not set)`,
|
||||
name: `Unknown mod (${modFileRaw}; module.exports.modInfo not set)`,
|
||||
version: "ERROR",
|
||||
});
|
||||
}
|
||||
|
@ -772,12 +771,15 @@ if (!disableMods) {
|
|||
if (fs.existsSync(SSJSPath) && fs.statSync(SSJSPath).isFile()) {
|
||||
try {
|
||||
// Prepend necessary modules and variables to the custom server side script
|
||||
const modhead =
|
||||
`var readline = require('readline');\r\nvar os = require('os');\r\nvar http = require('http');\r\nvar url = require('url');\r\nvar fs = require('fs');\r\nvar path = require('path');\r\n${hexstrbase64 === undefined
|
||||
const modhead = `var readline = require('readline');\r\nvar os = require('os');\r\nvar http = require('http');\r\nvar url = require('url');\r\nvar fs = require('fs');\r\nvar path = require('path');\r\n${
|
||||
hexstrbase64 === undefined
|
||||
? ""
|
||||
: "var hexstrbase64 = require('../hexstrbase64/index.js');\r\n"}${crypto.__disabled__ === undefined
|
||||
: "var hexstrbase64 = require('../hexstrbase64/index.js');\r\n"
|
||||
}${
|
||||
crypto.__disabled__ === undefined
|
||||
? "var crypto = require('crypto');\r\nvar https = require('https');\r\n"
|
||||
: ""}var stream = require(\'stream\');\r\nvar customvar1;\r\nvar customvar2;\r\nvar customvar3;\r\nvar customvar4;\r\n\r\nfunction Mod() {}\r\nMod.prototype.callback = function callback(req, res, serverconsole, responseEnd, href, ext, uobject, search, defaultpage, users, page404, head, foot, fd, elseCallback, configJSON, callServerError, getCustomHeaders, origHref, redirect, parsePostData, authUser) {\r\nreturn function () {\r\nvar disableEndElseCallbackExecute = false;\r\nfunction filterHeaders(e){var r={};return Object.keys(e).forEach((function(t){null!==e[t]&&void 0!==e[t]&&("object"==typeof e[t]?r[t]=JSON.parse(JSON.stringify(e[t])):r[t]=e[t])})),r}\r\nfunction checkHostname(e){if(void 0===e||"*"==e)return!0;if(req.headers.host&&0==e.indexOf("*.")&&"*."!=e){var r=e.substring(2);if(req.headers.host==r||req.headers.host.indexOf("."+r)==req.headers.host.length-r.length-1)return!0}else if(req.headers.host&&req.headers.host==e)return!0;return!1}\r\nfunction checkHref(e){return href==e||"win32"==os.platform()&&href.toLowerCase()==e.toLowerCase()}\r\n`;
|
||||
: ""
|
||||
}var stream = require(\'stream\');\r\nvar customvar1;\r\nvar customvar2;\r\nvar customvar3;\r\nvar customvar4;\r\n\r\nfunction Mod() {}\r\nMod.prototype.callback = function callback(req, res, serverconsole, responseEnd, href, ext, uobject, search, defaultpage, users, page404, head, foot, fd, elseCallback, configJSON, callServerError, getCustomHeaders, origHref, redirect, parsePostData, authUser) {\r\nreturn function () {\r\nvar disableEndElseCallbackExecute = false;\r\nfunction filterHeaders(e){var r={};return Object.keys(e).forEach((function(t){null!==e[t]&&void 0!==e[t]&&("object"==typeof e[t]?r[t]=JSON.parse(JSON.stringify(e[t])):r[t]=e[t])})),r}\r\nfunction checkHostname(e){if(void 0===e||"*"==e)return!0;if(req.headers.host&&0==e.indexOf("*.")&&"*."!=e){var r=e.substring(2);if(req.headers.host==r||req.headers.host.indexOf("."+r)==req.headers.host.length-r.length-1)return!0}else if(req.headers.host&&req.headers.host==e)return!0;return!1}\r\nfunction checkHref(e){return href==e||"win32"==os.platform()&&href.toLowerCase()==e.toLowerCase()}\r\n`;
|
||||
const modfoot =
|
||||
"\r\nif(!disableEndElseCallbackExecute) {\r\ntry{\r\nelseCallback();\r\n} catch(err) {\r\n}\r\n}\r\n}\r\n}\r\nmodule.exports = Mod;";
|
||||
// Write the modified server side script to the temp folder
|
||||
|
@ -872,9 +874,11 @@ function listeningMessage() {
|
|||
if (process.serverConfig.secure && (sListenToLocalhost || sListenToAny)) {
|
||||
if (typeof process.serverConfig.sport === "number") {
|
||||
serverconsole.locmessage(
|
||||
`* https://localhost${process.serverConfig.sport == 443
|
||||
`* https://localhost${
|
||||
process.serverConfig.sport == 443
|
||||
? ""
|
||||
: ":" + process.serverConfig.sport}`,
|
||||
: ":" + process.serverConfig.sport
|
||||
}`,
|
||||
);
|
||||
} else {
|
||||
serverconsole.locmessage("* " + process.serverConfig.sport); // Unix socket or Windows named pipe
|
||||
|
@ -889,9 +893,9 @@ function listeningMessage() {
|
|||
) {
|
||||
if (typeof process.serverConfig.port === "number") {
|
||||
serverconsole.locmessage(
|
||||
`* http://localhost${process.serverConfig.port == 80
|
||||
? ""
|
||||
: ":" + process.serverConfig.port}`,
|
||||
`* http://localhost${
|
||||
process.serverConfig.port == 80 ? "" : ":" + process.serverConfig.port
|
||||
}`,
|
||||
);
|
||||
} else {
|
||||
serverconsole.locmessage("* " + process.serverConfig.port); // Unix socket or Windows named pipe
|
||||
|
@ -904,9 +908,11 @@ function listeningMessage() {
|
|||
(!sListenToAny || (host != "" && host != "[offline]"))
|
||||
)
|
||||
serverconsole.locmessage(
|
||||
`* https://${sAccHost.indexOf(":") > -1 ? "[" + sAccHost + "]" : sAccHost}${process.serverConfig.sport == 443
|
||||
`* https://${sAccHost.indexOf(":") > -1 ? "[" + sAccHost + "]" : sAccHost}${
|
||||
process.serverConfig.sport == 443
|
||||
? ""
|
||||
: ":" + process.serverConfig.sport}`,
|
||||
: ":" + process.serverConfig.sport
|
||||
}`,
|
||||
);
|
||||
if (
|
||||
!(
|
||||
|
@ -918,17 +924,19 @@ function listeningMessage() {
|
|||
typeof process.serverConfig.port === "number"
|
||||
)
|
||||
serverconsole.locmessage(
|
||||
`* http://${accHost.indexOf(":") > -1 ? "[" + accHost + "]" : accHost}${process.serverConfig.port == 80
|
||||
? ""
|
||||
: ":" + process.serverConfig.port}`,
|
||||
`* http://${accHost.indexOf(":") > -1 ? "[" + accHost + "]" : accHost}${
|
||||
process.serverConfig.port == 80 ? "" : ":" + process.serverConfig.port
|
||||
}`,
|
||||
);
|
||||
ipStatusCallback(() => {
|
||||
if (pubip != "") {
|
||||
if (process.serverConfig.secure && !sListenToLocalhost)
|
||||
serverconsole.locmessage(
|
||||
`* https://${pubip.indexOf(":") > -1 ? "[" + pubip + "]" : pubip}${process.serverConfig.spubport == 443
|
||||
`* https://${pubip.indexOf(":") > -1 ? "[" + pubip + "]" : pubip}${
|
||||
process.serverConfig.spubport == 443
|
||||
? ""
|
||||
: ":" + process.serverConfig.spubport}`,
|
||||
: ":" + process.serverConfig.spubport
|
||||
}`,
|
||||
);
|
||||
if (
|
||||
!(
|
||||
|
@ -938,17 +946,21 @@ function listeningMessage() {
|
|||
!listenToLocalhost
|
||||
)
|
||||
serverconsole.locmessage(
|
||||
`* http://${pubip.indexOf(":") > -1 ? "[" + pubip + "]" : pubip}${process.serverConfig.pubport == 80
|
||||
`* http://${pubip.indexOf(":") > -1 ? "[" + pubip + "]" : pubip}${
|
||||
process.serverConfig.pubport == 80
|
||||
? ""
|
||||
: ":" + process.serverConfig.pubport}`,
|
||||
: ":" + process.serverConfig.pubport
|
||||
}`,
|
||||
);
|
||||
}
|
||||
if (domain != "") {
|
||||
if (process.serverConfig.secure && !sListenToLocalhost)
|
||||
serverconsole.locmessage(
|
||||
`* https://${domain}${process.serverConfig.spubport == 443
|
||||
`* https://${domain}${
|
||||
process.serverConfig.spubport == 443
|
||||
? ""
|
||||
: ":" + process.serverConfig.spubport}`,
|
||||
: ":" + process.serverConfig.spubport
|
||||
}`,
|
||||
);
|
||||
if (
|
||||
!(
|
||||
|
@ -958,9 +970,11 @@ function listeningMessage() {
|
|||
!listenToLocalhost
|
||||
)
|
||||
serverconsole.locmessage(
|
||||
`* http://${domain}${process.serverConfig.pubport == 80
|
||||
`* http://${domain}${
|
||||
process.serverConfig.pubport == 80
|
||||
? ""
|
||||
: ":" + process.serverConfig.pubport}`,
|
||||
: ":" + process.serverConfig.pubport
|
||||
}`,
|
||||
);
|
||||
}
|
||||
serverconsole.locmessage('For CLI help, you can type "help"');
|
||||
|
@ -1248,9 +1262,7 @@ let commands = {
|
|||
mods: (args, log) => {
|
||||
log("Mods:");
|
||||
for (let i = 0; i < modInfos.length; i++) {
|
||||
log(
|
||||
`${(i + 1).toString()}. ${modInfos[i].name} ${modInfos[i].version}`,
|
||||
);
|
||||
log(`${(i + 1).toString()}. ${modInfos[i].name} ${modInfos[i].version}`);
|
||||
}
|
||||
if (modInfos.length == 0) {
|
||||
log("No mods installed.");
|
||||
|
@ -1823,23 +1835,27 @@ function start(init) {
|
|||
)
|
||||
)
|
||||
serverconsole.locmessage(
|
||||
`Starting HTTP server at ${typeof process.serverConfig.port == "number"
|
||||
`Starting HTTP server at ${
|
||||
typeof process.serverConfig.port == "number"
|
||||
? listenAddress
|
||||
? (listenAddress.indexOf(":") > -1
|
||||
? "[" + listenAddress + "]"
|
||||
: listenAddress) + ":"
|
||||
: "port "
|
||||
: ""}${process.serverConfig.port.toString()}...`,
|
||||
: ""
|
||||
}${process.serverConfig.port.toString()}...`,
|
||||
);
|
||||
if (process.serverConfig.secure)
|
||||
serverconsole.locmessage(
|
||||
`Starting HTTPS server at ${typeof process.serverConfig.sport == "number"
|
||||
`Starting HTTPS server at ${
|
||||
typeof process.serverConfig.sport == "number"
|
||||
? sListenAddress
|
||||
? (sListenAddress.indexOf(":") > -1
|
||||
? "[" + sListenAddress + "]"
|
||||
: sListenAddress) + ":"
|
||||
: "port "
|
||||
: ""}${process.serverConfig.sport.toString()}...`,
|
||||
: ""
|
||||
}${process.serverConfig.sport.toString()}...`,
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -1997,9 +2013,7 @@ function start(init) {
|
|||
}
|
||||
} catch (err) {
|
||||
if (line != "") {
|
||||
process.send(
|
||||
`Can't execute command \"${line.split(" ")[0]}".`,
|
||||
);
|
||||
process.send(`Can't execute command \"${line.split(" ")[0]}".`);
|
||||
process.send("\x12END");
|
||||
}
|
||||
}
|
||||
|
@ -2065,9 +2079,7 @@ function start(init) {
|
|||
cluster.workers[clusterID].removeAllListeners("message");
|
||||
addListenersToWorker(cluster.workers[clusterID]);
|
||||
}
|
||||
serverconsole.climessage(
|
||||
`Can't run command "${command}".`,
|
||||
);
|
||||
serverconsole.climessage(`Can't run command "${command}".`);
|
||||
}
|
||||
});
|
||||
if (command == "stop") {
|
||||
|
|
|
@ -12,7 +12,10 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
`<!DOCTYPE html><html><head><title>Proxy not implemented</title><meta name="viewport" content="width=device-width, initial-scale=1.0" /><style>${defaultPageCSS}</style></head><body><h1>Proxy not implemented</h1><p>${name
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")} doesn't support proxy without proxy mod. If you're administator of this server, then install this mod in order to use ${name
|
||||
.replace(
|
||||
/>/g,
|
||||
">",
|
||||
)} doesn't support proxy without proxy mod. If you're administator of this server, then install this mod in order to use ${name
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")} as a proxy.</p><p><i>${config
|
||||
|
|
|
@ -269,10 +269,11 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
const authorizedCallback = (bruteProtection) => {
|
||||
try {
|
||||
const ha = config.getCustomHeaders();
|
||||
ha["WWW-Authenticate"] =
|
||||
`Basic realm="${authcode.realm
|
||||
ha["WWW-Authenticate"] = `Basic realm="${
|
||||
authcode.realm
|
||||
? authcode.realm.replace(/(\\|")/g, "\\$1")
|
||||
: name + " HTTP Basic Authorization"}", charset="UTF-8"`;
|
||||
: name + " HTTP Basic Authorization"
|
||||
}", charset="UTF-8"`;
|
||||
const credentials = req.headers["authorization"];
|
||||
if (!credentials) {
|
||||
res.error(401, ha);
|
||||
|
|
|
@ -86,18 +86,18 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
return;
|
||||
}
|
||||
if (rewrittenURL != req.url) {
|
||||
logFacilities.resmessage(
|
||||
`URL rewritten: ${req.url} => ${rewrittenURL}`,
|
||||
);
|
||||
logFacilities.resmessage(`URL rewritten: ${req.url} => ${rewrittenURL}`);
|
||||
req.url = rewrittenURL;
|
||||
try {
|
||||
req.parsedURL = new URL(
|
||||
req.url,
|
||||
`http${req.socket.encrypted ? "s" : ""}://${req.headers.host
|
||||
`http${req.socket.encrypted ? "s" : ""}://${
|
||||
req.headers.host
|
||||
? req.headers.host
|
||||
: config.domain
|
||||
? config.domain
|
||||
: "unknown.invalid"}`,
|
||||
: "unknown.invalid"
|
||||
}`,
|
||||
);
|
||||
} catch (err) {
|
||||
res.error(400, err);
|
||||
|
@ -131,11 +131,13 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
try {
|
||||
req.parsedURL = new URL(
|
||||
req.url,
|
||||
`http${req.socket.encrypted ? "s" : ""}://${req.headers.host
|
||||
`http${req.socket.encrypted ? "s" : ""}://${
|
||||
req.headers.host
|
||||
? req.headers.host
|
||||
: config.domain
|
||||
? config.domain
|
||||
: "unknown.invalid"}`,
|
||||
: "unknown.invalid"
|
||||
}`,
|
||||
);
|
||||
} catch (err) {
|
||||
res.error(400, err);
|
||||
|
|
|
@ -580,8 +580,8 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
);
|
||||
|
||||
// Generate HTML head and footer based on configuration and custom content
|
||||
let htmlHead =
|
||||
`${(!config.enableDirectoryListingWithDefaultHead || res.head == ""
|
||||
let htmlHead = `${
|
||||
(!config.enableDirectoryListingWithDefaultHead || res.head == ""
|
||||
? !headerHasHTMLTag
|
||||
? "<!DOCTYPE html><html><head><title>Directory: " +
|
||||
decodeURIComponent(origHref)
|
||||
|
@ -598,7 +598,7 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">") +
|
||||
"</title>"
|
||||
"</title>",
|
||||
)
|
||||
: res.head.replace(
|
||||
/<head>/i,
|
||||
|
@ -607,31 +607,39 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">") +
|
||||
"</title>"
|
||||
)) +
|
||||
(!headerHasHTMLTag ? customDirListingHeader : "")}<h1>Directory: ${decodeURIComponent(origHref)
|
||||
"</title>",
|
||||
)) + (!headerHasHTMLTag ? customDirListingHeader : "")
|
||||
}<h1>Directory: ${decodeURIComponent(origHref)
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</h1><table id="directoryListing"> <tr> <th></th> <th>Filename</th> <th>Size</th> <th>Date</th> </tr>${checkPathLevel(decodeURIComponent(origHref)) < 1
|
||||
.replace(
|
||||
/>/g,
|
||||
">",
|
||||
)}</h1><table id="directoryListing"> <tr> <th></th> <th>Filename</th> <th>Size</th> <th>Date</th> </tr>${
|
||||
checkPathLevel(decodeURIComponent(origHref)) < 1
|
||||
? ""
|
||||
: '<tr><td style="width: 24px;"><img src="/.dirimages/return.png" width="24px" height="24px" alt="[RET]" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="' +
|
||||
origHref.replace(/\/+/g, "/").replace(/\/[^\/]*\/?$/, "/") +
|
||||
'">Return</a></td><td></td><td></td></tr>'}`;
|
||||
'">Return</a></td><td></td><td></td></tr>'
|
||||
}`;
|
||||
|
||||
let htmlFoot =
|
||||
`</table><p><i>${config
|
||||
let htmlFoot = `</table><p><i>${config
|
||||
.generateServerString()
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}${req.headers.host == undefined
|
||||
.replace(/>/g, ">")}${
|
||||
req.headers.host == undefined
|
||||
? ""
|
||||
: " on " +
|
||||
String(req.headers.host)
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</i></p>${customDirListingFooter}${!config.enableDirectoryListingWithDefaultHead || res.foot == ""
|
||||
.replace(/>/g, ">")
|
||||
}</i></p>${customDirListingFooter}${
|
||||
!config.enableDirectoryListingWithDefaultHead || res.foot == ""
|
||||
? "</body></html>"
|
||||
: res.foot}`;
|
||||
: res.foot
|
||||
}`;
|
||||
|
||||
if (
|
||||
fs.existsSync(
|
||||
|
@ -736,26 +744,34 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
const emime = eext ? mime.contentType(eext) : false;
|
||||
if (filelist[i].errored) {
|
||||
directoryListingRows.push(
|
||||
`<tr><td style="width: 24px;"><img src="/.dirimages/bad.png" alt="[BAD]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(href + "/" + encodeURI(ename)).replace(
|
||||
/\/+/g,
|
||||
"/"
|
||||
)}">${ename
|
||||
`<tr><td style="width: 24px;"><img src="/.dirimages/bad.png" alt="[BAD]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(
|
||||
href +
|
||||
"/" +
|
||||
encodeURI(ename)
|
||||
).replace(/\/+/g, "/")}">${ename
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</a></td><td>-</td><td>${estats ? estats.mtime.toDateString() : "-"}</td></tr>\r\n`,
|
||||
.replace(
|
||||
/>/g,
|
||||
">",
|
||||
)}</a></td><td>-</td><td>${estats ? estats.mtime.toDateString() : "-"}</td></tr>\r\n`,
|
||||
);
|
||||
} else {
|
||||
let entry =
|
||||
`<tr><td style="width: 24px;"><img src="[img]" alt="[alt]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(
|
||||
let entry = `<tr><td style="width: 24px;"><img src="[img]" alt="[alt]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(
|
||||
origHref +
|
||||
"/" +
|
||||
encodeURIComponent(ename)
|
||||
).replace(/\/+/g, "/")}${estats.isDirectory() ? "/" : ""}">${ename
|
||||
).replace(
|
||||
/\/+/g,
|
||||
"/",
|
||||
)}${estats.isDirectory() ? "/" : ""}">${ename
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</a></td><td>${estats.isDirectory()
|
||||
.replace(/>/g, ">")}</a></td><td>${
|
||||
estats.isDirectory()
|
||||
? "-"
|
||||
: sizify(estats.size.toString())}</td><td>${estats.mtime.toDateString()}</td></tr>\r\n`;
|
||||
: sizify(estats.size.toString())
|
||||
}</td><td>${estats.mtime.toDateString()}</td></tr>\r\n`;
|
||||
|
||||
// Determine the file type and set the appropriate image and alt text
|
||||
if (estats.isDirectory()) {
|
||||
|
@ -763,15 +779,17 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
.replace("[img]", "/.dirimages/directory.png")
|
||||
.replace("[alt]", "[DIR]");
|
||||
} else if (!estats.isFile()) {
|
||||
entry =
|
||||
`<tr><td style="width: 24px;"><img src="[img]" alt="[alt]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(
|
||||
entry = `<tr><td style="width: 24px;"><img src="[img]" alt="[alt]" width="24px" height="24px" /></td><td style="word-wrap: break-word; word-break: break-word; overflow-wrap: break-word;"><a href="${(
|
||||
origHref +
|
||||
"/" +
|
||||
encodeURIComponent(ename)
|
||||
).replace(/\/+/g, "/")}">${ename
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</a></td><td>-</td><td>${estats.mtime.toDateString()}</td></tr>\r\n`;
|
||||
.replace(
|
||||
/>/g,
|
||||
">",
|
||||
)}</a></td><td>-</td><td>${estats.mtime.toDateString()}</td></tr>\r\n`;
|
||||
|
||||
// Determine the special file types (block device, character device, etc.)
|
||||
if (estats.isBlockDevice()) {
|
||||
|
|
|
@ -31,40 +31,38 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
"Server version: " + config.generateServerString() + "<br/><hr/>";
|
||||
|
||||
//Those entries are just dates and numbers converted/formatted to strings, so no escaping is needed.
|
||||
statusBody +=
|
||||
`Current time: ${new Date().toString()}<br/>Thread start time: ${new Date(new Date() - process.uptime() * 1000).toString()}<br/>Thread uptime: ${formatRelativeTime(Math.floor(process.uptime()))}<br/>`;
|
||||
statusBody += `Current time: ${new Date().toString()}<br/>Thread start time: ${new Date(new Date() - process.uptime() * 1000).toString()}<br/>Thread uptime: ${formatRelativeTime(Math.floor(process.uptime()))}<br/>`;
|
||||
statusBody += `OS uptime: ${formatRelativeTime(os.uptime())}<br/>`;
|
||||
statusBody += `Total request count: ${process.reqcounter}<br/>`;
|
||||
statusBody +=
|
||||
`Average request rate: ${Math.round((process.reqcounter / process.uptime()) * 100) / 100} requests/s<br/>`;
|
||||
statusBody += `Average request rate: ${Math.round((process.reqcounter / process.uptime()) * 100) / 100} requests/s<br/>`;
|
||||
statusBody += `Client errors (4xx): ${process.err4xxcounter}<br/>`;
|
||||
statusBody += `Server errors (5xx): ${process.err5xxcounter}<br/>`;
|
||||
statusBody +=
|
||||
`Average error rate: ${Math.round(
|
||||
statusBody += `Average error rate: ${
|
||||
Math.round(
|
||||
((process.err4xxcounter + process.err5xxcounter) / process.reqcounter) *
|
||||
10000
|
||||
) /
|
||||
100}%<br/>`;
|
||||
10000,
|
||||
) / 100
|
||||
}%<br/>`;
|
||||
statusBody += `Malformed HTTP requests: ${process.malformedcounter}`;
|
||||
if (process.memoryUsage)
|
||||
statusBody +=
|
||||
`<br/>Memory usage of thread: ${sizify(process.memoryUsage().rss, true)}B`;
|
||||
statusBody += `<br/>Memory usage of thread: ${sizify(process.memoryUsage().rss, true)}B`;
|
||||
if (process.cpuUsage)
|
||||
statusBody +=
|
||||
`<br/>Total CPU usage by thread: u${process.cpuUsage().user / 1000}ms s${process.cpuUsage().system / 1000}ms - ${Math.round(
|
||||
statusBody += `<br/>Total CPU usage by thread: u${process.cpuUsage().user / 1000}ms s${process.cpuUsage().system / 1000}ms - ${
|
||||
Math.round(
|
||||
((process.cpuUsage().user + process.cpuUsage().system) /
|
||||
1000000 /
|
||||
process.uptime()) *
|
||||
1000
|
||||
) /
|
||||
1000}%`;
|
||||
1000,
|
||||
) / 1000
|
||||
}%`;
|
||||
statusBody += `<br/>Thread PID: ${process.pid}<br/>`;
|
||||
|
||||
res.writeHead(200, http.STATUS_CODES[200], {
|
||||
"Content-Type": "text/html; charset=utf-8",
|
||||
});
|
||||
res.end(
|
||||
`${res.head == ""
|
||||
`${
|
||||
res.head == ""
|
||||
? "<!DOCTYPE html><html><head><title>" +
|
||||
name
|
||||
.replace(/&/g, "&")
|
||||
|
@ -96,17 +94,20 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")) +
|
||||
"</title>"
|
||||
)}<h1>${name
|
||||
"</title>",
|
||||
)
|
||||
}<h1>${name
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")} status${req.headers.host == undefined
|
||||
.replace(/>/g, ">")} status${
|
||||
req.headers.host == undefined
|
||||
? ""
|
||||
: " for " +
|
||||
String(req.headers.host)
|
||||
.replace(/&/g, "&")
|
||||
.replace(/</g, "<")
|
||||
.replace(/>/g, ">")}</h1>${statusBody}${res.foot == "" ? "</body></html>" : res.foot}`,
|
||||
.replace(/>/g, ">")
|
||||
}</h1>${statusBody}${res.foot == "" ? "</body></html>" : res.foot}`,
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -13,19 +13,19 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
if (req.parsedURL.pathname != sanitizedHref && !req.isProxy) {
|
||||
let sanitizedURL =
|
||||
sanitizedHref + req.parsedURL.search + req.parsedURL.hash;
|
||||
logFacilities.resmessage(
|
||||
`URL sanitized: ${req.url} => ${sanitizedURL}`,
|
||||
);
|
||||
logFacilities.resmessage(`URL sanitized: ${req.url} => ${sanitizedURL}`);
|
||||
if (config.rewriteDirtyURLs) {
|
||||
req.url = sanitizedURL;
|
||||
try {
|
||||
req.parsedURL = new URL(
|
||||
req.url,
|
||||
`http${req.socket.encrypted ? "s" : ""}://${req.headers.host
|
||||
`http${req.socket.encrypted ? "s" : ""}://${
|
||||
req.headers.host
|
||||
? req.headers.host
|
||||
: config.domain
|
||||
? config.domain
|
||||
: "unknown.invalid"}`,
|
||||
: "unknown.invalid"
|
||||
}`,
|
||||
);
|
||||
} catch (err) {
|
||||
res.error(400, err);
|
||||
|
@ -36,9 +36,7 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
return;
|
||||
}
|
||||
} else if (req.url != preparedReqUrl && !req.isProxy) {
|
||||
logFacilities.resmessage(
|
||||
`URL sanitized: ${req.url} => ${preparedReqUrl}`,
|
||||
);
|
||||
logFacilities.resmessage(`URL sanitized: ${req.url} => ${preparedReqUrl}`);
|
||||
if (config.rewriteDirtyURLs) {
|
||||
req.url = preparedReqUrl;
|
||||
} else {
|
||||
|
|
|
@ -80,11 +80,13 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
try {
|
||||
req.parsedURL = new URL(
|
||||
req.url,
|
||||
`http${req.socket.encrypted ? "s" : ""}://${req.headers.host
|
||||
`http${req.socket.encrypted ? "s" : ""}://${
|
||||
req.headers.host
|
||||
? req.headers.host
|
||||
: config.domain
|
||||
? config.domain
|
||||
: "unknown.invalid"}`,
|
||||
: "unknown.invalid"
|
||||
}`,
|
||||
);
|
||||
} catch (err) {
|
||||
res.error(400, err);
|
||||
|
@ -118,11 +120,13 @@ module.exports = (req, res, logFacilities, config, next) => {
|
|||
try {
|
||||
req.parsedURL = new URL(
|
||||
req.url,
|
||||
`http${req.socket.encrypted ? "s" : ""}://${req.headers.host
|
||||
`http${req.socket.encrypted ? "s" : ""}://${
|
||||
req.headers.host
|
||||
? req.headers.host
|
||||
: config.domain
|
||||
? config.domain
|
||||
: "unknown.invalid"}`,
|
||||
: "unknown.invalid"
|
||||
}`,
|
||||
);
|
||||
} catch (err) {
|
||||
res.error(400, err);
|
||||
|
|
|
@ -4,9 +4,11 @@ const getOS = require("./getOS.js");
|
|||
|
||||
function generateServerString(exposeServerVersion) {
|
||||
return exposeServerVersion
|
||||
? `${name.replace(/ /g, "-")}/${version} (${getOS()}; ${process.isBun
|
||||
? `${name.replace(/ /g, "-")}/${version} (${getOS()}; ${
|
||||
process.isBun
|
||||
? "Bun/v" + process.versions.bun + "; like Node.JS/" + process.version
|
||||
: "Node.JS/" + process.version})`
|
||||
: "Node.JS/" + process.version
|
||||
})`
|
||||
: name.replace(/ /g, "-");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue