n8n/packages/nodes-base/nodes/Mattermost/v1/actions/router.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

51 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 {
if (err.context) err.context.itemIndex = i;
throw err;
}
}
}
return [operationResult];
}