mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
d5d4dd3845
* Notion cred updated * Airtable new cred * revamped twilio cred * urlscanlo revamp cred * Wordpress revamp cred with testing * SendGrid cred revamped * 🐛 Fix imports * 🐛 Fixes imports in urlscanio * Fix airtable cred injection * Fixes notion request, changes way of cred injection * Change auth type from method to generic * Fix minor issues * Fix lint issue Co-authored-by: Omar Ajoue <krynble@gmail.com>
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
import {
|
|
OptionsWithUri,
|
|
} from 'request';
|
|
|
|
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function urlScanIoApiRequest(
|
|
this: IExecuteFunctions,
|
|
method: 'GET' | 'POST',
|
|
endpoint: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
) {
|
|
|
|
const options: OptionsWithUri = {
|
|
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;
|
|
}
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
|
|
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) as boolean;
|
|
const limit = this.getNodeParameter('limit', 0, 0) as number;
|
|
|
|
do {
|
|
responseData = await urlScanIoApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
returnData.push(...responseData.results);
|
|
|
|
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;
|
|
};
|