Update to OrangeCircle 1.1.2
This commit is contained in:
parent
d223d9547a
commit
a8617d0be3
2 changed files with 40 additions and 5 deletions
43
index.js
43
index.js
|
@ -35,12 +35,41 @@ var disableModExposeSupported = process.versions.svrjs && process.versions.svrjs
|
||||||
|
|
||||||
function Mod() {}
|
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 () {
|
return function () {
|
||||||
if (!configJSON) {
|
if (!configJSON) {
|
||||||
configJSON = configJSONS;
|
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) {
|
if (!getCustomHeaders) {
|
||||||
var bheaders = JSON.parse(JSON.stringify(configJSON.customHeaders));
|
var bheaders = JSON.parse(JSON.stringify(configJSON.customHeaders));
|
||||||
} else {
|
} else {
|
||||||
|
@ -171,11 +200,16 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function executeSCGIWithEnv(a, req, res, pubip, port, software, dh) {
|
function executeSCGIWithEnv(a, req, res, pubip, port, software, dh, user) {
|
||||||
// Function to set up environment variables and execute sCGI scripts
|
// Function to set up environment variables and execute sCGI scripts
|
||||||
var b = href.replace(scgiConf.path,"")
|
var b = href.replace(scgiConf.path,"")
|
||||||
var nEnv = {};
|
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];
|
nEnv["AUTH_TYPE"] = req.headers.authorization.split(" ")[0];
|
||||||
if (nEnv["AUTH_TYPE"] == "Basic") {
|
if (nEnv["AUTH_TYPE"] == "Basic") {
|
||||||
var remoteCred = req.headers.authorization.split(" ")[1];
|
var remoteCred = req.headers.authorization.split(" ")[1];
|
||||||
|
@ -251,7 +285,8 @@ Mod.prototype.callback = function (req, res, serverconsole, responseEnd, href, e
|
||||||
process.version +
|
process.version +
|
||||||
") OrangeCircle/" +
|
") OrangeCircle/" +
|
||||||
version,
|
version,
|
||||||
bheaders
|
bheaders,
|
||||||
|
authUser
|
||||||
);
|
);
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
if (!callServerError) {
|
if (!callServerError) {
|
||||||
|
|
2
mod.info
2
mod.info
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"name": "OrangeCircle SCGI client for SVR.JS",
|
"name": "OrangeCircle SCGI client for SVR.JS",
|
||||||
"version": "1.1.1"
|
"version": "1.1.2"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue