Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import * as companyReport from './companyReport';
|
|
import * as employee from './employee';
|
|
import * as employeeDocument from './employeeDocument';
|
|
import * as file from './file';
|
|
import type { BambooHr } 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<BambooHr>('resource', i);
|
|
const operation = this.getNodeParameter('operation', i);
|
|
|
|
const bamboohr = {
|
|
resource,
|
|
operation,
|
|
} as BambooHr;
|
|
|
|
if (bamboohr.operation === 'delete') {
|
|
//@ts-ignore
|
|
bamboohr.operation = 'del';
|
|
}
|
|
|
|
try {
|
|
if (bamboohr.resource === 'employee') {
|
|
operationResult.push(...(await employee[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'employeeDocument') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await employeeDocument[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'file') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await file[bamboohr.operation].execute.call(this, i)));
|
|
} else if (bamboohr.resource === 'companyReport') {
|
|
//@ts-ignore
|
|
operationResult.push(...(await companyReport[bamboohr.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;
|
|
}
|