2015-10-11 21:37:11 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2014, 2015 IBM Corp.
|
|
|
|
*
|
|
|
|
* 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 clone = require("clone");
|
|
|
|
var when = require("when");
|
|
|
|
|
|
|
|
var Flow = require('./Flow');
|
|
|
|
|
|
|
|
var typeRegistry = require("../registry");
|
2015-12-29 23:16:51 +01:00
|
|
|
var context = require("../context")
|
2015-10-11 21:37:11 +02:00
|
|
|
var credentials = require("../credentials");
|
|
|
|
|
|
|
|
var flowUtil = require("./util");
|
|
|
|
var log = require("../../log");
|
|
|
|
var events = require("../../events");
|
|
|
|
var redUtil = require("../../util");
|
|
|
|
var deprecated = require("../registry/deprecated");
|
|
|
|
|
|
|
|
var storage = null;
|
|
|
|
var settings = null;
|
|
|
|
|
|
|
|
var activeConfig = null;
|
|
|
|
var activeFlowConfig = null;
|
|
|
|
|
|
|
|
var activeFlows = {};
|
|
|
|
var started = false;
|
|
|
|
|
|
|
|
var activeNodesToFlow = {};
|
2015-11-02 21:41:59 +01:00
|
|
|
var subflowInstanceNodeMap = {};
|
2015-10-11 21:37:11 +02:00
|
|
|
|
2015-11-02 16:38:16 +01:00
|
|
|
var typeEventRegistered = false;
|
|
|
|
|
2016-09-21 11:22:04 +02:00
|
|
|
function init(runtime) {
|
2015-11-02 16:38:16 +01:00
|
|
|
if (started) {
|
|
|
|
throw new Error("Cannot init without a stop");
|
|
|
|
}
|
2016-09-21 11:22:04 +02:00
|
|
|
settings = runtime.settings;
|
|
|
|
storage = runtime.storage;
|
2015-10-11 21:37:11 +02:00
|
|
|
started = false;
|
2015-11-02 16:38:16 +01:00
|
|
|
if (!typeEventRegistered) {
|
|
|
|
events.on('type-registered',function(type) {
|
|
|
|
if (activeFlowConfig && activeFlowConfig.missingTypes.length > 0) {
|
|
|
|
var i = activeFlowConfig.missingTypes.indexOf(type);
|
|
|
|
if (i != -1) {
|
|
|
|
log.info(log._("nodes.flows.registered-missing", {type:type}));
|
|
|
|
activeFlowConfig.missingTypes.splice(i,1);
|
|
|
|
if (activeFlowConfig.missingTypes.length === 0 && started) {
|
|
|
|
start();
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-02 16:38:16 +01:00
|
|
|
});
|
|
|
|
typeEventRegistered = true;
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
|
|
|
|
function loadFlows() {
|
2016-09-21 22:58:50 +02:00
|
|
|
return storage.getFlows().then(function(config) {
|
|
|
|
return credentials.load(config.credentials).then(function() {
|
2016-10-09 23:02:24 +02:00
|
|
|
return config;
|
2015-10-11 21:37:11 +02:00
|
|
|
});
|
|
|
|
}).otherwise(function(err) {
|
|
|
|
log.warn(log._("nodes.flows.error",{message:err.toString()}));
|
|
|
|
console.log(err.stack);
|
|
|
|
});
|
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
function load() {
|
|
|
|
return setFlows(null,"load",false);
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
/*
|
|
|
|
* _config - new node array configuration
|
|
|
|
* type - full/nodes/flows/load (default full)
|
|
|
|
* muteLog - don't emit the standard log messages (used for individual flow api)
|
|
|
|
*/
|
|
|
|
function setFlows(_config,type,muteLog) {
|
2015-10-11 21:37:11 +02:00
|
|
|
type = type||"full";
|
|
|
|
|
|
|
|
var configSavePromise = null;
|
2016-10-09 23:02:24 +02:00
|
|
|
var config = null;
|
2015-11-02 16:38:16 +01:00
|
|
|
var diff;
|
2016-10-09 23:02:24 +02:00
|
|
|
var newFlowConfig;
|
|
|
|
|
|
|
|
if (type === "load") {
|
|
|
|
configSavePromise = loadFlows().then(function(_config) {
|
|
|
|
config = clone(_config.flows);
|
|
|
|
newFlowConfig = flowUtil.parseConfig(clone(config));
|
|
|
|
type = "full";
|
|
|
|
return _config.rev;
|
|
|
|
});
|
2015-10-11 21:37:11 +02:00
|
|
|
} else {
|
2016-10-09 23:02:24 +02:00
|
|
|
config = clone(_config);
|
|
|
|
newFlowConfig = flowUtil.parseConfig(clone(config));
|
|
|
|
if (type !== 'full') {
|
|
|
|
diff = flowUtil.diffConfigs(activeFlowConfig,newFlowConfig);
|
|
|
|
}
|
2016-09-21 22:58:50 +02:00
|
|
|
credentials.clean(config);
|
|
|
|
var credsDirty = credentials.dirty();
|
|
|
|
configSavePromise = credentials.export().then(function(creds) {
|
|
|
|
var saveConfig = {
|
|
|
|
flows: config,
|
|
|
|
credentialsDirty:credsDirty,
|
|
|
|
credentials: creds
|
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
return storage.saveFlows(saveConfig);
|
2015-10-11 21:37:11 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return configSavePromise
|
2016-10-09 23:02:24 +02:00
|
|
|
.then(function(flowRevision) {
|
|
|
|
activeConfig = {
|
|
|
|
flows:config,
|
|
|
|
rev:flowRevision
|
|
|
|
};
|
2015-11-02 16:38:16 +01:00
|
|
|
activeFlowConfig = newFlowConfig;
|
2016-09-21 22:58:50 +02:00
|
|
|
if (started) {
|
|
|
|
return stop(type,diff,muteLog).then(function() {
|
|
|
|
context.clean(activeFlowConfig);
|
|
|
|
start(type,diff,muteLog);
|
2016-10-09 23:02:24 +02:00
|
|
|
return flowRevision;
|
2016-09-21 22:58:50 +02:00
|
|
|
}).otherwise(function(err) {
|
|
|
|
})
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getNode(id) {
|
|
|
|
var node;
|
2016-03-16 16:37:44 +01:00
|
|
|
if (activeNodesToFlow[id] && activeFlows[activeNodesToFlow[id]]) {
|
2015-10-11 21:37:11 +02:00
|
|
|
return activeFlows[activeNodesToFlow[id]].getNode(id);
|
|
|
|
}
|
|
|
|
for (var flowId in activeFlows) {
|
|
|
|
if (activeFlows.hasOwnProperty(flowId)) {
|
|
|
|
node = activeFlows[flowId].getNode(id);
|
|
|
|
if (node) {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function eachNode(cb) {
|
2015-11-02 16:38:16 +01:00
|
|
|
for (var id in activeFlowConfig.allNodes) {
|
|
|
|
if (activeFlowConfig.allNodes.hasOwnProperty(id)) {
|
|
|
|
cb(activeFlowConfig.allNodes[id]);
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
function getFlows() {
|
2015-10-11 21:37:11 +02:00
|
|
|
return activeConfig;
|
|
|
|
}
|
|
|
|
|
2015-11-02 21:41:59 +01:00
|
|
|
function delegateError(node,logMessage,msg) {
|
2015-10-11 21:37:11 +02:00
|
|
|
if (activeFlows[node.z]) {
|
|
|
|
activeFlows[node.z].handleError(node,logMessage,msg);
|
|
|
|
} else if (activeNodesToFlow[node.z]) {
|
|
|
|
activeFlows[activeNodesToFlow[node.z]].handleError(node,logMessage,msg);
|
2015-11-02 21:41:59 +01:00
|
|
|
} else if (activeFlowConfig.subflows[node.z]) {
|
|
|
|
subflowInstanceNodeMap[node.id].forEach(function(n) {
|
|
|
|
delegateError(getNode(n),logMessage,msg);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function handleError(node,logMessage,msg) {
|
|
|
|
if (node.z) {
|
|
|
|
delegateError(node,logMessage,msg);
|
|
|
|
} else {
|
|
|
|
if (activeFlowConfig.configs[node.id]) {
|
|
|
|
activeFlowConfig.configs[node.id]._users.forEach(function(id) {
|
|
|
|
var userNode = activeFlowConfig.allNodes[id];
|
|
|
|
delegateError(userNode,logMessage,msg);
|
|
|
|
})
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 21:41:59 +01:00
|
|
|
function delegateStatus(node,statusMessage) {
|
2015-10-11 21:37:11 +02:00
|
|
|
if (activeFlows[node.z]) {
|
|
|
|
activeFlows[node.z].handleStatus(node,statusMessage);
|
|
|
|
}
|
|
|
|
}
|
2015-11-02 21:41:59 +01:00
|
|
|
function handleStatus(node,statusMessage) {
|
2015-11-12 10:03:03 +01:00
|
|
|
events.emit("node-status",{
|
|
|
|
id: node.id,
|
|
|
|
status:statusMessage
|
|
|
|
});
|
2015-11-02 21:41:59 +01:00
|
|
|
if (node.z) {
|
|
|
|
delegateStatus(node,statusMessage);
|
|
|
|
} else {
|
|
|
|
if (activeFlowConfig.configs[node.id]) {
|
|
|
|
activeFlowConfig.configs[node.id]._users.forEach(function(id) {
|
|
|
|
var userNode = activeFlowConfig.allNodes[id];
|
|
|
|
delegateStatus(userNode,statusMessage);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
|
|
|
|
|
2015-12-10 18:02:09 +01:00
|
|
|
function start(type,diff,muteLog) {
|
2015-12-09 22:51:46 +01:00
|
|
|
//dumpActiveNodes();
|
2015-10-11 21:37:11 +02:00
|
|
|
type = type||"full";
|
|
|
|
started = true;
|
|
|
|
var i;
|
|
|
|
if (activeFlowConfig.missingTypes.length > 0) {
|
|
|
|
log.info(log._("nodes.flows.missing-types"));
|
|
|
|
var knownUnknowns = 0;
|
|
|
|
for (i=0;i<activeFlowConfig.missingTypes.length;i++) {
|
|
|
|
var nodeType = activeFlowConfig.missingTypes[i];
|
|
|
|
var info = deprecated.get(nodeType);
|
|
|
|
if (info) {
|
|
|
|
log.info(log._("nodes.flows.missing-type-provided",{type:activeFlowConfig.missingTypes[i],module:info.module}));
|
|
|
|
knownUnknowns += 1;
|
|
|
|
} else {
|
|
|
|
log.info(" - "+activeFlowConfig.missingTypes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (knownUnknowns > 0) {
|
|
|
|
log.info(log._("nodes.flows.missing-type-install-1"));
|
|
|
|
log.info(" npm install <module name>");
|
|
|
|
log.info(log._("nodes.flows.missing-type-install-2"));
|
|
|
|
log.info(" "+settings.userDir);
|
|
|
|
}
|
2015-11-24 23:38:42 +01:00
|
|
|
return when.resolve();
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
2015-12-10 18:02:09 +01:00
|
|
|
if (!muteLog) {
|
|
|
|
if (diff) {
|
|
|
|
log.info(log._("nodes.flows.starting-modified-"+type));
|
|
|
|
} else {
|
|
|
|
log.info(log._("nodes.flows.starting-flows"));
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
var id;
|
|
|
|
if (!diff) {
|
2015-12-09 22:51:46 +01:00
|
|
|
if (!activeFlows['global']) {
|
|
|
|
activeFlows['global'] = Flow.create(activeFlowConfig);
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
for (id in activeFlowConfig.flows) {
|
|
|
|
if (activeFlowConfig.flows.hasOwnProperty(id)) {
|
2015-12-09 22:51:46 +01:00
|
|
|
if (!activeFlows[id]) {
|
|
|
|
activeFlows[id] = Flow.create(activeFlowConfig,activeFlowConfig.flows[id]);
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2015-12-09 22:51:46 +01:00
|
|
|
activeFlows['global'].update(activeFlowConfig,activeFlowConfig);
|
2015-10-11 21:37:11 +02:00
|
|
|
for (id in activeFlowConfig.flows) {
|
|
|
|
if (activeFlowConfig.flows.hasOwnProperty(id)) {
|
|
|
|
if (activeFlows[id]) {
|
|
|
|
activeFlows[id].update(activeFlowConfig,activeFlowConfig.flows[id]);
|
|
|
|
} else {
|
|
|
|
activeFlows[id] = Flow.create(activeFlowConfig,activeFlowConfig.flows[id]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (id in activeFlows) {
|
|
|
|
if (activeFlows.hasOwnProperty(id)) {
|
|
|
|
activeFlows[id].start(diff);
|
|
|
|
var activeNodes = activeFlows[id].getActiveNodes();
|
|
|
|
Object.keys(activeNodes).forEach(function(nid) {
|
|
|
|
activeNodesToFlow[nid] = id;
|
2015-11-02 21:41:59 +01:00
|
|
|
if (activeNodes[nid]._alias) {
|
|
|
|
subflowInstanceNodeMap[activeNodes[nid]._alias] = subflowInstanceNodeMap[activeNodes[nid]._alias] || [];
|
|
|
|
subflowInstanceNodeMap[activeNodes[nid]._alias].push(nid);
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
});
|
2015-11-02 21:41:59 +01:00
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
events.emit("nodes-started");
|
2015-12-10 18:02:09 +01:00
|
|
|
if (!muteLog) {
|
|
|
|
if (diff) {
|
|
|
|
log.info(log._("nodes.flows.started-modified-"+type));
|
|
|
|
} else {
|
|
|
|
log.info(log._("nodes.flows.started-flows"));
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
2015-11-24 23:38:42 +01:00
|
|
|
return when.resolve();
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
|
2015-12-10 18:02:09 +01:00
|
|
|
function stop(type,diff,muteLog) {
|
2015-10-11 21:37:11 +02:00
|
|
|
type = type||"full";
|
2015-12-10 18:02:09 +01:00
|
|
|
if (!muteLog) {
|
|
|
|
if (diff) {
|
|
|
|
log.info(log._("nodes.flows.stopping-modified-"+type));
|
|
|
|
} else {
|
|
|
|
log.info(log._("nodes.flows.stopping-flows"));
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
started = false;
|
|
|
|
var promises = [];
|
|
|
|
var stopList;
|
|
|
|
if (type === 'nodes') {
|
|
|
|
stopList = diff.changed.concat(diff.removed);
|
|
|
|
} else if (type === 'flows') {
|
|
|
|
stopList = diff.changed.concat(diff.removed).concat(diff.linked);
|
|
|
|
}
|
|
|
|
for (var id in activeFlows) {
|
|
|
|
if (activeFlows.hasOwnProperty(id)) {
|
|
|
|
promises = promises.concat(activeFlows[id].stop(stopList));
|
2015-12-10 16:47:15 +01:00
|
|
|
if (!diff || diff.removed.indexOf(id)!==-1) {
|
2015-10-11 21:37:11 +02:00
|
|
|
delete activeFlows[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return when.promise(function(resolve,reject) {
|
|
|
|
when.settle(promises).then(function() {
|
|
|
|
for (id in activeNodesToFlow) {
|
|
|
|
if (activeNodesToFlow.hasOwnProperty(id)) {
|
|
|
|
if (!activeFlows[activeNodesToFlow[id]]) {
|
|
|
|
delete activeNodesToFlow[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-02 21:41:59 +01:00
|
|
|
if (stopList) {
|
|
|
|
stopList.forEach(function(id) {
|
|
|
|
delete activeNodesToFlow[id];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// Ideally we'd prune just what got stopped - but mapping stopList
|
|
|
|
// id to the list of subflow instance nodes is something only Flow
|
|
|
|
// can do... so cheat by wiping the map knowing it'll be rebuilt
|
|
|
|
// in start()
|
|
|
|
subflowInstanceNodeMap = {};
|
2015-12-10 18:02:09 +01:00
|
|
|
if (!muteLog) {
|
|
|
|
if (diff) {
|
|
|
|
log.info(log._("nodes.flows.stopped-modified-"+type));
|
|
|
|
} else {
|
|
|
|
log.info(log._("nodes.flows.stopped-flows"));
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-09 12:29:48 +01:00
|
|
|
function checkTypeInUse(id) {
|
|
|
|
var nodeInfo = typeRegistry.getNodeInfo(id);
|
|
|
|
if (!nodeInfo) {
|
|
|
|
throw new Error(log._("nodes.index.unrecognised-id", {id:id}));
|
|
|
|
} else {
|
|
|
|
var inUse = {};
|
2016-10-09 23:02:24 +02:00
|
|
|
var config = getFlows();
|
|
|
|
config.flows.forEach(function(n) {
|
2015-11-09 12:29:48 +01:00
|
|
|
inUse[n.type] = (inUse[n.type]||0)+1;
|
|
|
|
});
|
|
|
|
var nodesInUse = [];
|
|
|
|
nodeInfo.types.forEach(function(t) {
|
|
|
|
if (inUse[t]) {
|
|
|
|
nodesInUse.push(t);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (nodesInUse.length > 0) {
|
|
|
|
var msg = nodesInUse.join(", ");
|
|
|
|
var err = new Error(log._("nodes.index.type-in-use", {msg:msg}));
|
|
|
|
err.code = "type_in_use";
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
|
2015-12-09 22:51:46 +01:00
|
|
|
function updateMissingTypes() {
|
|
|
|
var subflowInstanceRE = /^subflow:(.+)$/;
|
|
|
|
activeFlowConfig.missingTypes = [];
|
|
|
|
|
|
|
|
for (var id in activeFlowConfig.allNodes) {
|
|
|
|
if (activeFlowConfig.allNodes.hasOwnProperty(id)) {
|
|
|
|
var node = activeFlowConfig.allNodes[id];
|
|
|
|
if (node.type !== 'tab' && node.type !== 'subflow') {
|
|
|
|
var subflowDetails = subflowInstanceRE.exec(node.type);
|
|
|
|
if ( (subflowDetails && !activeFlowConfig.subflows[subflowDetails[1]]) || (!subflowDetails && !typeRegistry.get(node.type)) ) {
|
|
|
|
if (activeFlowConfig.missingTypes.indexOf(node.type) === -1) {
|
|
|
|
activeFlowConfig.missingTypes.push(node.type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-06 23:49:51 +01:00
|
|
|
function addFlow(flow) {
|
2015-12-10 18:02:09 +01:00
|
|
|
var i,node;
|
2016-01-14 15:57:13 +01:00
|
|
|
if (!flow.hasOwnProperty('nodes')) {
|
|
|
|
throw new Error('missing nodes property');
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
flow.id = redUtil.generateId();
|
2015-12-06 23:49:51 +01:00
|
|
|
|
2015-12-10 18:02:09 +01:00
|
|
|
var nodes = [{
|
|
|
|
type:'tab',
|
|
|
|
label:flow.label,
|
|
|
|
id:flow.id
|
|
|
|
}];
|
|
|
|
|
2015-12-09 22:51:46 +01:00
|
|
|
for (i=0;i<flow.nodes.length;i++) {
|
|
|
|
node = flow.nodes[i];
|
|
|
|
if (activeFlowConfig.allNodes[node.id]) {
|
|
|
|
// TODO nls
|
|
|
|
return when.reject(new Error('duplicate id'));
|
|
|
|
}
|
2015-12-14 11:46:54 +01:00
|
|
|
if (node.type === 'tab' || node.type === 'subflow') {
|
|
|
|
return when.reject(new Error('invalid node type: '+node.type));
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
node.z = flow.id;
|
2015-12-10 18:02:09 +01:00
|
|
|
nodes.push(node);
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
|
|
|
if (flow.configs) {
|
|
|
|
for (i=0;i<flow.configs.length;i++) {
|
|
|
|
node = flow.configs[i];
|
2015-12-06 23:49:51 +01:00
|
|
|
if (activeFlowConfig.allNodes[node.id]) {
|
|
|
|
// TODO nls
|
2015-12-09 22:51:46 +01:00
|
|
|
return when.reject(new Error('duplicate id'));
|
2015-12-06 23:49:51 +01:00
|
|
|
}
|
2015-12-14 11:46:54 +01:00
|
|
|
if (node.type === 'tab' || node.type === 'subflow') {
|
|
|
|
return when.reject(new Error('invalid node type: '+node.type));
|
|
|
|
}
|
2015-12-06 23:49:51 +01:00
|
|
|
node.z = flow.id;
|
2015-12-10 18:02:09 +01:00
|
|
|
nodes.push(node);
|
2015-12-06 23:49:51 +01:00
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
var newConfig = clone(activeConfig.flows);
|
2015-12-10 18:02:09 +01:00
|
|
|
newConfig = newConfig.concat(nodes);
|
2015-12-09 22:51:46 +01:00
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
return setFlows(newConfig,'flows',true).then(function() {
|
2015-12-10 18:02:09 +01:00
|
|
|
log.info(log._("nodes.flows.added-flow",{label:(flow.label?flow.label+" ":"")+"["+flow.id+"]"}));
|
|
|
|
return flow.id;
|
2015-12-09 22:51:46 +01:00
|
|
|
});
|
2015-12-06 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getFlow(id) {
|
2015-12-09 22:51:46 +01:00
|
|
|
var flow;
|
|
|
|
if (id === 'global') {
|
|
|
|
flow = activeFlowConfig;
|
|
|
|
} else {
|
|
|
|
flow = activeFlowConfig.flows[id];
|
|
|
|
}
|
2015-12-06 23:49:51 +01:00
|
|
|
if (!flow) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
var result = {
|
2015-12-09 22:51:46 +01:00
|
|
|
id: id
|
2015-12-06 23:49:51 +01:00
|
|
|
};
|
2015-12-09 22:51:46 +01:00
|
|
|
if (flow.label) {
|
|
|
|
result.label = flow.label;
|
|
|
|
}
|
2016-01-14 15:57:13 +01:00
|
|
|
if (id !== 'global') {
|
|
|
|
result.nodes = [];
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
if (flow.nodes) {
|
|
|
|
var nodeIds = Object.keys(flow.nodes);
|
|
|
|
if (nodeIds.length > 0) {
|
|
|
|
result.nodes = nodeIds.map(function(nodeId) {
|
2016-05-17 10:16:58 +02:00
|
|
|
var node = clone(flow.nodes[nodeId]);
|
|
|
|
if (node.type === 'link out') {
|
|
|
|
delete node.wires;
|
|
|
|
}
|
|
|
|
return node;
|
2015-12-09 22:51:46 +01:00
|
|
|
})
|
2015-12-06 23:49:51 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
if (flow.configs) {
|
|
|
|
var configIds = Object.keys(flow.configs);
|
|
|
|
result.configs = configIds.map(function(configId) {
|
|
|
|
return clone(flow.configs[configId]);
|
|
|
|
})
|
2016-01-14 15:57:13 +01:00
|
|
|
if (result.configs.length === 0) {
|
|
|
|
delete result.configs;
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
|
|
|
if (flow.subflows) {
|
|
|
|
var subflowIds = Object.keys(flow.subflows);
|
|
|
|
result.subflows = subflowIds.map(function(subflowId) {
|
|
|
|
var subflow = clone(flow.subflows[subflowId]);
|
|
|
|
var nodeIds = Object.keys(subflow.nodes);
|
|
|
|
subflow.nodes = nodeIds.map(function(id) {
|
|
|
|
return subflow.nodes[id];
|
|
|
|
});
|
|
|
|
if (subflow.configs) {
|
|
|
|
var configIds = Object.keys(subflow.configs);
|
|
|
|
subflow.configs = configIds.map(function(id) {
|
|
|
|
return subflow.configs[id];
|
|
|
|
})
|
|
|
|
}
|
|
|
|
delete subflow.instances;
|
|
|
|
return subflow;
|
|
|
|
});
|
2016-01-14 15:57:13 +01:00
|
|
|
if (result.subflows.length === 0) {
|
|
|
|
delete result.subflows;
|
|
|
|
}
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2015-12-06 23:49:51 +01:00
|
|
|
return result;
|
|
|
|
}
|
2015-12-10 18:02:09 +01:00
|
|
|
|
2015-12-09 22:51:46 +01:00
|
|
|
function updateFlow(id,newFlow) {
|
2016-01-14 15:57:13 +01:00
|
|
|
var label = id;
|
|
|
|
if (id !== 'global') {
|
|
|
|
if (!activeFlowConfig.flows[id]) {
|
|
|
|
var e = new Error();
|
|
|
|
e.code = 404;
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
label = activeFlowConfig.flows[id].label;
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
var newConfig = clone(activeConfig.flows);
|
2016-01-14 15:57:13 +01:00
|
|
|
var nodes;
|
2015-12-09 22:51:46 +01:00
|
|
|
|
2016-01-14 15:57:13 +01:00
|
|
|
if (id === 'global') {
|
|
|
|
// Remove all nodes whose z is not a known flow
|
|
|
|
// When subflows can be owned by a flow, this logic will have to take
|
|
|
|
// that into account
|
|
|
|
newConfig = newConfig.filter(function(node) {
|
|
|
|
return node.type === 'tab' || (node.hasOwnProperty('z') && activeFlowConfig.flows.hasOwnProperty(node.z));
|
|
|
|
})
|
|
|
|
|
|
|
|
// Add in the new config nodes
|
|
|
|
nodes = newFlow.configs||[];
|
|
|
|
if (newFlow.subflows) {
|
|
|
|
// Add in the new subflows
|
|
|
|
newFlow.subflows.forEach(function(sf) {
|
|
|
|
nodes = nodes.concat(sf.nodes||[]).concat(sf.configs||[]);
|
|
|
|
delete sf.nodes;
|
|
|
|
delete sf.configs;
|
|
|
|
nodes.push(sf);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newConfig = newConfig.filter(function(node) {
|
|
|
|
return node.z !== id && node.id !== id;
|
|
|
|
});
|
|
|
|
var tabNode = {
|
|
|
|
type:'tab',
|
|
|
|
label:newFlow.label,
|
|
|
|
id:id
|
|
|
|
}
|
|
|
|
nodes = [tabNode].concat(newFlow.nodes||[]).concat(newFlow.configs||[]);
|
|
|
|
nodes.forEach(function(n) {
|
|
|
|
n.z = id;
|
|
|
|
});
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
|
|
|
|
2016-01-14 15:57:13 +01:00
|
|
|
newConfig = newConfig.concat(nodes);
|
2016-10-09 23:02:24 +02:00
|
|
|
return setFlows(newConfig,'flows',true).then(function() {
|
2016-01-14 15:57:13 +01:00
|
|
|
log.info(log._("nodes.flows.updated-flow",{label:(label?label+" ":"")+"["+id+"]"}));
|
2015-12-10 18:02:09 +01:00
|
|
|
})
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2015-12-10 18:02:09 +01:00
|
|
|
|
2015-12-09 22:51:46 +01:00
|
|
|
function removeFlow(id) {
|
|
|
|
if (id === 'global') {
|
|
|
|
// TODO: nls + error code
|
|
|
|
throw new Error('not allowed to remove global');
|
|
|
|
}
|
|
|
|
var flow = activeFlowConfig.flows[id];
|
|
|
|
if (!flow) {
|
|
|
|
var e = new Error();
|
|
|
|
e.code = 404;
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
var newConfig = clone(activeConfig.flows);
|
2015-12-10 18:02:09 +01:00
|
|
|
newConfig = newConfig.filter(function(node) {
|
2015-12-09 22:51:46 +01:00
|
|
|
return node.z !== id && node.id !== id;
|
|
|
|
});
|
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
return setFlows(newConfig,'flows',true).then(function() {
|
2015-12-10 18:02:09 +01:00
|
|
|
log.info(log._("nodes.flows.removed-flow",{label:(flow.label?flow.label+" ":"")+"["+flow.id+"]"}));
|
|
|
|
});
|
2015-12-09 22:51:46 +01:00
|
|
|
}
|
2015-12-10 18:02:09 +01:00
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
module.exports = {
|
|
|
|
init: init,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the current flow configuration from storage
|
|
|
|
* @return a promise for the loading of the config
|
|
|
|
*/
|
|
|
|
load: load,
|
|
|
|
|
|
|
|
get:getNode,
|
|
|
|
eachNode: eachNode,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current flow configuration
|
|
|
|
*/
|
2016-10-09 23:02:24 +02:00
|
|
|
getFlows: getFlows,
|
2015-10-11 21:37:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the current active config.
|
|
|
|
* @param config the configuration to enable
|
|
|
|
* @param type the type of deployment to do: full (default), nodes, flows, load
|
|
|
|
* @return a promise for the saving/starting of the new flow
|
|
|
|
*/
|
2016-10-09 23:02:24 +02:00
|
|
|
setFlows: setFlows,
|
2015-10-11 21:37:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the current flow configuration
|
|
|
|
*/
|
|
|
|
startFlows: start,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the current flow configuration
|
|
|
|
* @return a promise for the stopping of the flow
|
|
|
|
*/
|
|
|
|
stopFlows: stop,
|
|
|
|
|
2015-12-06 23:49:51 +01:00
|
|
|
get started() { return started },
|
2015-10-11 21:37:11 +02:00
|
|
|
|
|
|
|
handleError: handleError,
|
2015-11-09 12:29:48 +01:00
|
|
|
handleStatus: handleStatus,
|
|
|
|
|
2015-12-06 23:49:51 +01:00
|
|
|
checkTypeInUse: checkTypeInUse,
|
|
|
|
|
|
|
|
addFlow: addFlow,
|
|
|
|
getFlow: getFlow,
|
2015-12-09 22:51:46 +01:00
|
|
|
updateFlow: updateFlow,
|
|
|
|
removeFlow: removeFlow,
|
2015-12-06 23:49:51 +01:00
|
|
|
disableFlow:null,
|
|
|
|
enableFlow:null
|
2015-11-09 12:29:48 +01:00
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
};
|