Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

125 lines
2.7 KiB
TypeScript

import type {
IDataObject,
IExecuteFunctions,
IHookFunctions,
IHttpRequestMethods,
ILoadOptionsFunctions,
IRequestOptions,
IWebhookFunctions,
JsonObject,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function sentryIoApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
method: IHttpRequestMethods,
resource: string,
body: any = {},
qs: IDataObject = {},
uri?: string,
option: IDataObject = {},
): Promise<any> {
const authentication = this.getNodeParameter('authentication', 0);
const options = {
headers: {},
method,
qs,
body,
uri: uri || `https://sentry.io${resource}`,
json: true,
} satisfies IRequestOptions;
if (!Object.keys(body as IDataObject).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 === 'oAuth2') {
return await this.helpers.requestOAuth2.call(this, 'sentryIoOAuth2Api', options);
}
if (authentication === 'accessToken') {
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}`,
};
return await this.helpers.request(options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}
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"');
}
}
export async function sentryApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
resource: string,
body: any = {},
query: IDataObject = {},
): Promise<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 as string);
returnData.push.apply(returnData, responseData.body as IDataObject[]);
const limit = query.limit as number | undefined;
if (limit && limit >= returnData.length) {
return;
}
} while (hasMore(link as string));
return returnData;
}