mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
ILoadOptionsFunctions,
|
|
IPollFunctions,
|
|
IDataObject,
|
|
IHttpRequestMethods,
|
|
IRequestOptions,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function clockifyApiRequest(
|
|
this: ILoadOptionsFunctions | IPollFunctions | IExecuteFunctions,
|
|
method: IHttpRequestMethods,
|
|
resource: string,
|
|
|
|
body: any = {},
|
|
qs: IDataObject = {},
|
|
_uri?: string,
|
|
_option: IDataObject = {},
|
|
): Promise<any> {
|
|
const BASE_URL = 'https://api.clockify.me/api/v1';
|
|
|
|
const options: IRequestOptions = {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: `${BASE_URL}/${resource}`,
|
|
json: true,
|
|
useQuerystring: true,
|
|
};
|
|
return await this.helpers.requestWithAuthentication.call(this, 'clockifyApi', options);
|
|
}
|
|
|
|
export async function clockifyApiRequestAllItems(
|
|
this: IExecuteFunctions | IPollFunctions | ILoadOptionsFunctions,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
|
|
body: any = {},
|
|
query: IDataObject = {},
|
|
): Promise<any> {
|
|
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 as IDataObject[]);
|
|
|
|
const limit = query.limit as number | undefined;
|
|
if (limit && returnData.length >= limit) {
|
|
return returnData;
|
|
}
|
|
|
|
query.page++;
|
|
} while (responseData.length !== 0);
|
|
|
|
return returnData;
|
|
}
|