mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
} from 'n8n-workflow';
|
|
|
|
import { get } from 'lodash';
|
|
|
|
export async function invoiceNinjaApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: any = {}, query?: IDataObject, uri?: string): Promise<any> { // tslint:disable-line:no-any
|
|
const credentials = this.getCredentials('invoiceNinjaApi');
|
|
if (credentials === undefined) {
|
|
throw new Error('No credentials got returned!');
|
|
}
|
|
|
|
const baseUrl = credentials!.url || 'https://app.invoiceninja.com';
|
|
const options: OptionsWithUri = {
|
|
headers: {
|
|
Accept: 'application/json',
|
|
'X-Ninja-Token': credentials.apiToken,
|
|
},
|
|
method,
|
|
qs: query,
|
|
uri: uri || `${baseUrl}/api/v1${endpoint}`,
|
|
body,
|
|
json: true
|
|
};
|
|
try {
|
|
return await this.helpers.request!(options);
|
|
} catch (error) {
|
|
if (error.response && error.response.body && error.response.body.errors) {
|
|
// Try to return the error prettier
|
|
const errorMessages = Object.keys(error.response.body.errors).map(errorName => {
|
|
return (error.response.body.errors[errorName] as [string]).join('');
|
|
});
|
|
throw new Error(`Invoice Ninja error response [${error.statusCode}]: ${errorMessages.join(' | ')}`);
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
export async function invoiceNinjaApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
let uri;
|
|
query.per_page = 100;
|
|
|
|
do {
|
|
responseData = await invoiceNinjaApiRequest.call(this, method, endpoint, body, query, uri);
|
|
const next = get(responseData, 'meta.pagination.links.next') as string | undefined;
|
|
if (next) {
|
|
uri = next;
|
|
}
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
} while (
|
|
responseData.meta !== undefined &&
|
|
responseData.meta.pagination &&
|
|
responseData.meta.pagination.links &&
|
|
responseData.meta.pagination.links.next
|
|
);
|
|
|
|
return returnData;
|
|
}
|