n8n/packages/nodes-base/nodes/Google/Perspective/GenericFunctions.ts
कारतोफ्फेलस्क्रिप्ट™ 7a4e9ef5fa
refactor: Remove n8n-core dependency in nodes-base (no-changelog) (#5649)
2023-03-09 18:13:15 +01:00

33 lines
773 B
TypeScript

import type { OptionsWithUri } from 'request';
import type { IExecuteFunctions, IDataObject, JsonObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function googleApiRequest(
this: IExecuteFunctions,
method: 'POST',
endpoint: string,
body: IDataObject = {},
) {
const options: OptionsWithUri = {
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
method,
body,
uri: `https://commentanalyzer.googleapis.com${endpoint}`,
json: true,
};
if (!Object.keys(body).length) {
delete options.body;
}
try {
return await this.helpers.requestOAuth2.call(this, 'googlePerspectiveOAuth2Api', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}