n8n/packages/nodes-base/nodes/Phantombuster/GenericFunctions.ts
Elias Meire 100d9bc087
refactor: Add IRequestOptions type to helpers.request for more type safety (no-changelog) (#8563)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-02-14 16:29:09 +01:00

47 lines
1.1 KiB
TypeScript

import type {
JsonObject,
IDataObject,
IExecuteFunctions,
ILoadOptionsFunctions,
IHttpRequestMethods,
IRequestOptions,
} from 'n8n-workflow';
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
export async function phantombusterApiRequest(
this: IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
path: string,
body: any = {},
qs: IDataObject = {},
_option = {},
): Promise<any> {
const options: IRequestOptions = {
headers: {},
method,
body,
qs,
uri: `https://api.phantombuster.com/api/v2${path}`,
json: true,
};
try {
if (Object.keys(body as IDataObject).length === 0) {
delete options.body;
}
return await this.helpers.requestWithAuthentication.call(this, 'phantombusterApi', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}
export function validateJSON(self: IExecuteFunctions, json: string | undefined, name: string) {
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
throw new NodeOperationError(self.getNode(), `${name} must provide a valid JSON`);
}
return result;
}