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

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

62 lines
1.5 KiB
TypeScript
Raw Normal View History

import type {
IExecuteFunctions,
IDataObject,
JsonObject,
IHttpRequestMethods,
IHttpRequestOptions,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
2020-11-10 10:15:56 -08:00
export async function gotifyApiRequest(
context: IExecuteFunctions,
method: IHttpRequestMethods,
path: string,
body: any = {},
qs: IDataObject = {},
uri?: string | undefined,
_option = {},
): Promise<any> {
const credentials = await context.getCredentials('gotifyApi');
2020-11-10 10:15:56 -08:00
const options: IHttpRequestOptions = {
2020-11-10 10:15:56 -08:00
method,
body,
qs,
url: uri ?? `${credentials.url}${path}`,
2020-11-10 10:15:56 -08:00
json: true,
skipSslCertificateValidation: credentials.ignoreSSLIssues as boolean,
2020-11-10 10:15:56 -08:00
};
try {
if (Object.keys(body as IDataObject).length === 0) {
2020-11-10 10:15:56 -08:00
delete options.body;
}
return await context.helpers.httpRequestWithAuthentication.call(context, 'gotifyApi', options);
2020-11-10 10:15:56 -08:00
} catch (error) {
throw new NodeApiError(context.getNode(), error as JsonObject);
2020-11-10 10:15:56 -08:00
}
}
export async function gotifyApiRequestAllItems(
context: IExecuteFunctions,
propertyName: string,
method: IHttpRequestMethods,
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(context, method, endpoint, body, query, uri);
2020-11-10 10:15:56 -08:00
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;
}