n8n/packages/nodes-base/nodes/Trello/GenericFunctions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.2 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2019-07-12 08:54:15 -07:00
import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
ILoadOptionsFunctions,
} from 'n8n-workflow';
2019-07-12 08:54:15 -07:00
/**
* Make an API request to Trello
*
*/
export async function apiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: string,
endpoint: string,
body: object,
query?: IDataObject,
): Promise<any> {
query = query || {};
2019-07-12 08:54:15 -07:00
const options: OptionsWithUri = {
method,
body,
qs: query,
uri: `https://api.trello.com/1/${endpoint}`,
json: true,
};
return this.helpers.requestWithAuthentication.call(this, 'trelloApi', options);
2019-07-12 08:54:15 -07:00
}
export async function apiRequestAllItems(
this: IHookFunctions | IExecuteFunctions,
method: string,
endpoint: string,
body: IDataObject,
query: IDataObject = {},
): 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 as IDataObject[]);
if (responseData.length !== 0) {
query.before = responseData[responseData.length - 1].id;
}
} while (query.limit <= responseData.length);
return returnData;
}