mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge branch 'pr_2551' into dev
This commit is contained in:
commit
1b497b340b
@ -47,7 +47,14 @@
|
|||||||
"now-running": "Server now running at __listenpath__",
|
"now-running": "Server now running at __listenpath__",
|
||||||
"failed-to-start": "Failed to start server:",
|
"failed-to-start": "Failed to start server:",
|
||||||
"headless-mode": "Running in headless mode",
|
"headless-mode": "Running in headless mode",
|
||||||
"httpadminauth-deprecated": "use of httpAdminAuth is deprecated. Use adminAuth instead"
|
"httpadminauth-deprecated": "use of httpAdminAuth is deprecated. Use adminAuth instead",
|
||||||
|
"https": {
|
||||||
|
"refresh-interval": "Refreshing https settings every __interval__ hours",
|
||||||
|
"settings-refreshed": "Server https settings have been refreshed",
|
||||||
|
"refresh-failed": "Failed to refresh https settings: __message__",
|
||||||
|
"nodejs-version": "httpsRefreshInterval requires Node.js 11 or later",
|
||||||
|
"function-required": "httpsRefreshInterval requires https property to be a function"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"api": {
|
"api": {
|
||||||
|
155
packages/node_modules/node-red/red.js
vendored
155
packages/node_modules/node-red/red.js
vendored
@ -175,14 +175,62 @@ if (process.env.NODE_RED_ENABLE_PROJECTS) {
|
|||||||
settings.editorTheme.projects.enabled = !/^false$/i.test(process.env.NODE_RED_ENABLE_PROJECTS);
|
settings.editorTheme.projects.enabled = !/^false$/i.test(process.env.NODE_RED_ENABLE_PROJECTS);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.https) {
|
// Delay logging of (translated) messages until the RED object has been initialized
|
||||||
server = https.createServer(settings.https,function(req,res) {app(req,res);});
|
var delayedLogItems = [];
|
||||||
} else {
|
|
||||||
server = http.createServer(function(req,res) {app(req,res);});
|
|
||||||
}
|
|
||||||
server.setMaxListeners(0);
|
|
||||||
|
|
||||||
function formatRoot(root) {
|
var startupHttps = settings.https;
|
||||||
|
if (typeof startupHttps === "function") {
|
||||||
|
// Get the result of the function, because createServer doesn't accept functions as input
|
||||||
|
startupHttps = startupHttps();
|
||||||
|
}
|
||||||
|
var httpsPromise = Promise.resolve(startupHttps);
|
||||||
|
|
||||||
|
httpsPromise.then(function(startupHttps) {
|
||||||
|
if (startupHttps) {
|
||||||
|
server = https.createServer(startupHttps,function(req,res) {app(req,res);});
|
||||||
|
|
||||||
|
if (settings.httpsRefreshInterval) {
|
||||||
|
var httpsRefreshInterval = parseFloat(settings.httpsRefreshInterval)||12;
|
||||||
|
if (httpsRefreshInterval > 596) {
|
||||||
|
// Max value based on (2^31-1)ms - the max that setInterval can accept
|
||||||
|
httpsRefreshInterval = 596;
|
||||||
|
}
|
||||||
|
// Check whether setSecureContext is available (Node.js 11+)
|
||||||
|
if (server.setSecureContext) {
|
||||||
|
// Check whether `http` is a callable function
|
||||||
|
if (typeof settings.https === "function") {
|
||||||
|
delayedLogItems.push({type:"info", id:"server.https.refresh-interval", params:{interval:httpsRefreshInterval}});
|
||||||
|
setInterval(function () {
|
||||||
|
try {
|
||||||
|
// Get the result of the function, because createServer doesn't accept functions as input
|
||||||
|
Promise.resolve(settings.https()).then(function(refreshedHttps) {
|
||||||
|
if (refreshedHttps) {
|
||||||
|
// Only update the credentials in the server when key or cert has changed
|
||||||
|
if(!server.key || !server.cert || !server.key.equals(refreshedHttps.key) || !server.cert.equals(refreshedHttps.cert)) {
|
||||||
|
server.setSecureContext(refreshedHttps);
|
||||||
|
RED.log.info(RED.log._("server.https.settings-refreshed"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch(function(err) {
|
||||||
|
RED.log.error(RED.log._("server.https.refresh-failed",{message:err}));
|
||||||
|
});
|
||||||
|
} catch(err) {
|
||||||
|
RED.log.error(RED.log._("server.https.refresh-failed",{message:err}));
|
||||||
|
}
|
||||||
|
}, httpsRefreshInterval*60*60*1000);
|
||||||
|
} else {
|
||||||
|
delayedLogItems.push({type:"warn", id:"server.https.function-required"});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
delayedLogItems.push({type:"warn", id:"server.https.nodejs-version"});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
server = http.createServer(function(req,res) {app(req,res);});
|
||||||
|
}
|
||||||
|
server.setMaxListeners(0);
|
||||||
|
|
||||||
|
function formatRoot(root) {
|
||||||
if (root[0] != "/") {
|
if (root[0] != "/") {
|
||||||
root = "/" + root;
|
root = "/" + root;
|
||||||
}
|
}
|
||||||
@ -190,50 +238,50 @@ function formatRoot(root) {
|
|||||||
root = root + "/";
|
root = root + "/";
|
||||||
}
|
}
|
||||||
return root;
|
return root;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.httpRoot === false) {
|
if (settings.httpRoot === false) {
|
||||||
settings.httpAdminRoot = false;
|
settings.httpAdminRoot = false;
|
||||||
settings.httpNodeRoot = false;
|
settings.httpNodeRoot = false;
|
||||||
} else {
|
} else {
|
||||||
settings.httpRoot = settings.httpRoot||"/";
|
settings.httpRoot = settings.httpRoot||"/";
|
||||||
settings.disableEditor = settings.disableEditor||false;
|
settings.disableEditor = settings.disableEditor||false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.httpAdminRoot !== false) {
|
if (settings.httpAdminRoot !== false) {
|
||||||
settings.httpAdminRoot = formatRoot(settings.httpAdminRoot || settings.httpRoot || "/");
|
settings.httpAdminRoot = formatRoot(settings.httpAdminRoot || settings.httpRoot || "/");
|
||||||
settings.httpAdminAuth = settings.httpAdminAuth || settings.httpAuth;
|
settings.httpAdminAuth = settings.httpAdminAuth || settings.httpAuth;
|
||||||
} else {
|
} else {
|
||||||
settings.disableEditor = true;
|
settings.disableEditor = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.httpNodeRoot !== false) {
|
if (settings.httpNodeRoot !== false) {
|
||||||
settings.httpNodeRoot = formatRoot(settings.httpNodeRoot || settings.httpRoot || "/");
|
settings.httpNodeRoot = formatRoot(settings.httpNodeRoot || settings.httpRoot || "/");
|
||||||
settings.httpNodeAuth = settings.httpNodeAuth || settings.httpAuth;
|
settings.httpNodeAuth = settings.httpNodeAuth || settings.httpAuth;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if we got a port from command line, use it (even if 0)
|
// if we got a port from command line, use it (even if 0)
|
||||||
// replicate (settings.uiPort = parsedArgs.port||settings.uiPort||1880;) but allow zero
|
// replicate (settings.uiPort = parsedArgs.port||settings.uiPort||1880;) but allow zero
|
||||||
if (parsedArgs.port !== undefined){
|
if (parsedArgs.port !== undefined){
|
||||||
settings.uiPort = parsedArgs.port;
|
settings.uiPort = parsedArgs.port;
|
||||||
} else {
|
} else {
|
||||||
if (settings.uiPort === undefined){
|
if (settings.uiPort === undefined){
|
||||||
settings.uiPort = 1880;
|
settings.uiPort = 1880;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
settings.uiHost = settings.uiHost||"0.0.0.0";
|
settings.uiHost = settings.uiHost||"0.0.0.0";
|
||||||
|
|
||||||
if (flowFile) {
|
if (flowFile) {
|
||||||
settings.flowFile = flowFile;
|
settings.flowFile = flowFile;
|
||||||
}
|
}
|
||||||
if (parsedArgs.userDir) {
|
if (parsedArgs.userDir) {
|
||||||
settings.userDir = parsedArgs.userDir;
|
settings.userDir = parsedArgs.userDir;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
RED.init(server,settings);
|
RED.init(server,settings);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
if (err.code == "unsupported_version") {
|
if (err.code == "unsupported_version") {
|
||||||
console.log("Unsupported version of Node.js:",process.version);
|
console.log("Unsupported version of Node.js:",process.version);
|
||||||
console.log("Node-RED requires Node.js v8.9.0 or later");
|
console.log("Node-RED requires Node.js v8.9.0 or later");
|
||||||
@ -246,9 +294,9 @@ try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
function basicAuthMiddleware(user,pass) {
|
function basicAuthMiddleware(user,pass) {
|
||||||
var basicAuth = require('basic-auth');
|
var basicAuth = require('basic-auth');
|
||||||
var checkPassword;
|
var checkPassword;
|
||||||
var localCachedPassword;
|
var localCachedPassword;
|
||||||
@ -288,31 +336,31 @@ function basicAuthMiddleware(user,pass) {
|
|||||||
}
|
}
|
||||||
next();
|
next();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.httpAdminRoot !== false && settings.httpAdminAuth) {
|
if (settings.httpAdminRoot !== false && settings.httpAdminAuth) {
|
||||||
RED.log.warn(RED.log._("server.httpadminauth-deprecated"));
|
RED.log.warn(RED.log._("server.httpadminauth-deprecated"));
|
||||||
app.use(settings.httpAdminRoot, basicAuthMiddleware(settings.httpAdminAuth.user,settings.httpAdminAuth.pass));
|
app.use(settings.httpAdminRoot, basicAuthMiddleware(settings.httpAdminAuth.user,settings.httpAdminAuth.pass));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.httpAdminRoot !== false) {
|
if (settings.httpAdminRoot !== false) {
|
||||||
app.use(settings.httpAdminRoot,RED.httpAdmin);
|
app.use(settings.httpAdminRoot,RED.httpAdmin);
|
||||||
}
|
}
|
||||||
if (settings.httpNodeRoot !== false && settings.httpNodeAuth) {
|
if (settings.httpNodeRoot !== false && settings.httpNodeAuth) {
|
||||||
app.use(settings.httpNodeRoot,basicAuthMiddleware(settings.httpNodeAuth.user,settings.httpNodeAuth.pass));
|
app.use(settings.httpNodeRoot,basicAuthMiddleware(settings.httpNodeAuth.user,settings.httpNodeAuth.pass));
|
||||||
}
|
}
|
||||||
if (settings.httpNodeRoot !== false) {
|
if (settings.httpNodeRoot !== false) {
|
||||||
app.use(settings.httpNodeRoot,RED.httpNode);
|
app.use(settings.httpNodeRoot,RED.httpNode);
|
||||||
}
|
}
|
||||||
if (settings.httpStatic) {
|
if (settings.httpStatic) {
|
||||||
settings.httpStaticAuth = settings.httpStaticAuth || settings.httpAuth;
|
settings.httpStaticAuth = settings.httpStaticAuth || settings.httpAuth;
|
||||||
if (settings.httpStaticAuth) {
|
if (settings.httpStaticAuth) {
|
||||||
app.use("/",basicAuthMiddleware(settings.httpStaticAuth.user,settings.httpStaticAuth.pass));
|
app.use("/",basicAuthMiddleware(settings.httpStaticAuth.user,settings.httpStaticAuth.pass));
|
||||||
}
|
}
|
||||||
app.use("/",express.static(settings.httpStatic));
|
app.use("/",express.static(settings.httpStatic));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getListenPath() {
|
function getListenPath() {
|
||||||
var port = settings.serverPort;
|
var port = settings.serverPort;
|
||||||
if (port === undefined){
|
if (port === undefined){
|
||||||
port = settings.uiPort;
|
port = settings.uiPort;
|
||||||
@ -327,9 +375,9 @@ function getListenPath() {
|
|||||||
listenPath += "/";
|
listenPath += "/";
|
||||||
}
|
}
|
||||||
return listenPath;
|
return listenPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
RED.start().then(function() {
|
RED.start().then(function() {
|
||||||
if (settings.httpAdminRoot !== false || settings.httpNodeRoot !== false || settings.httpStatic) {
|
if (settings.httpAdminRoot !== false || settings.httpNodeRoot !== false || settings.httpStatic) {
|
||||||
server.on('error', function(err) {
|
server.on('error', function(err) {
|
||||||
if (err.errno === "EADDRINUSE") {
|
if (err.errno === "EADDRINUSE") {
|
||||||
@ -345,6 +393,12 @@ RED.start().then(function() {
|
|||||||
}
|
}
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Log all the delayed messages, since they can be translated at this point
|
||||||
|
delayedLogItems.forEach(function (delayedLogItem, index) {
|
||||||
|
RED.log[delayedLogItem.type](RED.log._(delayedLogItem.id, delayedLogItem.params||{}));
|
||||||
|
});
|
||||||
|
|
||||||
server.listen(settings.uiPort,settings.uiHost,function() {
|
server.listen(settings.uiPort,settings.uiHost,function() {
|
||||||
if (settings.httpAdminRoot === false) {
|
if (settings.httpAdminRoot === false) {
|
||||||
RED.log.info(RED.log._("server.admin-ui-disabled"));
|
RED.log.info(RED.log._("server.admin-ui-disabled"));
|
||||||
@ -356,16 +410,16 @@ RED.start().then(function() {
|
|||||||
} else {
|
} else {
|
||||||
RED.log.info(RED.log._("server.headless-mode"));
|
RED.log.info(RED.log._("server.headless-mode"));
|
||||||
}
|
}
|
||||||
}).otherwise(function(err) {
|
}).otherwise(function(err) {
|
||||||
RED.log.error(RED.log._("server.failed-to-start"));
|
RED.log.error(RED.log._("server.failed-to-start"));
|
||||||
if (err.stack) {
|
if (err.stack) {
|
||||||
RED.log.error(err.stack);
|
RED.log.error(err.stack);
|
||||||
} else {
|
} else {
|
||||||
RED.log.error(err);
|
RED.log.error(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
process.on('uncaughtException',function(err) {
|
process.on('uncaughtException',function(err) {
|
||||||
util.log('[red] Uncaught Exception:');
|
util.log('[red] Uncaught Exception:');
|
||||||
if (err.stack) {
|
if (err.stack) {
|
||||||
util.log(err.stack);
|
util.log(err.stack);
|
||||||
@ -373,10 +427,13 @@ process.on('uncaughtException',function(err) {
|
|||||||
util.log(err);
|
util.log(err);
|
||||||
}
|
}
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
process.on('SIGINT', function () {
|
process.on('SIGINT', function () {
|
||||||
RED.stop().then(function() {
|
RED.stop().then(function() {
|
||||||
process.exit();
|
process.exit();
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
}).catch(function(err) {
|
||||||
|
console.log("Failed to get https settings: " + err);
|
||||||
});
|
});
|
||||||
|
33
packages/node_modules/node-red/settings.js
vendored
33
packages/node_modules/node-red/settings.js
vendored
@ -139,13 +139,36 @@ module.exports = {
|
|||||||
// The following property can be used to enable HTTPS
|
// The following property can be used to enable HTTPS
|
||||||
// See http://nodejs.org/api/https.html#https_https_createserver_options_requestlistener
|
// See http://nodejs.org/api/https.html#https_https_createserver_options_requestlistener
|
||||||
// for details on its contents.
|
// for details on its contents.
|
||||||
// See the comment at the top of this file on how to load the `fs` module used by
|
// See the comment at the top of this file on how to load the `fs` module used by this setting.
|
||||||
// this setting.
|
// This property can be either an object, containing both a (private) key and a (public) certificate,
|
||||||
//
|
// or a function that returns such an object:
|
||||||
|
//// https object:
|
||||||
//https: {
|
//https: {
|
||||||
// key: fs.readFileSync('privatekey.pem'),
|
// key: fs.readFileSync('privkey.pem'),
|
||||||
// cert: fs.readFileSync('certificate.pem')
|
// cert: fs.readFileSync('cert.pem')
|
||||||
//},
|
//},
|
||||||
|
////https synchronous function:
|
||||||
|
//https: function() {
|
||||||
|
// return {
|
||||||
|
// key: fs.readFileSync('privkey.pem'),
|
||||||
|
// cert: fs.readFileSync('cert.pem')
|
||||||
|
// }
|
||||||
|
//},
|
||||||
|
//// https asynchronous function:
|
||||||
|
//https: function() {
|
||||||
|
// return Promise.resolve({
|
||||||
|
// key: fs.readFileSync('privkey.pem'),
|
||||||
|
// cert: fs.readFileSync('cert.pem')
|
||||||
|
// });
|
||||||
|
//},
|
||||||
|
|
||||||
|
// The following property can be used to refresh the https settings at a
|
||||||
|
// regular time interval in hours.
|
||||||
|
// This requires:
|
||||||
|
// - the `https` setting to be a function that can be called to get
|
||||||
|
// the refreshed settings.
|
||||||
|
// - Node.js 11 or later.
|
||||||
|
//httpsRefreshInterval : 12,
|
||||||
|
|
||||||
// The following property can be used to cause insecure HTTP connections to
|
// The following property can be used to cause insecure HTTP connections to
|
||||||
// be redirected to HTTPS.
|
// be redirected to HTTPS.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user