Update to RedBrick 2.5.4

This commit is contained in:
Dorian Niemiec 2024-02-07 01:32:16 +01:00
parent 0d67e50463
commit f9f3c414bf
2 changed files with 48 additions and 9 deletions

View file

@ -38,12 +38,41 @@ var disableModExposeSupported = process.versions.svrjs && process.versions.svrjs
function Mod() {}
Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, ext, uobject, search, defaultpage, users, page404, head, foot, fd, elseCallback, configJSON, callServerError, getCustomHeaders, origHref, redirect, parsePostData) {
Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, ext, uobject, search, defaultpage, users, page404, head, foot, fd, elseCallback, configJSON, callServerError, getCustomHeaders, origHref, redirect, parsePostData, authUser) {
return function () {
if (!configJSON) {
configJSON = configJSONS;
}
function checkIfThereIsA401Rule() {
var actually401 = false;
function createRegex(regex) {
var regexObj = regex.split("/");
if (regexObj.length == 0) throw new Error("Invalid regex!");
var modifiers = regexObj.pop();
regexObj.shift();
var searchString = regexObj.join("/");
return new RegExp(searchString, modifiers);
}
if(configJSON.nonStandardCodes) {
configJSON.nonStandardCodes.every(function (nonscode) {
if (nonscode.scode == 401) {
if (nonscode.regex && (req.url.match(createRegex(nonscode.regex)) || href.match(createRegex(nonscode.regex)))) {
actually401 = true;
return true;
} else if (nonscode.url && (nonStandardCodes[i].url == href || (os.platform() == "win32" && nonStandardCodes[i].url.toLowerCase() == href.toLowerCase()))) {
actually401 = true;
return true;
}
}
return false;
});
}
return actually401;
}
if (!getCustomHeaders) {
var bheaders = JSON.parse(JSON.stringify(configJSON.customHeaders));
} else {
@ -286,10 +315,15 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
}
}
function executeCGIWithEnv(a, b, req, res, pubip, port, software, dh) {
function executeCGIWithEnv(a, b, req, res, pubip, port, software, dh, user) {
// Function to set up environment variables and execute CGI scripts
var nEnv = {};
if (req.headers.authorization) {
if (typeof user != "undefined") {
if (user !== null) {
if (req.headers.authorization) nEnv["AUTH_TYPE"] = req.headers.authorization.split(" ")[0];
nEnv["REMOTE_USER"] = user;
}
} else if (req.headers.authorization && (typeof checkIfThereIsA401Rule == "undefined" || checkIfThereIsA401Rule())) {
nEnv["AUTH_TYPE"] = req.headers.authorization.split(" ")[0];
if (nEnv["AUTH_TYPE"] == "Basic") {
var remoteCred = req.headers.authorization.split(" ")[1];
@ -399,7 +433,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
process.version +
") RedBrick/" +
version,
bheaders
bheaders,
authUser
);
} catch (ex) {
if (!callServerError) {
@ -450,7 +485,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
process.version +
") RedBrick/" +
version,
bheaders
bheaders,
authUser
);
} catch (ex) {
if (!callServerError) {
@ -509,7 +545,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
process.version +
") RedBrick/" +
version,
bheaders
bheaders,
authUser
);
} catch (ex) {
if (!callServerError) {
@ -566,7 +603,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
process.version +
") RedBrick/" +
version,
bheaders
bheaders,
authUser
);
} catch (ex) {
if (!callServerError) {
@ -647,7 +685,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
process.version +
") RedBrick/" +
version,
bheaders
bheaders,
authUser
);
} catch (ex) {
if (!callServerError) {

View file

@ -1,4 +1,4 @@
{
"name": "RedBrick CGI engine for SVR.JS",
"version": "2.5.3"
"version": "2.5.4"
}