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

67 lines
1.7 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
2020-11-10 10:15:56 -08:00
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
2020-11-10 10:15:56 -08:00
import type { IDataObject, JsonObject } from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-11-10 10:15:56 -08:00
export async function gotifyApiRequest(
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
method: string,
path: string,
body: any = {},
qs: IDataObject = {},
uri?: string | undefined,
_option = {},
): Promise<any> {
const credentials = await this.getCredentials('gotifyApi');
2020-11-10 10:15:56 -08:00
const options: OptionsWithUri = {
method,
headers: {
'X-Gotify-Key': method === 'POST' ? credentials.appApiToken : credentials.clientApiToken,
2020-11-10 10:15:56 -08:00
accept: 'application/json',
},
body,
qs,
uri: uri || `${credentials.url}${path}`,
2020-11-10 10:15:56 -08:00
json: true,
};
try {
if (Object.keys(body as IDataObject).length === 0) {
2020-11-10 10:15:56 -08:00
delete options.body;
}
//@ts-ignore
return await this.helpers.request.call(this, options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
2020-11-10 10:15:56 -08:00
}
}
export async function gotifyApiRequestAllItems(
this: IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
method: string,
endpoint: string,
body: any = {},
query: IDataObject = {},
): Promise<any> {
2020-11-10 10:15:56 -08:00
const returnData: IDataObject[] = [];
let responseData;
let uri: string | undefined;
query.limit = 100;
do {
responseData = await gotifyApiRequest.call(this, method, endpoint, body, query, uri);
if (responseData.paging.next) {
uri = responseData.paging.next;
}
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
} while (responseData.paging.next);
2020-11-10 10:15:56 -08:00
return returnData;
}