2023-09-04 08:15:52 -07:00
|
|
|
import type {
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
import { theHiveApiRequest } from '../../transport';
|
|
|
|
import { alertRLC } from '../../descriptions';
|
|
|
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
|
|
|
|
|
|
|
const properties: INodeProperties[] = [
|
|
|
|
alertRLC,
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
type: 'collection',
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Case Template Name or ID',
|
|
|
|
name: 'caseTemplate',
|
|
|
|
type: 'options',
|
|
|
|
description:
|
2024-09-12 07:53:36 -07:00
|
|
|
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
2023-09-04 08:15:52 -07:00
|
|
|
default: '',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'loadCaseTemplate',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const displayOptions = {
|
|
|
|
show: {
|
|
|
|
resource: ['alert'],
|
|
|
|
operation: ['promote'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
|
|
let responseData: IDataObject | IDataObject[] = [];
|
|
|
|
|
|
|
|
const alertId = this.getNodeParameter('alertId', i, '', { extractValue: true }) as string;
|
|
|
|
const caseTemplate = this.getNodeParameter('options.caseTemplate', i, '') as string;
|
|
|
|
|
|
|
|
const body: IDataObject = {};
|
|
|
|
|
|
|
|
// await theHiveApiRequest.call(this, 'POST', '/v1/caseTemplate', {
|
|
|
|
// name: 'test template 001',
|
|
|
|
// displayName: 'Test Template 001',
|
|
|
|
// description: 'test',
|
|
|
|
// });
|
|
|
|
|
|
|
|
if (caseTemplate) {
|
|
|
|
body.caseTemplate = caseTemplate;
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await theHiveApiRequest.call(this, 'POST', `/v1/alert/${alertId}/case`, body);
|
|
|
|
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
|
|
|
itemData: { item: i },
|
|
|
|
});
|
|
|
|
|
|
|
|
return executionData;
|
|
|
|
}
|