2022-08-01 13:47:55 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions, IPollFunctions } from 'n8n-core';
|
|
|
|
|
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function clockifyApiRequest(
|
|
|
|
this: ILoadOptionsFunctions | IPollFunctions | IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
2022-11-08 06:28:21 -08:00
|
|
|
_option: IDataObject = {},
|
2022-08-01 13:47:55 -07:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-02-21 02:41:08 -08:00
|
|
|
const BASE_URL = 'https://api.clockify.me/api/v1';
|
2020-02-03 14:11:35 -08:00
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
qs,
|
|
|
|
body,
|
|
|
|
uri: `${BASE_URL}/${resource}`,
|
2020-10-04 07:28:05 -07:00
|
|
|
json: true,
|
|
|
|
useQuerystring: true,
|
2020-02-03 14:11:35 -08:00
|
|
|
};
|
2020-10-04 07:28:05 -07:00
|
|
|
|
2020-02-03 14:11:35 -08:00
|
|
|
try {
|
2022-06-29 00:04:36 -07:00
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'clockifyApi', options);
|
2020-02-03 14:11:35 -08:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-02-03 14:11:35 -08:00
|
|
|
}
|
|
|
|
}
|
2020-10-04 07:28:05 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function clockifyApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | IPollFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-10-04 07:28:05 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
|
|
|
|
query['page-size'] = 50;
|
|
|
|
|
|
|
|
query.page = 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await clockifyApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
|
|
|
|
returnData.push.apply(returnData, responseData);
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
if (query.limit && returnData.length >= query.limit) {
|
2020-10-04 07:28:05 -07:00
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
query.page++;
|
2022-08-01 13:47:55 -07:00
|
|
|
} while (responseData.length !== 0);
|
2020-10-04 07:28:05 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|