mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
|
import type {
|
||
|
IExecuteFunctions,
|
||
|
INodeExecutionData,
|
||
|
INodeType,
|
||
|
INodeTypeDescription,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
import * as read from './actions/read.operation';
|
||
|
import * as write from './actions/write.operation';
|
||
|
|
||
|
export class ReadWriteFile implements INodeType {
|
||
|
description: INodeTypeDescription = {
|
||
|
displayName: 'Read/Write Files from Disk',
|
||
|
name: 'readWriteFile',
|
||
|
icon: 'file:readWriteFile.svg',
|
||
|
group: ['input'],
|
||
|
version: 1,
|
||
|
description: 'Read or write files from the computer that runs n8n',
|
||
|
defaults: {
|
||
|
name: 'Read/Write Files from Disk',
|
||
|
},
|
||
|
inputs: ['main'],
|
||
|
outputs: ['main'],
|
||
|
properties: [
|
||
|
{
|
||
|
displayName:
|
||
|
'Use this node to read and write files on the same computer running n8n. To handle files between different computers please use other nodes (e.g. FTP, HTTP Request, AWS).',
|
||
|
name: 'info',
|
||
|
type: 'notice',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
noDataExpression: true,
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Read File(s) From Disk',
|
||
|
value: 'read',
|
||
|
description: 'Retrieve one or more files from the computer that runs n8n',
|
||
|
action: 'Read File(s) From Disk',
|
||
|
},
|
||
|
{
|
||
|
name: 'Write File to Disk',
|
||
|
value: 'write',
|
||
|
description: 'Create a binary file on the computer that runs n8n',
|
||
|
action: 'Write File to Disk',
|
||
|
},
|
||
|
],
|
||
|
default: 'read',
|
||
|
},
|
||
|
...read.description,
|
||
|
...write.description,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
async execute(this: IExecuteFunctions) {
|
||
|
const operation = this.getNodeParameter('operation', 0, 'read');
|
||
|
const items = this.getInputData();
|
||
|
let returnData: INodeExecutionData[] = [];
|
||
|
|
||
|
if (operation === 'read') {
|
||
|
returnData = await read.execute.call(this, items);
|
||
|
}
|
||
|
|
||
|
if (operation === 'write') {
|
||
|
returnData = await write.execute.call(this, items);
|
||
|
}
|
||
|
|
||
|
return [returnData];
|
||
|
}
|
||
|
}
|