mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
81 lines
2.4 KiB
TypeScript
81 lines
2.4 KiB
TypeScript
import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
|
|
import { NodeOperationError } from 'n8n-workflow';
|
|
import type { TheHiveType } from './node.type';
|
|
|
|
import * as alert from './alert';
|
|
import * as case_ from './case';
|
|
import * as comment from './comment';
|
|
import * as log from './log';
|
|
import * as observable from './observable';
|
|
import * as page from './page';
|
|
import * as query from './query';
|
|
import * as task from './task';
|
|
|
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: INodeExecutionData[] = [];
|
|
const length = items.length;
|
|
|
|
const resource = this.getNodeParameter<TheHiveType>('resource', 0);
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
let executionData: INodeExecutionData[] = [];
|
|
|
|
const theHiveNodeData = {
|
|
resource,
|
|
operation,
|
|
} as TheHiveType;
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
try {
|
|
switch (theHiveNodeData.resource) {
|
|
case 'alert':
|
|
executionData = await alert[theHiveNodeData.operation].execute.call(this, i, items[i]);
|
|
break;
|
|
case 'case':
|
|
executionData = await case_[theHiveNodeData.operation].execute.call(this, i, items[i]);
|
|
break;
|
|
case 'comment':
|
|
executionData = await comment[theHiveNodeData.operation].execute.call(this, i);
|
|
break;
|
|
case 'log':
|
|
executionData = await log[theHiveNodeData.operation].execute.call(this, i, items[i]);
|
|
break;
|
|
case 'observable':
|
|
executionData = await observable[theHiveNodeData.operation].execute.call(
|
|
this,
|
|
i,
|
|
items[i],
|
|
);
|
|
break;
|
|
case 'page':
|
|
executionData = await page[theHiveNodeData.operation].execute.call(this, i);
|
|
break;
|
|
case 'query':
|
|
executionData = await query[theHiveNodeData.operation].execute.call(this, i);
|
|
break;
|
|
case 'task':
|
|
executionData = await task[theHiveNodeData.operation].execute.call(this, i, items[i]);
|
|
break;
|
|
default:
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
`The operation "${operation}" is not supported!`,
|
|
);
|
|
}
|
|
returnData.push(...executionData);
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
returnData.push(...executionData);
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
return [returnData];
|
|
}
|