feat(TheHive Node): Overhaul (#6457)
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
||||
import { theHiveApiRequest } from '../../transport';
|
||||
import { logRLC } from '../../descriptions';
|
||||
|
||||
const properties: INodeProperties[] = [logRLC];
|
||||
|
||||
const displayOptions = {
|
||||
show: {
|
||||
resource: ['log'],
|
||||
operation: ['get'],
|
||||
},
|
||||
};
|
||||
|
||||
export const description = updateDisplayOptions(displayOptions, properties);
|
||||
|
||||
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
||||
let responseData: IDataObject | IDataObject[] = [];
|
||||
|
||||
const logId = this.getNodeParameter('logId', i, '', { extractValue: true }) as string;
|
||||
|
||||
const body = {
|
||||
query: [
|
||||
{
|
||||
_name: 'getLog',
|
||||
idOrName: logId,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
responseData = await theHiveApiRequest.call(this, 'POST', '/v1/query', body);
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
||||
itemData: { item: i },
|
||||
});
|
||||
|
||||
return executionData;
|
||||
}
|
||||
Reference in New Issue
Block a user