2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-08-25 01:50:39 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
JsonObject,
|
2020-08-25 01:50:39 -07:00
|
|
|
IExecuteFunctions,
|
|
|
|
IHookFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IWebhookFunctions,
|
2023-03-09 09:13:15 -08:00
|
|
|
IDataObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-08-25 01:50:39 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function paddleApiRequest(
|
2023-08-16 06:52:41 -07:00
|
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
|
2022-08-17 08:50:24 -07:00
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_query?: IDataObject,
|
|
|
|
_uri?: string,
|
2022-08-17 08:50:24 -07:00
|
|
|
): Promise<any> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('paddleApi');
|
2021-05-12 11:50:53 -07:00
|
|
|
const productionUrl = 'https://vendors.paddle.com/api';
|
|
|
|
const sandboxUrl = 'https://sandbox-vendors.paddle.com/api';
|
2020-08-25 01:50:39 -07:00
|
|
|
|
2021-05-12 11:50:53 -07:00
|
|
|
const isSandbox = credentials.sandbox;
|
|
|
|
|
2020-08-25 01:51:16 -07:00
|
|
|
const options: OptionsWithUri = {
|
2020-08-25 01:50:39 -07:00
|
|
|
method,
|
|
|
|
headers: {
|
2020-10-22 06:46:03 -07:00
|
|
|
'content-type': 'application/json',
|
2020-08-25 01:50:39 -07:00
|
|
|
},
|
2021-05-12 11:50:53 -07:00
|
|
|
uri: `${isSandbox === true ? sandboxUrl : productionUrl}${endpoint}`,
|
2020-08-25 01:50:39 -07:00
|
|
|
body,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-08-25 01:50:39 -07:00
|
|
|
};
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
body.vendor_id = credentials.vendorId;
|
|
|
|
body.vendor_auth_code = credentials.vendorAuthCode;
|
2020-08-25 01:50:39 -07:00
|
|
|
try {
|
2022-12-23 10:09:52 -08:00
|
|
|
const response = await this.helpers.request(options);
|
2020-08-25 01:50:39 -07:00
|
|
|
|
|
|
|
if (!response.success) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), response as JsonObject);
|
2020-08-25 01:50:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-08-25 01:50:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function paddleApiRequestAllItems(
|
|
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
endpoint: string,
|
|
|
|
method: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-08-25 01:50:39 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
body.results_per_page = 200;
|
|
|
|
body.page = 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await paddleApiRequest.call(this, endpoint, method, body, query);
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2020-10-22 14:50:44 -07:00
|
|
|
body.page++;
|
2020-08-25 01:50:39 -07:00
|
|
|
} while (
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData[propertyName].length !== 0 &&
|
|
|
|
responseData[propertyName].length === body.results_per_page
|
2020-08-25 01:50:39 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export function validateJSON(json: string | undefined): any {
|
2020-08-25 01:50:39 -07:00
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(json!);
|
|
|
|
} catch (exception) {
|
|
|
|
result = undefined;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|