node-red/red/red.js

135 lines
4.0 KiB
JavaScript
Raw Normal View History

2013-09-05 16:02:48 +02:00
/**
* Copyright JS Foundation and other contributors, http://js.foundation
2013-09-05 16:02:48 +02:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
2014-04-21 22:55:28 +02:00
var fs = require("fs");
2013-10-20 23:08:38 +02:00
var path = require('path');
var runtime = require("./runtime");
2018-04-15 12:18:10 +02:00
var runtimeAPI = require("./runtime-api");
var redUtil = require("./util");
2018-04-15 12:18:10 +02:00
var api = require("./api");
2013-10-20 23:08:38 +02:00
process.env.NODE_RED_HOME = process.env.NODE_RED_HOME || path.resolve(__dirname+"/..");
2013-09-09 21:03:22 +02:00
var nodeApp = null;
var adminApp = null;
var server = null;
var apiEnabled = false;
function checkVersion(userSettings) {
2017-01-12 11:40:04 +01:00
var semver = require('semver');
if (!semver.satisfies(process.version,">=4.0.0")) {
// TODO: in the future, make this a hard error.
// var e = new Error("Unsupported version of node.js");
// e.code = "unsupported_version";
// throw e;
userSettings.UNSUPPORTED_VERSION = process.version;
2017-01-12 11:40:04 +01:00
}
}
2015-04-02 00:24:47 +02:00
function checkBuild() {
var editorFile = path.resolve(path.join(__dirname,"..","public","red","red.min.js"));
try {
var stats = fs.statSync(editorFile);
} catch(err) {
2015-04-09 11:21:27 +02:00
var e = new Error("Node-RED not built");
2015-04-02 00:24:47 +02:00
e.code = "not_built";
throw e;
}
}
2015-11-17 22:12:43 +01:00
module.exports = {
init: function(httpServer,userSettings) {
2015-12-06 23:50:28 +01:00
if (!userSettings) {
userSettings = httpServer;
httpServer = null;
}
if (!userSettings.SKIP_BUILD_CHECK) {
checkVersion(userSettings);
checkBuild();
}
if (!userSettings.coreNodesDir) {
userSettings.coreNodesDir = path.resolve(path.join(__dirname,"..","nodes"));
}
redUtil.init(userSettings);
if (userSettings.httpAdminRoot !== false) {
runtime.init(userSettings,redUtil,api);
runtimeAPI.init(runtime,redUtil);
2018-04-23 12:21:02 +02:00
api.init(httpServer,userSettings,runtime.storage,runtimeAPI,redUtil);
2018-04-15 12:18:10 +02:00
apiEnabled = true;
server = runtime.adminApi.server;
runtime.server = runtime.adminApi.server;
2015-11-24 23:38:42 +01:00
} else {
runtime.init(userSettings,redUtil);
2015-11-24 23:38:42 +01:00
apiEnabled = false;
if (httpServer){
server = httpServer;
runtime.server = httpServer;
} else {
server = runtime.adminApi.server;
runtime.server = runtime.adminApi.server; // useless at this point, but at least harmless.
}
2014-08-28 14:59:56 +02:00
}
2015-11-24 23:38:42 +01:00
adminApp = runtime.adminApi.adminApp;
nodeApp = runtime.nodeApp;
2015-11-24 23:38:42 +01:00
return;
},
start: function() {
return runtime.start().then(function() {
if (apiEnabled) {
return api.start();
}
});
},
stop: function() {
return runtime.stop().then(function() {
if (apiEnabled) {
return api.stop();
}
})
},
2015-11-24 23:38:42 +01:00
nodes: runtime.nodes,
get log() { return redUtil.log },
settings:runtime.settings,
util: runtime.util,
version: runtime.version,
events: runtime.events,
2018-04-24 16:01:49 +02:00
comms: {
publish: function(topic,data,retain) {
runtime.events.emit("comms",{
topic: topic,
data: data,
retain: retain
})
}
},
library: {
register: function(type) {
return runtime.library.register(null,type);
}
},
auth: api.auth,
get app() { console.log("Deprecated use of RED.app - use RED.httpAdmin instead"); return runtime.app },
get httpAdmin() { return adminApp },
get httpNode() { return nodeApp },
get server() { return server }
2013-09-09 21:03:22 +02:00
};