feat(Google Analytics Node): Overhaul for google analytics node
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
import { IExecuteFunctions } from 'n8n-core';
|
||||
import { INodeExecutionData, NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { GoogleAnalytics, ReportBasedOnProperty } from './node.type';
|
||||
import * as userActivity from './userActivity/UserActivity.resource';
|
||||
import * as report from './report/Report.resource';
|
||||
|
||||
export async function router(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const returnData: INodeExecutionData[] = [];
|
||||
const resource = this.getNodeParameter<GoogleAnalytics>('resource', 0) as string;
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
|
||||
let responseData;
|
||||
|
||||
const googleAnalytics = {
|
||||
resource,
|
||||
operation,
|
||||
} as GoogleAnalytics;
|
||||
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
try {
|
||||
switch (googleAnalytics.resource) {
|
||||
case 'report':
|
||||
const propertyType = this.getNodeParameter('propertyType', 0) as string;
|
||||
const operationBasedOnProperty =
|
||||
`${googleAnalytics.operation}${propertyType}` as ReportBasedOnProperty;
|
||||
responseData = await report[operationBasedOnProperty].execute.call(this, i);
|
||||
break;
|
||||
case 'userActivity':
|
||||
responseData = await userActivity[googleAnalytics.operation].execute.call(this, i);
|
||||
break;
|
||||
default:
|
||||
throw new NodeOperationError(this.getNode(), `The resource "${resource}" is not known`);
|
||||
}
|
||||
|
||||
returnData.push(...responseData);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail()) {
|
||||
const executionErrorData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray({ error: error.message }),
|
||||
{ itemData: { item: i } },
|
||||
);
|
||||
returnData.push(...executionErrorData);
|
||||
continue;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
return this.prepareOutputData(returnData);
|
||||
}
|
||||
Reference in New Issue
Block a user