2019-06-23 03:35:23 -07:00
|
|
|
import {
|
|
|
|
BINARY_ENCODING,
|
|
|
|
IExecuteFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
INodeTypeDescription,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import { parseString } from 'xml2js';
|
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
|
|
|
|
export class NextCloud implements INodeType {
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
displayName: 'NextCloud',
|
|
|
|
name: 'nextCloud',
|
|
|
|
icon: 'file:nextcloud.png',
|
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
2019-07-14 09:55:04 -07:00
|
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
2019-06-23 03:35:23 -07:00
|
|
|
description: 'Access data on NextCloud',
|
|
|
|
defaults: {
|
|
|
|
name: 'NextCloud',
|
|
|
|
color: '#22BB44',
|
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
|
|
|
name: 'nextCloudApi',
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
properties: [
|
2019-07-14 08:16:56 -07:00
|
|
|
{
|
|
|
|
displayName: 'Resource',
|
|
|
|
name: 'resource',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'File',
|
|
|
|
value: 'file',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Folder',
|
|
|
|
value: 'folder',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'file',
|
|
|
|
description: 'The resource to operate on.',
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// operations
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2019-07-14 08:16:56 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Copy',
|
|
|
|
value: 'copy',
|
2019-07-14 08:16:56 -07:00
|
|
|
description: 'Copy a file',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
2019-07-14 08:16:56 -07:00
|
|
|
description: 'Delete a file',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
name: 'Download',
|
|
|
|
value: 'download',
|
|
|
|
description: 'Download a file',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Move',
|
|
|
|
value: 'move',
|
2019-07-14 08:16:56 -07:00
|
|
|
description: 'Move a file',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
name: 'Upload',
|
|
|
|
value: 'upload',
|
|
|
|
description: 'Upload a file',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
default: 'upload',
|
2019-06-23 03:35:23 -07:00
|
|
|
description: 'The operation to perform.',
|
|
|
|
},
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'folder',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Copy',
|
|
|
|
value: 'copy',
|
|
|
|
description: 'Copy a folder',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a folder',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a folder',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'List',
|
|
|
|
value: 'list',
|
|
|
|
description: 'Return the files and folders in a given folder',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Move',
|
|
|
|
value: 'move',
|
|
|
|
description: 'Move a folder',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
description: 'The operation to perform.',
|
2019-07-14 09:40:37 -07:00
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// file
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
2019-07-14 08:16:56 -07:00
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// file/folder:copy
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'From Path',
|
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'copy'
|
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
'folder',
|
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: '/invoices/original.txt',
|
|
|
|
description: 'The path of file or folder to copy.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'To Path',
|
|
|
|
name: 'toPath',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'copy'
|
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
'folder',
|
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: '/invoices/copy.txt',
|
|
|
|
description: 'The destination path of file or folder.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
2019-07-14 08:16:56 -07:00
|
|
|
// file/folder:delete
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Delete Path',
|
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete'
|
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
'folder',
|
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: 'invoices/2019/invoice_1.pdf',
|
|
|
|
description: 'The path to delete. Can be a single file or a whole folder.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
2019-07-14 08:16:56 -07:00
|
|
|
// file/folder:move
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
displayName: 'From Path',
|
2019-06-23 03:35:23 -07:00
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'move'
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
'folder',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
placeholder: '/invoices/old_name.txt',
|
|
|
|
description: 'The path of file or folder to move.',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
displayName: 'To Path',
|
|
|
|
name: 'toPath',
|
2019-06-23 03:35:23 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'move'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
'folder',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
placeholder: '/invoices/new_name.txt',
|
|
|
|
description: 'The new path of file or folder.',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
2019-07-14 08:16:56 -07:00
|
|
|
// file:download
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
displayName: 'File Path',
|
2019-06-23 03:35:23 -07:00
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'download'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
placeholder: 'invoices/2019/invoice_1.pdf',
|
|
|
|
description: 'The file path of the file to download. Has to contain the full path.',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
{
|
2019-07-14 08:16:56 -07:00
|
|
|
displayName: 'Binary Property',
|
|
|
|
name: 'binaryPropertyName',
|
2019-06-23 03:35:23 -07:00
|
|
|
type: 'string',
|
2019-07-14 08:16:56 -07:00
|
|
|
default: 'data',
|
2019-06-23 03:35:23 -07:00
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'download'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
description: 'Name of the binary property to which to<br />write the data of the read file.',
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
2019-07-14 08:16:56 -07:00
|
|
|
// file:upload
|
2019-06-23 03:35:23 -07:00
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'File Path',
|
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'upload'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: 'invoices/2019/invoice_1.pdf',
|
|
|
|
description: 'The file path of the file to upload. Has to contain the full path. The parent folder has to exist. Existing files get overwritten.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Binary Data',
|
|
|
|
name: 'binaryDataUpload',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'upload'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
description: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'File Content',
|
|
|
|
name: 'fileContent',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2019-07-14 08:16:56 -07:00
|
|
|
binaryDataUpload: [
|
2019-11-12 05:12:27 -08:00
|
|
|
false
|
2019-07-14 08:16:56 -07:00
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
operation: [
|
2019-07-14 08:16:56 -07:00
|
|
|
'upload'
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
resource: [
|
|
|
|
'file',
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
placeholder: '',
|
|
|
|
description: 'The text content of the file to upload.',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Binary Property',
|
|
|
|
name: 'binaryPropertyName',
|
|
|
|
type: 'string',
|
|
|
|
default: 'data',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
binaryDataUpload: [
|
|
|
|
true
|
|
|
|
],
|
2019-07-14 08:16:56 -07:00
|
|
|
operation: [
|
|
|
|
'upload'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'file',
|
|
|
|
],
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
placeholder: '',
|
|
|
|
description: 'Name of the binary property which contains<br />the data for the file to be uploaded.',
|
|
|
|
},
|
2019-07-14 08:16:56 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// folder
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// folder:create
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Folder',
|
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'folder',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: 'invoices/2019',
|
|
|
|
description: 'The folder to create. The parent folder has to exist.',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// folder:list
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Folder Path',
|
|
|
|
name: 'path',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'list'
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'folder',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: 'invoices/2019/',
|
|
|
|
description: 'The path of which to list the content.',
|
|
|
|
},
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2019-08-01 13:55:33 -07:00
|
|
|
const items = this.getInputData().slice();
|
2019-06-23 03:35:23 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
const credentials = this.getCredentials('nextCloudApi');
|
|
|
|
|
|
|
|
if (credentials === undefined) {
|
|
|
|
throw new Error('No credentials got returned!');
|
|
|
|
}
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
|
|
|
|
let endpoint = '';
|
|
|
|
let requestMethod = '';
|
|
|
|
|
|
|
|
let body: string | Buffer = '';
|
|
|
|
const headers: IDataObject = {};
|
|
|
|
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (resource === 'file') {
|
|
|
|
if (operation === 'download') {
|
|
|
|
// ----------------------------------
|
|
|
|
// download
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'GET';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
} else if (operation === 'upload') {
|
|
|
|
// ----------------------------------
|
|
|
|
// upload
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'PUT';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (this.getNodeParameter('binaryDataUpload', i) === true) {
|
|
|
|
// Is binary file to upload
|
|
|
|
const item = items[i];
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (item.binary === undefined) {
|
|
|
|
throw new Error('No binary data exists on item!');
|
|
|
|
}
|
|
|
|
|
|
|
|
const propertyNameUpload = this.getNodeParameter('binaryPropertyName', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (item.binary[propertyNameUpload] === undefined) {
|
|
|
|
throw new Error(`No binary data property "${propertyNameUpload}" does not exists on item!`);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
body = Buffer.from(item.binary[propertyNameUpload].data, BINARY_ENCODING);
|
|
|
|
} else {
|
|
|
|
// Is text file
|
|
|
|
body = this.getNodeParameter('fileContent', i) as string;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (resource === 'folder') {
|
|
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
|
|
// create
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'MKCOL';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
} else if (operation === 'list') {
|
|
|
|
// ----------------------------------
|
|
|
|
// list
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'PROPFIND';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
}
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (['file', 'folder'].includes(resource)) {
|
|
|
|
if (operation === 'copy') {
|
|
|
|
// ----------------------------------
|
|
|
|
// copy
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'COPY';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
|
|
|
const toPath = this.getNodeParameter('toPath', i) as string;
|
|
|
|
headers.Destination = `${credentials.webDavUrl}/${encodeURI(toPath)}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'DELETE';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
} else if (operation === 'move') {
|
|
|
|
// ----------------------------------
|
|
|
|
// move
|
|
|
|
// ----------------------------------
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
requestMethod = 'MOVE';
|
|
|
|
endpoint = this.getNodeParameter('path', i) as string;
|
|
|
|
const toPath = this.getNodeParameter('toPath', i) as string;
|
|
|
|
headers.Destination = `${credentials.webDavUrl}/${encodeURI(toPath)}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
2019-07-14 08:16:56 -07:00
|
|
|
throw new Error(`The resource "${resource}" is not known!`);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the webdav URL does never have a trailing slash because
|
|
|
|
// one gets added always automatically
|
|
|
|
let webDavUrl = credentials.webDavUrl as string;
|
|
|
|
if (webDavUrl.slice(-1) === '/') {
|
|
|
|
webDavUrl = webDavUrl.slice(0, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
auth: {
|
|
|
|
user: credentials.user as string,
|
|
|
|
pass: credentials.password as string,
|
|
|
|
},
|
|
|
|
headers,
|
|
|
|
method: requestMethod,
|
|
|
|
body,
|
|
|
|
qs: {},
|
|
|
|
uri: `${credentials.webDavUrl}/${encodeURI(endpoint)}`,
|
|
|
|
json: false,
|
|
|
|
};
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (resource === 'file' && operation === 'download') {
|
2019-06-23 03:35:23 -07:00
|
|
|
// Return the data as a buffer
|
|
|
|
options.encoding = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const responseData = await this.helpers.request(options);
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (resource === 'file' && operation === 'download') {
|
2019-08-01 13:55:33 -07:00
|
|
|
|
|
|
|
const newItem: INodeExecutionData = {
|
|
|
|
json: items[i].json,
|
|
|
|
binary: {},
|
|
|
|
};
|
|
|
|
|
|
|
|
if (items[i].binary !== undefined) {
|
|
|
|
// Create a shallow copy of the binary data so that the old
|
|
|
|
// data references which do not get changed still stay behind
|
|
|
|
// but the incoming data does not get changed.
|
|
|
|
Object.assign(newItem.binary, items[i].binary);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2019-08-01 13:55:33 -07:00
|
|
|
|
|
|
|
items[i] = newItem;
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', i) as string;
|
|
|
|
|
|
|
|
items[i].binary![binaryPropertyName] = await this.helpers.prepareBinaryData(responseData, endpoint);
|
2019-07-14 08:16:56 -07:00
|
|
|
} else if (resource === 'folder' && operation === 'list') {
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
const jsonResponseData: IDataObject = await new Promise((resolve, reject) => {
|
|
|
|
parseString(responseData, { explicitArray: false }, (err, data) => {
|
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
resolve(data as IDataObject);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const propNames: { [key: string]: string } = {
|
|
|
|
'd:getlastmodified': 'lastModified',
|
|
|
|
'd:getcontentlength': 'contentLength',
|
|
|
|
'd:getcontenttype': 'contentType',
|
|
|
|
};
|
|
|
|
|
|
|
|
if (jsonResponseData['d:multistatus'] !== undefined &&
|
|
|
|
jsonResponseData['d:multistatus'] !== null &&
|
|
|
|
(jsonResponseData['d:multistatus'] as IDataObject)['d:response'] !== undefined &&
|
|
|
|
(jsonResponseData['d:multistatus'] as IDataObject)['d:response'] !== null) {
|
|
|
|
let skippedFirst = false;
|
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
for (const item of jsonResponseData['d:multistatus']['d:response']) {
|
|
|
|
if (skippedFirst === false) {
|
|
|
|
skippedFirst = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const newItem: IDataObject = {};
|
|
|
|
|
|
|
|
newItem.path = item['d:href'].slice(19);
|
|
|
|
|
|
|
|
const props = item['d:propstat'][0]['d:prop'];
|
|
|
|
|
|
|
|
// Get the props and save them under a proper name
|
|
|
|
for (const propName of Object.keys(propNames)) {
|
|
|
|
if (props[propName] !== undefined) {
|
|
|
|
newItem[propNames[propName]] = props[propName];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props['d:resourcetype'] === '') {
|
|
|
|
newItem.type = 'file';
|
|
|
|
} else {
|
|
|
|
newItem.type = 'folder';
|
|
|
|
}
|
|
|
|
newItem.eTag = props['d:getetag'].slice(1, -1);
|
|
|
|
|
|
|
|
returnData.push(newItem as IDataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
returnData.push(responseData as IDataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-14 08:16:56 -07:00
|
|
|
if (resource === 'file' && operation === 'download') {
|
2019-06-23 03:35:23 -07:00
|
|
|
// For file downloads the files get attached to the existing items
|
|
|
|
return this.prepareOutputData(items);
|
|
|
|
} else {
|
|
|
|
// For all other ones does the output get replaced
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|