mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(TheHive Node): Overhaul (#6457)
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeOperationError, jsonParse } from 'n8n-workflow';
|
||||
|
||||
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
||||
import { theHiveApiRequest } from '../../transport';
|
||||
|
||||
const properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Query',
|
||||
name: 'queryJson',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: '=[\n {\n "_name": "listOrganisation"\n }\n]',
|
||||
description: 'Search for objects with filtering and sorting capabilities',
|
||||
hint: 'The query should be an array of operations with the required selection and optional filtering, sorting, and pagination. See <a href="https://docs.strangebee.com/thehive/api-docs/#operation/Query%20API" target="_blank">Query API</a> for more information.',
|
||||
typeOptions: {
|
||||
editor: 'json',
|
||||
rows: 10,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
const displayOptions = {
|
||||
show: {
|
||||
resource: ['query'],
|
||||
operation: ['executeQuery'],
|
||||
},
|
||||
};
|
||||
|
||||
export const description = updateDisplayOptions(displayOptions, properties);
|
||||
|
||||
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
||||
let responseData: IDataObject | IDataObject[] = [];
|
||||
|
||||
const queryJson = this.getNodeParameter('queryJson', i) as string;
|
||||
|
||||
let query: IDataObject = {};
|
||||
if (typeof queryJson === 'object') {
|
||||
query = queryJson;
|
||||
} else {
|
||||
query = jsonParse<IDataObject>(queryJson, {
|
||||
errorMessage: 'Query JSON must be a valid JSON object',
|
||||
});
|
||||
}
|
||||
|
||||
if (query.query) {
|
||||
query = query.query as IDataObject;
|
||||
}
|
||||
|
||||
if (!Array.isArray(query)) {
|
||||
throw new NodeOperationError(
|
||||
this.getNode(),
|
||||
'The query should be an array of operations with the required selection and optional filtering, sorting, and pagination',
|
||||
);
|
||||
}
|
||||
|
||||
const body: IDataObject = {
|
||||
query,
|
||||
};
|
||||
|
||||
responseData = await theHiveApiRequest.call(this, 'POST', '/v1/query', body);
|
||||
|
||||
if (typeof responseData !== 'object') {
|
||||
responseData = { queryResult: responseData };
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
||||
itemData: { item: i },
|
||||
});
|
||||
|
||||
return executionData;
|
||||
}
|
||||
Reference in New Issue
Block a user