WIP: move all the code

This commit is contained in:
Nick O'Leary
2018-08-04 22:23:06 +01:00
parent 06abe63fb1
commit ecd8f97d8b
576 changed files with 46631 additions and 170 deletions

133
packages/node_modules/node-red/red/red.js generated vendored Normal file
View File

@@ -0,0 +1,133 @@
/**
* Copyright JS Foundation and other contributors, http://js.foundation
*
* 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.
**/
var fs = require("fs");
var path = require('path');
var runtime = require("@node-red/runtime");
var redUtil = require("@node-red/util");
var api = require("@node-red/editor");
process.env.NODE_RED_HOME = process.env.NODE_RED_HOME || path.resolve(__dirname+"/..");
var nodeApp = null;
var adminApp = null;
var server = null;
var apiEnabled = false;
function checkVersion(userSettings) {
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;
}
}
function checkBuild() {
console.log("Skipping red.js/checkBuild");
// var editorFile = path.resolve(path.join(__dirname,"..","..","..","..","public","red","red.min.js"));
// try {
// var stats = fs.statSync(editorFile);
// } catch(err) {
// var e = new Error("Node-RED not built");
// e.code = "not_built";
// throw e;
// }
}
module.exports = {
init: function(httpServer,userSettings) {
if (!userSettings) {
userSettings = httpServer;
httpServer = null;
}
if (!userSettings.SKIP_BUILD_CHECK) {
checkVersion(userSettings);
checkBuild();
}
if (!userSettings.coreNodesDir) {
userSettings.coreNodesDir = path.resolve(path.join(__dirname,"..","..","@node-red","nodes"));
}
redUtil.init(userSettings);
if (userSettings.httpAdminRoot !== false) {
runtime.init(userSettings,redUtil,api);
api.init(httpServer,userSettings,runtime.storage,runtime);
apiEnabled = true;
server = runtime._.adminApi.server;
runtime.server = runtime._.adminApi.server;
} else {
runtime.init(userSettings,redUtil);
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.
}
}
adminApp = runtime._.adminApi.adminApp;
nodeApp = runtime._.nodeApp;
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();
}
})
},
nodes: runtime._.nodes,
log: redUtil.log,
settings:runtime._.settings,
util: runtime._.util,
version: runtime._.version,
events: runtime._.events,
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 }
};