mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
8bd99e0600
* 🔥 Remove impertinent Jsdocs comments
* Lint fixes
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
import { IDataObject, JsonObject, NodeApiError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to Trello
|
|
*
|
|
*/
|
|
export async function apiRequest(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: object,
|
|
query?: IDataObject,
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
query = query || {};
|
|
|
|
const options: OptionsWithUri = {
|
|
method,
|
|
body,
|
|
qs: query,
|
|
uri: `https://api.trello.com/1/${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.requestWithAuthentication.call(this, 'trelloApi', options);
|
|
} catch (error) {
|
|
if (error instanceof NodeApiError) {
|
|
throw error;
|
|
}
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
}
|
|
}
|
|
|
|
export async function apiRequestAllItems(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: IDataObject,
|
|
query: IDataObject = {},
|
|
// tslint:disable-next-line:no-any
|
|
): Promise<any> {
|
|
query.limit = 30;
|
|
|
|
query.sort = '-id';
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
|
|
do {
|
|
responseData = await apiRequest.call(this, method, endpoint, body, query);
|
|
returnData.push.apply(returnData, responseData);
|
|
if (responseData.length !== 0) {
|
|
query.before = responseData[responseData.length - 1].id;
|
|
}
|
|
} while (query.limit <= responseData.length);
|
|
|
|
return returnData;
|
|
}
|