mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Convert to/from binary data Node): Better mime type defaults (#7693)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
parent
a262c450f7
commit
9b3be0cfd8
|
@ -1,26 +1,19 @@
|
||||||
import get from 'lodash/get';
|
import get from 'lodash/get';
|
||||||
import set from 'lodash/set';
|
import set from 'lodash/set';
|
||||||
import unset from 'lodash/unset';
|
import unset from 'lodash/unset';
|
||||||
import prettyBytes from 'pretty-bytes';
|
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
IExecuteFunctions,
|
IExecuteFunctions,
|
||||||
IBinaryData,
|
|
||||||
IDataObject,
|
IDataObject,
|
||||||
INodeExecutionData,
|
INodeExecutionData,
|
||||||
INodePropertyOptions,
|
INodePropertyOptions,
|
||||||
INodeType,
|
INodeType,
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import {
|
import { BINARY_ENCODING, deepCopy, jsonParse, NodeOperationError } from 'n8n-workflow';
|
||||||
BINARY_ENCODING,
|
|
||||||
deepCopy,
|
|
||||||
jsonParse,
|
|
||||||
NodeOperationError,
|
|
||||||
fileTypeFromMimeType,
|
|
||||||
} from 'n8n-workflow';
|
|
||||||
|
|
||||||
import iconv from 'iconv-lite';
|
import iconv from 'iconv-lite';
|
||||||
|
|
||||||
iconv.encodingExists('utf8');
|
iconv.encodingExists('utf8');
|
||||||
|
|
||||||
// Create options for bomAware and encoding
|
// Create options for bomAware and encoding
|
||||||
|
@ -53,7 +46,7 @@ export class MoveBinaryData implements INodeType {
|
||||||
name: 'moveBinaryData',
|
name: 'moveBinaryData',
|
||||||
icon: 'fa:exchange-alt',
|
icon: 'fa:exchange-alt',
|
||||||
group: ['transform'],
|
group: ['transform'],
|
||||||
version: 1,
|
version: [1, 1.1],
|
||||||
subtitle: '={{$parameter["mode"]==="binaryToJson" ? "Binary to JSON" : "JSON to Binary"}}',
|
subtitle: '={{$parameter["mode"]==="binaryToJson" ? "Binary to JSON" : "JSON to Binary"}}',
|
||||||
description: 'Move data between binary and JSON properties',
|
description: 'Move data between binary and JSON properties',
|
||||||
defaults: {
|
defaults: {
|
||||||
|
@ -326,9 +319,7 @@ export class MoveBinaryData implements INodeType {
|
||||||
|
|
||||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||||
const items = this.getInputData();
|
const items = this.getInputData();
|
||||||
|
|
||||||
const mode = this.getNodeParameter('mode', 0) as string;
|
const mode = this.getNodeParameter('mode', 0) as string;
|
||||||
|
|
||||||
const returnData: INodeExecutionData[] = [];
|
const returnData: INodeExecutionData[] = [];
|
||||||
|
|
||||||
let item: INodeExecutionData;
|
let item: INodeExecutionData;
|
||||||
|
@ -421,29 +412,39 @@ export class MoveBinaryData implements INodeType {
|
||||||
newItem.binary = {};
|
newItem.binary = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
const mimeType = (options.mimeType as string) || 'application/json';
|
const nodeVersion = this.getNode().typeVersion;
|
||||||
const convertedValue: IBinaryData = {
|
let mimeType = options.mimeType as string;
|
||||||
data: '',
|
|
||||||
mimeType,
|
|
||||||
fileType: fileTypeFromMimeType(mimeType),
|
|
||||||
};
|
|
||||||
|
|
||||||
|
let data: Buffer;
|
||||||
if (options.dataIsBase64 !== true) {
|
if (options.dataIsBase64 !== true) {
|
||||||
if (options.useRawData !== true || typeof value === 'object') {
|
if (options.useRawData !== true || typeof value === 'object') {
|
||||||
value = JSON.stringify(value);
|
value = JSON.stringify(value);
|
||||||
|
|
||||||
|
if (!mimeType) {
|
||||||
|
mimeType = 'application/json';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
convertedValue.fileSize = prettyBytes(value.length);
|
data = iconv.encode(value, encoding, { addBOM: options.addBOM as boolean });
|
||||||
|
|
||||||
convertedValue.data = iconv
|
|
||||||
.encode(value, encoding, { addBOM: options.addBOM as boolean })
|
|
||||||
.toString(BINARY_ENCODING);
|
|
||||||
} else {
|
} else {
|
||||||
convertedValue.data = value as unknown as string;
|
data = Buffer.from(value as unknown as string, BINARY_ENCODING);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.fileName) {
|
if (!mimeType && nodeVersion === 1) {
|
||||||
convertedValue.fileName = options.fileName as string;
|
mimeType = 'application/json';
|
||||||
|
}
|
||||||
|
|
||||||
|
const convertedValue = await this.helpers.prepareBinaryData(
|
||||||
|
data,
|
||||||
|
options.fileName as string,
|
||||||
|
mimeType,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!convertedValue.fileName && nodeVersion > 1) {
|
||||||
|
const fileExtension = convertedValue.fileExtension
|
||||||
|
? `.${convertedValue.fileExtension}`
|
||||||
|
: '';
|
||||||
|
convertedValue.fileName = `file${fileExtension}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
set(newItem.binary, destinationKey, convertedValue);
|
set(newItem.binary, destinationKey, convertedValue);
|
||||||
|
|
|
@ -84,6 +84,7 @@ describe('Test Move Binary Data Node', () => {
|
||||||
mimeType: 'application/json',
|
mimeType: 'application/json',
|
||||||
fileType: 'json',
|
fileType: 'json',
|
||||||
fileSize: '59 B',
|
fileSize: '59 B',
|
||||||
|
fileExtension: 'json',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -103,6 +104,7 @@ describe('Test Move Binary Data Node', () => {
|
||||||
fileType: 'json',
|
fileType: 'json',
|
||||||
fileSize: '10 B',
|
fileSize: '10 B',
|
||||||
fileName: 'example.json',
|
fileName: 'example.json',
|
||||||
|
fileExtension: 'json',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue