2022-08-01 13:47:55 -07:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
|
|
|
|
import { IDataObject, ILoadOptionsFunctions, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
|
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import { Connector, ElasticSecurityApiCredentials } from './types';
|
2021-09-22 08:48:50 -07:00
|
|
|
|
|
|
|
export async function elasticSecurityApiRequest(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
) {
|
|
|
|
const {
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
baseUrl: rawBaseUrl,
|
2022-08-01 13:47:55 -07:00
|
|
|
} = (await this.getCredentials('elasticSecurityApi')) as ElasticSecurityApiCredentials;
|
2021-09-22 08:48:50 -07:00
|
|
|
|
|
|
|
const baseUrl = tolerateTrailingSlash(rawBaseUrl);
|
|
|
|
|
|
|
|
const token = Buffer.from(`${username}:${password}`).toString('base64');
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
Authorization: `Basic ${token}`,
|
|
|
|
'kbn-xsrf': true,
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: `${baseUrl}/api${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) {
|
|
|
|
if (error?.error?.error === 'Not Acceptable' && error?.error?.message) {
|
|
|
|
error.error.error = `${error.error.error}: ${error.error.message}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new NodeApiError(this.getNode(), error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function elasticSecurityApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
) {
|
2022-11-08 06:28:21 -08:00
|
|
|
let _page = 1;
|
2021-09-22 08:48:50 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData: any; // tslint:disable-line
|
|
|
|
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as 'case' | 'caseComment';
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await elasticSecurityApiRequest.call(this, method, endpoint, body, qs);
|
2022-11-08 06:28:21 -08:00
|
|
|
_page++;
|
2021-09-22 08:48:50 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
const items = resource === 'case' ? responseData.cases : responseData;
|
2021-09-22 08:48:50 -07:00
|
|
|
|
|
|
|
returnData.push(...items);
|
|
|
|
} while (returnData.length < responseData.total);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function handleListing(
|
|
|
|
this: IExecuteFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
) {
|
2022-11-18 05:31:38 -08:00
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0);
|
2021-09-22 08:48:50 -07:00
|
|
|
|
|
|
|
if (returnAll) {
|
|
|
|
return await elasticSecurityApiRequestAllItems.call(this, method, endpoint, body, qs);
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
const responseData = await elasticSecurityApiRequestAllItems.call(
|
|
|
|
this,
|
|
|
|
method,
|
|
|
|
endpoint,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
);
|
2021-09-22 08:48:50 -07:00
|
|
|
const limit = this.getNodeParameter('limit', 0) as number;
|
|
|
|
|
|
|
|
return responseData.slice(0, limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a connector name and type from a connector ID.
|
|
|
|
*
|
|
|
|
* https://www.elastic.co/guide/en/kibana/master/get-connector-api.html
|
|
|
|
*/
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function getConnector(this: IExecuteFunctions, connectorId: string) {
|
2021-09-22 08:48:50 -07:00
|
|
|
const endpoint = `/actions/connector/${connectorId}`;
|
|
|
|
const {
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
connector_type_id: type,
|
2022-08-01 13:47:55 -07:00
|
|
|
} = (await elasticSecurityApiRequest.call(this, 'GET', endpoint)) as Connector;
|
2021-09-22 08:48:50 -07:00
|
|
|
|
|
|
|
return { id, name, type };
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export function throwOnEmptyUpdate(this: IExecuteFunctions, resource: string) {
|
2021-09-22 08:48:50 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`Please enter at least one field to update for the ${resource}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
export async function getVersion(this: IExecuteFunctions, endpoint: string) {
|
|
|
|
const { version } = (await elasticSecurityApiRequest.call(this, 'GET', endpoint)) as {
|
2021-09-22 08:48:50 -07:00
|
|
|
version?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!version) {
|
|
|
|
throw new NodeOperationError(this.getNode(), 'Cannot retrieve version for resource');
|
|
|
|
}
|
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function tolerateTrailingSlash(baseUrl: string) {
|
2022-08-01 13:47:55 -07:00
|
|
|
return baseUrl.endsWith('/') ? baseUrl.substr(0, baseUrl.length - 1) : baseUrl;
|
2021-09-22 08:48:50 -07:00
|
|
|
}
|