2023-09-04 08:15:52 -07:00
|
|
|
import type {
|
|
|
|
IDataObject,
|
|
|
|
IExecuteFunctions,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
|
|
caseRLC,
|
|
|
|
genericFiltersCollection,
|
|
|
|
returnAllAndLimit,
|
|
|
|
sortCollection,
|
|
|
|
searchOptions,
|
|
|
|
} from '../../descriptions';
|
|
|
|
import { theHiveApiQuery } from '../../transport';
|
|
|
|
import type { QueryScope } from '../../helpers/interfaces';
|
2023-10-27 05:15:02 -07:00
|
|
|
import { updateDisplayOptions, wrapData } from '@utils/utilities';
|
2023-09-04 08:15:52 -07:00
|
|
|
|
|
|
|
const properties: INodeProperties[] = [
|
|
|
|
{
|
|
|
|
displayName: 'Search in Knowledge Base',
|
|
|
|
name: 'searchInKnowledgeBase',
|
|
|
|
type: 'boolean',
|
|
|
|
default: true,
|
|
|
|
description: 'Whether to search in knowledge base or only in the selected case',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
...caseRLC,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
searchInKnowledgeBase: [false],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
...returnAllAndLimit,
|
|
|
|
genericFiltersCollection,
|
|
|
|
sortCollection,
|
|
|
|
{
|
|
|
|
...searchOptions,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
returnAll: [true],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const displayOptions = {
|
|
|
|
show: {
|
|
|
|
resource: ['page'],
|
|
|
|
operation: ['search'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number): Promise<INodeExecutionData[]> {
|
|
|
|
let responseData: IDataObject | IDataObject[] = [];
|
|
|
|
|
|
|
|
const searchInKnowledgeBase = this.getNodeParameter('searchInKnowledgeBase', i) as boolean;
|
|
|
|
const filtersValues = this.getNodeParameter('filters.values', i, []) as IDataObject[];
|
|
|
|
const sortFields = this.getNodeParameter('sort.fields', i, []) as IDataObject[];
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', i);
|
|
|
|
let returnCount = false;
|
|
|
|
if (!returnAll) {
|
|
|
|
returnCount = this.getNodeParameter('options.returnCount', i, false) as boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
let limit;
|
|
|
|
let scope: QueryScope;
|
|
|
|
|
|
|
|
if (searchInKnowledgeBase) {
|
|
|
|
scope = { query: 'listOrganisationPage' };
|
|
|
|
} else {
|
|
|
|
const caseId = this.getNodeParameter('caseId', i, '', { extractValue: true }) as string;
|
|
|
|
scope = { query: 'getCase', id: caseId, restrictTo: 'pages' };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!returnAll) {
|
|
|
|
limit = this.getNodeParameter('limit', i);
|
|
|
|
}
|
|
|
|
|
|
|
|
responseData = await theHiveApiQuery.call(
|
|
|
|
this,
|
|
|
|
scope,
|
|
|
|
filtersValues,
|
|
|
|
sortFields,
|
|
|
|
limit,
|
|
|
|
returnCount,
|
|
|
|
);
|
|
|
|
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(wrapData(responseData), {
|
|
|
|
itemData: { item: i },
|
|
|
|
});
|
|
|
|
|
|
|
|
return executionData;
|
|
|
|
}
|