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>
101 lines
2.5 KiB
TypeScript
101 lines
2.5 KiB
TypeScript
import type { IDataObject, IExecuteFunctions, INodeProperties } from 'n8n-workflow';
|
|
import { microsoftApiRequest, microsoftApiRequestAllItems } from '../../transport';
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
import { messageRLC, returnAllOrLimit } from '../../descriptions';
|
|
|
|
export const properties: INodeProperties[] = [
|
|
messageRLC,
|
|
...returnAllOrLimit,
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'fields',
|
|
type: 'multiOptions',
|
|
description: 'The fields to add to the output',
|
|
default: [],
|
|
options: [
|
|
{
|
|
name: 'contentType',
|
|
value: 'contentType',
|
|
},
|
|
{
|
|
name: 'isInline',
|
|
value: 'isInline',
|
|
},
|
|
{
|
|
name: 'lastModifiedDateTime',
|
|
value: 'lastModifiedDateTime',
|
|
},
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
|
name: 'name',
|
|
value: 'name',
|
|
},
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
|
name: 'size',
|
|
value: 'size',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['messageAttachment'],
|
|
operation: ['getAll'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, index: number) {
|
|
let responseData;
|
|
const qs = {} as IDataObject;
|
|
|
|
const messageId = this.getNodeParameter('messageId', index, undefined, {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', index);
|
|
const options = this.getNodeParameter('options', index);
|
|
|
|
// Have sane defaults so we don't fetch attachment data in this operation
|
|
qs.$select = 'id,lastModifiedDateTime,name,contentType,size,isInline';
|
|
|
|
if (options.fields && (options.fields as string[]).length) {
|
|
qs.$select = (options.fields as string[]).map((field) => field.trim()).join(',');
|
|
}
|
|
|
|
const endpoint = `/messages/${messageId}/attachments`;
|
|
if (returnAll) {
|
|
responseData = await microsoftApiRequestAllItems.call(
|
|
this,
|
|
'value',
|
|
'GET',
|
|
endpoint,
|
|
undefined,
|
|
qs,
|
|
);
|
|
} else {
|
|
qs.$top = this.getNodeParameter('limit', index);
|
|
responseData = await microsoftApiRequest.call(this, 'GET', endpoint, undefined, qs);
|
|
responseData = responseData.value;
|
|
}
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData as IDataObject),
|
|
{ itemData: { item: index } },
|
|
);
|
|
|
|
return executionData;
|
|
}
|