2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2021-01-12 03:40:49 -08:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2022-08-01 13:47:55 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IDataObject, IHookFunctions, IWebhookFunctions } from 'n8n-workflow';
|
2021-01-12 03:40:49 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
const BEEMINDER_URI = 'https://www.beeminder.com/api/v1';
|
2021-01-12 03:40:49 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function beeminderApiRequest(
|
|
|
|
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-01-12 03:40:49 -08:00
|
|
|
const options: OptionsWithUri = {
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs: query,
|
|
|
|
uri: `${BEEMINDER_URI}${endpoint}`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
if (!Object.keys(body as IDataObject).length) {
|
2021-01-12 03:40:49 -08:00
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Object.keys(query).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
|
2022-11-22 08:57:17 -08:00
|
|
|
return this.helpers.requestWithAuthentication.call(this, 'beeminderApi', options);
|
2021-01-12 03:40:49 -08:00
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function beeminderApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2021-01-12 03:40:49 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.page = 1;
|
|
|
|
do {
|
|
|
|
responseData = await beeminderApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
query.page++;
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData.length !== 0);
|
2021-01-12 03:40:49 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|