mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
feat(TheHive Node): Overhaul (#6457)
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeOperationError } from 'n8n-workflow';
|
||||
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
||||
import {
|
||||
alertRLC,
|
||||
caseRLC,
|
||||
genericFiltersCollection,
|
||||
returnAllAndLimit,
|
||||
searchOptions,
|
||||
sortCollection,
|
||||
} from '../../descriptions';
|
||||
import { theHiveApiQuery } from '../../transport';
|
||||
import type { QueryScope } from '../../helpers/interfaces';
|
||||
|
||||
const properties: INodeProperties[] = [
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
displayName: 'Search in',
|
||||
name: 'searchIn',
|
||||
type: 'options',
|
||||
default: 'all',
|
||||
description:
|
||||
'Whether to search for observables in all alerts and cases or in a specific case or alert',
|
||||
options: [
|
||||
{
|
||||
name: 'Alerts and Cases',
|
||||
value: 'all',
|
||||
},
|
||||
{
|
||||
name: 'Alert',
|
||||
value: 'alert',
|
||||
},
|
||||
{
|
||||
name: 'Case',
|
||||
value: 'case',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
...caseRLC,
|
||||
displayOptions: {
|
||||
show: {
|
||||
searchIn: ['case'],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
...alertRLC,
|
||||
displayOptions: {
|
||||
show: {
|
||||
searchIn: ['alert'],
|
||||
},
|
||||
},
|
||||
},
|
||||
...returnAllAndLimit,
|
||||
genericFiltersCollection,
|
||||
sortCollection,
|
||||
searchOptions,
|
||||
];
|
||||
|
||||
const displayOptions = {
|
||||
show: {
|
||||
resource: ['observable'],
|
||||
operation: ['search'],
|
||||
},
|
||||
};
|
||||
|
||||
export const description = updateDisplayOptions(displayOptions, properties);
|
||||
|
||||
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
||||
let responseData: IDataObject | IDataObject[] = [];
|
||||
|
||||
const searchIn = this.getNodeParameter('searchIn', i) as string;
|
||||
const filtersValues = this.getNodeParameter('filters.values', i, []) as IDataObject[];
|
||||
const sortFields = this.getNodeParameter('sort.fields', i, []) as IDataObject[];
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
const { returnCount, extraData } = this.getNodeParameter('options', i);
|
||||
|
||||
let limit;
|
||||
let scope: QueryScope;
|
||||
|
||||
if (searchIn === 'all') {
|
||||
scope = { query: 'listObservable' };
|
||||
} else if (searchIn === 'alert') {
|
||||
const alertId = this.getNodeParameter('alertId', i, '', { extractValue: true }) as string;
|
||||
scope = { query: 'getAlert', id: alertId, restrictTo: 'observables' };
|
||||
} else if (searchIn === 'case') {
|
||||
const caseId = this.getNodeParameter('caseId', i, '', { extractValue: true }) as string;
|
||||
scope = { query: 'getCase', id: caseId, restrictTo: 'observables' };
|
||||
} else {
|
||||
throw new NodeOperationError(this.getNode(), `Invalid 'Search In ...' value: ${searchIn}`);
|
||||
}
|
||||
|
||||
if (!returnAll) {
|
||||
limit = this.getNodeParameter('limit', i);
|
||||
}
|
||||
|
||||
responseData = await theHiveApiQuery.call(
|
||||
this,
|
||||
scope,
|
||||
filtersValues,
|
||||
sortFields,
|
||||
limit,
|
||||
returnCount as boolean,
|
||||
extraData as string[],
|
||||
);
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
||||
itemData: { item: i },
|
||||
});
|
||||
|
||||
return executionData;
|
||||
}
|
||||
Reference in New Issue
Block a user