n8n/packages/nodes-base/nodes/Mattermost/v1/actions/router.ts
Omar Ajoue 2e57d86fd6
Change the place where output format is made (#2506)
The router file now correctly returns a `INodeExecutionData[][]`
instead of a simple `INodeExecutionData[]` forcing the main node
file to correct this.
2022-01-21 10:32:16 +01:00

54 lines
1.6 KiB
TypeScript

import {
IExecuteFunctions,
} from 'n8n-core';
import {
INodeExecutionData,
} from 'n8n-workflow';
import * as channel from './channel';
import * as message from './message';
import * as reaction from './reaction';
import * as user from './user';
import { Mattermost } from './Interfaces';
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const items = this.getInputData();
const operationResult: INodeExecutionData[] = [];
for (let i = 0; i < items.length; i++) {
const resource = this.getNodeParameter<Mattermost>('resource', i);
let operation = this.getNodeParameter('operation', i);
if (operation === 'del') {
operation = 'delete';
} else if (operation === 'desactive') {
operation = 'deactive';
}
const mattermost = {
resource,
operation,
} as Mattermost;
try {
if (mattermost.resource === 'channel') {
operationResult.push(...await channel[mattermost.operation].execute.call(this, i));
} else if (mattermost.resource === 'message') {
operationResult.push(...await message[mattermost.operation].execute.call(this, i));
} else if (mattermost.resource === 'reaction') {
operationResult.push(...await reaction[mattermost.operation].execute.call(this, i));
} else if (mattermost.resource === 'user') {
operationResult.push(...await user[mattermost.operation].execute.call(this, i));
}
} catch (err) {
if (this.continueOnFail()) {
operationResult.push({json: this.getInputData(i)[0].json, error: err});
} else {
throw err;
}
}
}
return [operationResult];
}