2021-09-21 10:38:24 -07:00
|
|
|
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';
|
|
|
|
|
2022-01-21 01:32:16 -08:00
|
|
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2021-09-21 10:38:24 -07:00
|
|
|
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 {
|
2022-06-03 08:25:07 -07:00
|
|
|
if (err.context) err.context.itemIndex = i;
|
2021-09-21 10:38:24 -07:00
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-21 01:32:16 -08:00
|
|
|
return [operationResult];
|
2021-09-21 10:38:24 -07:00
|
|
|
}
|