@5minds/node-red-contrib-processcube
Version:
Node-RED nodes for ProcessCube
49 lines (42 loc) • 1.84 kB
JavaScript
const engine_client = require('@5minds/processcube_engine_client');
module.exports = function (RED) {
function ProcessCubeEngineNode(n) {
RED.nodes.createNode(this, n);
const node = this;
node.url = RED.util.evaluateNodeProperty(n.url, n.urlType, node);
node.credentials.clientId = RED.util.evaluateNodeProperty(n.clientId, n.clientIdType, node);
node.credentials.clientSecret = RED.util.evaluateNodeProperty(n.clientSecret, n.clientSecretType, node);
node.credentials.scope = RED.util.evaluateNodeProperty(n.scope, n.scopeType, node);
if (!node.credentials.scope) {
node.credentials.scope = 'engine_etw engine_read engine_write engine_observer';
}
try {
if (node.credentials.clientId && node.credentials.clientSecret) {
node.log('Create Client with secrets');
node.engineClient = new engine_client.EngineClient(node.url, {
clientId: node.credentials.clientId,
clientSecret: node.credentials.clientSecret,
scope: node.credentials.scope,
});
} else {
node.log('Create Client without secrets');
node.engineClient = new engine_client.EngineClient(node.url);
}
} catch (error) {
node.error(error, {});
}
node.on('close', async () => {
node.log('close');
if (node.engineClient) {
node.engineClient.dispose();
node.engineClient = null;
}
});
}
RED.nodes.registerType('processcube-engine-config', ProcessCubeEngineNode, {
credentials: {
clientId: { type: 'text' },
clientSecret: { type: 'password' },
},
});
};