Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Gumroad/GenericFunctions.ts
2025-09-08 04:48:28 +08:00

44 lines
1.0 KiB
TypeScript
Executable File

import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
IHttpRequestMethods,
ILoadOptionsFunctions,
IRequestOptions,
IWebhookFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function gumroadApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
method: IHttpRequestMethods,
resource: string,
body: any = {},
qs: IDataObject = {},
uri?: string,
option: IDataObject = {},
): Promise<any> {
const credentials = await this.getCredentials('gumroadApi');
body = Object.assign({ access_token: credentials.accessToken }, body);
let options: IRequestOptions = {
method,
qs,
body,
uri: uri || `https://api.gumroad.com/v2${resource}`,
json: true,
};
options = Object.assign({}, options, option);
if (Object.keys(options.body as IDataObject).length === 0) {
delete options.body;
}
try {
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}