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

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

55 lines
1.3 KiB
TypeScript
Raw Normal View History

import type { OptionsWithUri } from 'request';
import {
ApplicationError,
type IDataObject,
type IExecuteFunctions,
type IHookFunctions,
type ILoadOptionsFunctions,
type IWebhookFunctions,
} from 'n8n-workflow';
import { BASE_URL } from './constants';
export async function lonescaleApiRequest(
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: IDataObject = {},
query: IDataObject = {},
uri?: string,
) {
const endpoint = `${BASE_URL}`;
const credentials = await this.getCredentials('loneScaleApi');
const options: OptionsWithUri = {
headers: {
'Content-Type': 'application/json',
'X-API-KEY': credentials?.apiKey,
},
method,
body,
qs: query,
uri: uri || `${endpoint}${resource}`,
json: true,
};
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(query).length) {
delete options.qs;
}
try {
return await this.helpers.requestWithAuthentication.call(this, 'loneScaleApi', options);
} catch (error) {
if (error.response) {
const errorMessage =
error.response.body.message || error.response.body.description || error.message;
throw new ApplicationError(
`Autopilot error response [${error.statusCode}]: ${errorMessage}`,
{ level: 'warning' },
);
}
throw error;
}
}