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
64 lines
1.5 KiB
TypeScript
64 lines
1.5 KiB
TypeScript
import type { IExecuteFunctions, IDataObject, IRequestOptions } from 'n8n-workflow';
|
|
|
|
export async function urlScanIoApiRequest(
|
|
this: IExecuteFunctions,
|
|
method: 'GET' | 'POST',
|
|
endpoint: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
) {
|
|
const options: IRequestOptions = {
|
|
method,
|
|
body,
|
|
qs,
|
|
uri: `https://urlscan.io/api/v1${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
|
|
if (!Object.keys(qs).length) {
|
|
delete options.qs;
|
|
}
|
|
|
|
return await this.helpers.requestWithAuthentication.call(this, 'urlScanIoApi', options);
|
|
}
|
|
|
|
export async function handleListing(
|
|
this: IExecuteFunctions,
|
|
endpoint: string,
|
|
qs: IDataObject = {},
|
|
): Promise<IDataObject[]> {
|
|
const returnData: IDataObject[] = [];
|
|
let responseData;
|
|
|
|
qs.size = 100;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0, false);
|
|
const limit = this.getNodeParameter('limit', 0, 0);
|
|
|
|
do {
|
|
responseData = await urlScanIoApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
returnData.push(...(responseData.results as IDataObject[]));
|
|
|
|
if (!returnAll && returnData.length > limit) {
|
|
return returnData.slice(0, limit);
|
|
}
|
|
|
|
if (responseData.results.length) {
|
|
const lastResult = responseData.results[responseData.results.length - 1];
|
|
qs.search_after = lastResult.sort;
|
|
}
|
|
} while (responseData.total > returnData.length);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
export const normalizeId = ({ _id, uuid, ...rest }: IDataObject) => {
|
|
if (_id) return { scanId: _id, ...rest };
|
|
if (uuid) return { scanId: uuid, ...rest };
|
|
return rest;
|
|
};
|