mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 07:34:08 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
import type { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import type { INodeExecutionData } from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
import * as customer from './customer';
|
|
import * as ticket from './ticket';
|
|
import * as contact from './contact';
|
|
import * as rmm from './rmm';
|
|
|
|
import type { SyncroMsp } 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<SyncroMsp>('resource', i);
|
|
let operation = this.getNodeParameter('operation', i);
|
|
let responseData: INodeExecutionData[] = [];
|
|
if (operation === 'del') {
|
|
operation = 'delete';
|
|
}
|
|
|
|
const syncroMsp = {
|
|
resource,
|
|
operation,
|
|
} as SyncroMsp;
|
|
|
|
try {
|
|
if (syncroMsp.resource === 'customer') {
|
|
responseData = await customer[syncroMsp.operation].execute.call(this, i);
|
|
} else if (syncroMsp.resource === 'ticket') {
|
|
responseData = await ticket[syncroMsp.operation].execute.call(this, i);
|
|
} else if (syncroMsp.resource === 'contact') {
|
|
responseData = await contact[syncroMsp.operation].execute.call(this, i);
|
|
} else if (syncroMsp.resource === 'rmm') {
|
|
responseData = await rmm[syncroMsp.operation].execute.call(this, i);
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(responseData, {
|
|
itemData: { item: i },
|
|
});
|
|
|
|
operationResult.push(...executionData);
|
|
} catch (err) {
|
|
if (this.continueOnFail()) {
|
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ error: err.message }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
operationResult.push(...executionErrorData);
|
|
} else {
|
|
throw new NodeApiError(this.getNode(), err, { itemIndex: i });
|
|
}
|
|
}
|
|
}
|
|
|
|
return this.prepareOutputData(operationResult);
|
|
}
|