Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
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;
|
|
}
|