2014-05-03 23:26:35 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-05-03 23:26:35 +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.
|
|
|
|
**/
|
2015-11-08 15:06:36 +01:00
|
|
|
|
|
|
|
var when = require("when");
|
|
|
|
var path = require("path");
|
|
|
|
var fs = require("fs");
|
2017-04-10 22:45:04 +02:00
|
|
|
var clone = require("clone");
|
2015-11-08 15:06:36 +01:00
|
|
|
|
2014-05-03 23:26:35 +02:00
|
|
|
var registry = require("./registry");
|
|
|
|
var credentials = require("./credentials");
|
|
|
|
var flows = require("./flows");
|
2016-11-17 14:56:17 +01:00
|
|
|
var flowUtil = require("./flows/util")
|
2015-12-29 23:16:51 +01:00
|
|
|
var context = require("./context");
|
2014-05-03 23:26:35 +02:00
|
|
|
var Node = require("./Node");
|
2017-03-09 22:06:49 +01:00
|
|
|
var log = null;
|
2017-02-15 23:54:32 +01:00
|
|
|
var library = require("./library");
|
2014-05-03 23:26:35 +02:00
|
|
|
|
2015-11-08 15:06:36 +01:00
|
|
|
var events = require("../events");
|
|
|
|
|
|
|
|
var settings;
|
|
|
|
|
2014-07-18 15:20:49 +02:00
|
|
|
/**
|
|
|
|
* Registers a node constructor
|
2016-04-28 12:23:42 +02:00
|
|
|
* @param nodeSet - the nodeSet providing the node (module/set)
|
2014-07-18 15:20:49 +02:00
|
|
|
* @param type - the string type name
|
|
|
|
* @param constructor - the constructor function for this node type
|
|
|
|
* @param opts - optional additional options for the node
|
|
|
|
*/
|
2016-04-28 12:23:42 +02:00
|
|
|
function registerType(nodeSet,type,constructor,opts) {
|
|
|
|
if (typeof type !== "string") {
|
|
|
|
// This is someone calling the api directly, rather than via the
|
|
|
|
// RED object provided to a node. Log a warning
|
2016-07-28 16:43:26 +02:00
|
|
|
log.warn("["+nodeSet+"] Deprecated call to RED.runtime.nodes.registerType - node-set name must be provided as first argument");
|
2016-04-28 12:23:42 +02:00
|
|
|
opts = constructor;
|
|
|
|
constructor = type;
|
|
|
|
type = nodeSet;
|
|
|
|
nodeSet = "";
|
|
|
|
}
|
2017-03-01 16:01:07 +01:00
|
|
|
if (opts) {
|
|
|
|
if (opts.credentials) {
|
|
|
|
credentials.register(type,opts.credentials);
|
|
|
|
}
|
|
|
|
if (opts.settings) {
|
2017-03-09 22:06:49 +01:00
|
|
|
try {
|
|
|
|
settings.registerNodeSettings(type,opts.settings);
|
|
|
|
} catch(err) {
|
|
|
|
log.warn("["+type+"] "+err.message);
|
|
|
|
}
|
2017-03-01 16:01:07 +01:00
|
|
|
}
|
2014-07-18 15:20:49 +02:00
|
|
|
}
|
2016-04-28 12:23:42 +02:00
|
|
|
registry.registerType(nodeSet,type,constructor);
|
2014-07-18 15:20:49 +02:00
|
|
|
}
|
2014-05-03 23:26:35 +02:00
|
|
|
|
2014-07-21 17:07:28 +02:00
|
|
|
/**
|
|
|
|
* Called from a Node's constructor function, invokes the super-class
|
|
|
|
* constructor and attaches any credentials to the node.
|
|
|
|
* @param node the node object being created
|
2014-11-06 11:00:25 +01:00
|
|
|
* @param def the instance definition for the node
|
2014-07-21 17:07:28 +02:00
|
|
|
*/
|
2014-05-03 23:26:35 +02:00
|
|
|
function createNode(node,def) {
|
|
|
|
Node.call(node,def);
|
2015-01-08 23:34:26 +01:00
|
|
|
var id = node.id;
|
|
|
|
if (def._alias) {
|
|
|
|
id = def._alias;
|
|
|
|
}
|
|
|
|
var creds = credentials.get(id);
|
2014-07-18 15:23:32 +02:00
|
|
|
if (creds) {
|
2017-04-10 22:45:04 +02:00
|
|
|
creds = clone(creds);
|
2015-01-08 23:34:26 +01:00
|
|
|
//console.log("Attaching credentials to ",node.id);
|
2016-11-16 22:45:11 +01:00
|
|
|
// allow $(foo) syntax to substitute env variables for credentials also...
|
2016-11-17 14:56:17 +01:00
|
|
|
for (var p in creds) {
|
|
|
|
if (creds.hasOwnProperty(p)) {
|
|
|
|
flowUtil.mapEnvVarProperties(creds,p);
|
2016-11-16 22:45:11 +01:00
|
|
|
}
|
|
|
|
}
|
2014-07-18 15:23:32 +02:00
|
|
|
node.credentials = creds;
|
2015-05-05 00:28:55 +02:00
|
|
|
} else if (credentials.getDefinition(node.type)) {
|
|
|
|
node.credentials = {};
|
2014-07-18 15:23:32 +02:00
|
|
|
}
|
2014-05-03 23:26:35 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 22:12:43 +01:00
|
|
|
function init(runtime) {
|
|
|
|
settings = runtime.settings;
|
2017-03-09 22:06:49 +01:00
|
|
|
log = runtime.log;
|
2016-09-23 11:38:30 +02:00
|
|
|
credentials.init(runtime);
|
2016-09-21 11:22:04 +02:00
|
|
|
flows.init(runtime);
|
2015-11-17 22:12:43 +01:00
|
|
|
registry.init(runtime);
|
2015-12-29 23:16:51 +01:00
|
|
|
context.init(runtime.settings);
|
2017-02-15 23:54:32 +01:00
|
|
|
library.init(runtime);
|
2014-05-03 23:26:35 +02:00
|
|
|
}
|
|
|
|
|
2015-11-09 12:29:48 +01:00
|
|
|
function disableNode(id) {
|
|
|
|
flows.checkTypeInUse(id);
|
2018-02-28 12:23:25 +01:00
|
|
|
return registry.disableNode(id).then(function(info) {
|
|
|
|
reportNodeStateChange(info,false);
|
|
|
|
return info;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function enableNode(id) {
|
|
|
|
return registry.enableNode(id).then(function(info) {
|
|
|
|
reportNodeStateChange(info,true);
|
|
|
|
return info;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function reportNodeStateChange(info,enabled) {
|
|
|
|
if (info.enabled === enabled && !info.err) {
|
|
|
|
events.emit("runtime-event",{id:"node/"+(enabled?"enabled":"disabled"),retain:false,payload:info});
|
|
|
|
log.info(" "+log._("api.nodes."+(enabled?"enabled":"disabled")));
|
|
|
|
for (var i=0;i<info.types.length;i++) {
|
|
|
|
log.info(" - "+info.types[i]);
|
|
|
|
}
|
|
|
|
} else if (enabled && info.err) {
|
|
|
|
log.warn(log._("api.nodes.error-enable"));
|
|
|
|
log.warn(" - "+info.name+" : "+info.err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function installModule(module,version) {
|
2018-03-03 08:35:17 +01:00
|
|
|
var ex_module = registry.getModuleInfo(module);
|
|
|
|
var isUpgrade = !!ex_module;
|
2018-02-28 12:23:25 +01:00
|
|
|
return registry.installModule(module,version).then(function(info) {
|
|
|
|
if (isUpgrade) {
|
|
|
|
events.emit("runtime-event",{id:"node/upgraded",retain:false,payload:{module:module,version:version}});
|
|
|
|
} else {
|
|
|
|
events.emit("runtime-event",{id:"node/added",retain:false,payload:info.nodes});
|
|
|
|
}
|
|
|
|
return info;
|
|
|
|
});
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
|
2015-11-09 12:29:48 +01:00
|
|
|
function uninstallModule(module) {
|
2015-03-30 22:49:20 +02:00
|
|
|
var info = registry.getModuleInfo(module);
|
2014-11-21 16:15:24 +01:00
|
|
|
if (!info) {
|
2015-05-21 00:46:49 +02:00
|
|
|
throw new Error(log._("nodes.index.unrecognised-module", {module:module}));
|
2014-11-21 16:15:24 +01:00
|
|
|
} else {
|
2015-03-30 22:49:20 +02:00
|
|
|
for (var i=0;i<info.nodes.length;i++) {
|
2015-11-09 12:29:48 +01:00
|
|
|
flows.checkTypeInUse(module+"/"+info.nodes[i].name);
|
2015-11-08 15:06:36 +01:00
|
|
|
}
|
2018-02-28 12:23:25 +01:00
|
|
|
return registry.uninstallModule(module).then(function(list) {
|
|
|
|
events.emit("runtime-event",{id:"node/removed",retain:false,payload:list});
|
|
|
|
return list;
|
|
|
|
});
|
2015-11-08 15:06:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-03 23:26:35 +02:00
|
|
|
module.exports = {
|
2014-07-21 17:07:28 +02:00
|
|
|
// Lifecycle
|
2014-05-03 23:26:35 +02:00
|
|
|
init: init,
|
|
|
|
load: registry.load,
|
2014-11-06 11:00:25 +01:00
|
|
|
|
2014-07-21 17:07:28 +02:00
|
|
|
// Node registry
|
2014-05-03 23:26:35 +02:00
|
|
|
createNode: createNode,
|
2014-07-21 17:07:28 +02:00
|
|
|
getNode: flows.get,
|
2015-02-03 23:02:26 +01:00
|
|
|
eachNode: flows.eachNode,
|
2018-06-27 00:34:32 +02:00
|
|
|
getContext: context.get,
|
|
|
|
|
2014-11-06 11:00:25 +01:00
|
|
|
|
2016-10-12 23:30:32 +02:00
|
|
|
paletteEditorEnabled: registry.paletteEditorEnabled,
|
2018-02-28 12:23:25 +01:00
|
|
|
installModule: installModule,
|
2015-11-08 15:06:36 +01:00
|
|
|
uninstallModule: uninstallModule,
|
2014-11-06 11:00:25 +01:00
|
|
|
|
2018-02-28 12:23:25 +01:00
|
|
|
enableNode: enableNode,
|
2014-08-28 01:35:07 +02:00
|
|
|
disableNode: disableNode,
|
2014-11-06 11:00:25 +01:00
|
|
|
|
2014-07-21 17:07:28 +02:00
|
|
|
// Node type registry
|
|
|
|
registerType: registerType,
|
2014-05-03 23:26:35 +02:00
|
|
|
getType: registry.get,
|
2014-11-20 16:17:13 +01:00
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
getNodeInfo: registry.getNodeInfo,
|
2014-08-01 23:05:49 +02:00
|
|
|
getNodeList: registry.getNodeList,
|
2014-11-20 16:17:13 +01:00
|
|
|
|
|
|
|
getModuleInfo: registry.getModuleInfo,
|
|
|
|
|
2014-05-03 23:26:35 +02:00
|
|
|
getNodeConfigs: registry.getNodeConfigs,
|
2014-08-01 23:05:49 +02:00
|
|
|
getNodeConfig: registry.getNodeConfig,
|
2017-02-15 23:54:32 +01:00
|
|
|
getNodeIconPath: registry.getNodeIconPath,
|
2017-11-30 14:13:35 +01:00
|
|
|
getNodeIcons: registry.getNodeIcons,
|
2017-02-15 23:54:32 +01:00
|
|
|
getNodeExampleFlows: library.getExampleFlows,
|
|
|
|
getNodeExampleFlowPath: library.getExampleFlowPath,
|
2014-11-20 16:17:13 +01:00
|
|
|
|
2014-08-01 23:05:49 +02:00
|
|
|
clearRegistry: registry.clear,
|
2014-11-26 17:41:31 +01:00
|
|
|
cleanModuleList: registry.cleanModuleList,
|
2014-11-06 11:00:25 +01:00
|
|
|
|
2014-07-21 17:07:28 +02:00
|
|
|
// Flow handling
|
2015-12-06 23:49:51 +01:00
|
|
|
loadFlows: flows.load,
|
2015-10-11 21:37:11 +02:00
|
|
|
startFlows: flows.startFlows,
|
2015-12-06 23:49:51 +01:00
|
|
|
stopFlows: flows.stopFlows,
|
|
|
|
setFlows: flows.setFlows,
|
|
|
|
getFlows: flows.getFlows,
|
|
|
|
|
|
|
|
addFlow: flows.addFlow,
|
|
|
|
getFlow: flows.getFlow,
|
|
|
|
updateFlow: flows.updateFlow,
|
|
|
|
removeFlow: flows.removeFlow,
|
2016-01-18 11:53:31 +01:00
|
|
|
// disableFlow: flows.disableFlow,
|
|
|
|
// enableFlow: flows.enableFlow,
|
2015-12-06 23:49:51 +01:00
|
|
|
|
2014-07-21 17:07:28 +02:00
|
|
|
// Credentials
|
2014-07-18 15:20:49 +02:00
|
|
|
addCredentials: credentials.add,
|
|
|
|
getCredentials: credentials.get,
|
2015-11-04 12:13:02 +01:00
|
|
|
deleteCredentials: credentials.delete,
|
2017-09-26 23:51:08 +02:00
|
|
|
getCredentialDefinition: credentials.getDefinition,
|
|
|
|
setCredentialSecret: credentials.setKey,
|
|
|
|
clearCredentials: credentials.clear,
|
2017-12-19 01:56:02 +01:00
|
|
|
exportCredentials: credentials.export,
|
2018-03-23 09:18:56 +01:00
|
|
|
getCredentialKeyType: credentials.getKeyType,
|
|
|
|
|
|
|
|
// Contexts
|
2018-05-30 03:24:27 +02:00
|
|
|
loadContextsPlugin: context.load,
|
2018-07-03 15:17:42 +02:00
|
|
|
closeContextsPlugin: context.close,
|
|
|
|
listContextStores: context.listStores
|
2014-11-06 11:00:25 +01:00
|
|
|
};
|