mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
[N8N-4995](https://linear.app/n8n/issue/N8N-4995) --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
112 lines
2.9 KiB
TypeScript
112 lines
2.9 KiB
TypeScript
import type { IDataObject, IExecuteFunctions, INodeProperties } from 'n8n-workflow';
|
|
import { getSubfolders, microsoftApiRequest, microsoftApiRequestAllItems } from '../../transport';
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
import { folderFields, folderRLC, returnAllOrLimit } from '../../descriptions';
|
|
|
|
export const properties: INodeProperties[] = [
|
|
...returnAllOrLimit,
|
|
{
|
|
displayName: 'Filters',
|
|
name: 'filters',
|
|
type: 'collection',
|
|
placeholder: 'Add Filter',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Filter Query',
|
|
name: 'filter',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: "e.g. displayName eq 'My Folder'",
|
|
hint: 'Search query to filter folders. <a href="https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter">More info</a>.',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'fields',
|
|
type: 'multiOptions',
|
|
description: 'The fields to add to the output',
|
|
options: folderFields,
|
|
default: [],
|
|
},
|
|
{
|
|
displayName: 'Include Child Folders',
|
|
name: 'includeChildFolders',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to include child folders in the response',
|
|
},
|
|
{
|
|
...folderRLC,
|
|
displayName: 'Parent Folder',
|
|
required: false,
|
|
description: 'The folder you want to search in',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['folder'],
|
|
operation: ['getAll'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, index: number) {
|
|
let responseData;
|
|
const qs: IDataObject = {};
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', index);
|
|
const options = this.getNodeParameter('options', index);
|
|
const filter = this.getNodeParameter('filters.filter', index, '') as string;
|
|
|
|
const parentFolderId = this.getNodeParameter('options.folderId', index, '', {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
if (options.fields) {
|
|
qs.$select = (options.fields as string[]).join(',');
|
|
}
|
|
|
|
if (filter) {
|
|
qs.$filter = filter;
|
|
}
|
|
|
|
let endpoint;
|
|
if (parentFolderId) {
|
|
endpoint = `/mailFolders/${parentFolderId}/childFolders`;
|
|
} else {
|
|
endpoint = '/mailFolders';
|
|
}
|
|
|
|
if (returnAll) {
|
|
responseData = await microsoftApiRequestAllItems.call(this, 'value', 'GET', endpoint, {}, qs);
|
|
} else {
|
|
qs.$top = this.getNodeParameter('limit', index);
|
|
responseData = await microsoftApiRequest.call(this, 'GET', endpoint, {}, qs);
|
|
responseData = responseData.value;
|
|
}
|
|
|
|
if (options.includeChildFolders) {
|
|
responseData = await getSubfolders.call(this, responseData as IDataObject[]);
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
|
{ itemData: { item: index } },
|
|
);
|
|
|
|
return executionData;
|
|
}
|