mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
7ce7285f7a
* Changes to types so that credentials can be always loaded from DB This first commit changes all return types from the execute functions and calls to get credentials to be async so we can use await. This is a first step as previously credentials were loaded in memory and always available. We will now be loading them from the DB which requires turning the whole call chain async. * Fix updated files * Removed unnecessary credential loading to improve performance * Fix typo * ⚡ Fix issue * Updated new nodes to load credentials async * ⚡ Remove not needed comment Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
120 lines
2.7 KiB
TypeScript
120 lines
2.7 KiB
TypeScript
import {
|
|
OptionsWithUri
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
IExecuteSingleFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
IWebhookFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject, NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function sentryIoApiRequest(this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
const authentication = this.getNodeParameter('authentication', 0);
|
|
|
|
const version = this.getNodeParameter('sentryVersion', 0);
|
|
|
|
const options: OptionsWithUri = {
|
|
headers: {},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri: uri || `https://sentry.io${resource}`,
|
|
json: true,
|
|
};
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
|
|
if (Object.keys(option).length !== 0) {
|
|
Object.assign(options, option);
|
|
}
|
|
|
|
if (options.qs.limit) {
|
|
delete options.qs.limit;
|
|
}
|
|
|
|
let credentialName;
|
|
|
|
try {
|
|
if (authentication === 'accessToken') {
|
|
|
|
if (version === 'cloud') {
|
|
credentialName = 'sentryIoApi';
|
|
} else {
|
|
credentialName = 'sentryIoServerApi';
|
|
}
|
|
|
|
const credentials = await this.getCredentials(credentialName);
|
|
|
|
if (credentials?.url) {
|
|
options.uri = `${credentials?.url}${resource}`;
|
|
}
|
|
|
|
options.headers = {
|
|
Authorization: `Bearer ${credentials?.token}`,
|
|
};
|
|
|
|
//@ts-ignore
|
|
return this.helpers.request(options);
|
|
|
|
} else {
|
|
|
|
return await this.helpers.requestOAuth2!.call(this, 'sentryIoOAuth2Api', options);
|
|
}
|
|
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function sentryApiRequestAllItems(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
|
|
let link;
|
|
|
|
let uri: string | undefined;
|
|
|
|
do {
|
|
responseData = await sentryIoApiRequest.call(this, method, resource, body, query, uri, { resolveWithFullResponse: true });
|
|
link = responseData.headers.link;
|
|
uri = getNext(link);
|
|
returnData.push.apply(returnData, responseData.body);
|
|
if (query.limit && (query.limit >= returnData.length)) {
|
|
return;
|
|
}
|
|
} while (
|
|
hasMore(link)
|
|
);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
function getNext(link: string) {
|
|
if (link === undefined) {
|
|
return;
|
|
}
|
|
const next = link.split(',')[1];
|
|
if (next.includes('rel="next"')) {
|
|
return next.split(';')[0].replace('<', '').replace('>', '').trim();
|
|
}
|
|
}
|
|
|
|
function hasMore(link: string) {
|
|
if (link === undefined) {
|
|
return;
|
|
}
|
|
const next = link.split(',')[1];
|
|
if (next.includes('rel="next"')) {
|
|
return next.includes('results="true"');
|
|
}
|
|
}
|