mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
b7aea957b8
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
82 lines
2.2 KiB
TypeScript
82 lines
2.2 KiB
TypeScript
import {
|
|
type IExecuteFunctions,
|
|
type IDataObject,
|
|
type INodeExecutionData,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import type { MicrosoftTeamsType } from './node.type';
|
|
|
|
import * as channel from './channel';
|
|
import * as channelMessage from './channelMessage';
|
|
import * as chatMessage from './chatMessage';
|
|
import * as task from './task';
|
|
|
|
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: INodeExecutionData[] = [];
|
|
let responseData;
|
|
|
|
const resource = this.getNodeParameter<MicrosoftTeamsType>('resource', 0);
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
const nodeVersion = this.getNode().typeVersion;
|
|
const instanceId = this.getInstanceId();
|
|
|
|
const microsoftTeamsTypeData = {
|
|
resource,
|
|
operation,
|
|
} as MicrosoftTeamsType;
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
try {
|
|
switch (microsoftTeamsTypeData.resource) {
|
|
case 'channel':
|
|
responseData = await channel[microsoftTeamsTypeData.operation].execute.call(this, i);
|
|
break;
|
|
case 'channelMessage':
|
|
responseData = await channelMessage[microsoftTeamsTypeData.operation].execute.call(
|
|
this,
|
|
i,
|
|
nodeVersion,
|
|
instanceId,
|
|
);
|
|
break;
|
|
case 'chatMessage':
|
|
responseData = await chatMessage[microsoftTeamsTypeData.operation].execute.call(
|
|
this,
|
|
i,
|
|
instanceId,
|
|
);
|
|
break;
|
|
case 'task':
|
|
responseData = await task[microsoftTeamsTypeData.operation].execute.call(this, i);
|
|
break;
|
|
default:
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
`The operation "${operation}" is not supported!`,
|
|
);
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData as IDataObject),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
} catch (error) {
|
|
if (this.continueOnFail(error)) {
|
|
const executionErrorData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray({ error: error.message }),
|
|
{ itemData: { item: i } },
|
|
);
|
|
returnData.push(...executionErrorData);
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
return [returnData];
|
|
}
|