mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
e77fd5d286
Ensure all errors in `nodes-base` are `ApplicationError` or children of it and contain no variables in the message, to continue normalizing all the backend errors we report to Sentry. Also, skip reporting to Sentry errors from user input and from external APIs. In future we should refine `ApplicationError` to more specific errors. Follow-up to: [#7877](https://github.com/n8n-io/n8n/pull/7877) - [x] Test workflows: https://github.com/n8n-io/n8n/actions/runs/7084627970 - [x] e2e: https://github.com/n8n-io/n8n/actions/runs/7084936861 --------- Co-authored-by: Michael Kret <michael.k@radency.com>
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
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;
|
|
}
|
|
}
|