- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
import type { IDataObject, IExecuteFunctions, INodeProperties } from 'n8n-workflow';
|
|
import { microsoftApiRequest } from '../../transport';
|
|
import { attachmentRLC, messageRLC } from '../../descriptions';
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
|
|
export const properties: INodeProperties[] = [
|
|
messageRLC,
|
|
attachmentRLC,
|
|
{
|
|
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',
|
|
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: ['get'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, index: number) {
|
|
const qs: IDataObject = {};
|
|
|
|
const messageId = this.getNodeParameter('messageId', index, undefined, {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
const attachmentId = this.getNodeParameter('attachmentId', index, undefined, {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
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 responseData = await microsoftApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/messages/${messageId}/attachments/${attachmentId}`,
|
|
undefined,
|
|
qs,
|
|
);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
this.helpers.returnJsonArray(responseData as IDataObject),
|
|
{ itemData: { item: index } },
|
|
);
|
|
|
|
return executionData;
|
|
}
|