mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
675ec21d33
- Split Items List node into separate nodes per action - Review node descriptions - New icons - New sections in subcategories --------- Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Deborah <deborah@starfallprojects.co.uk> Co-authored-by: Michael Kret <michael.k@radency.com>
61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import type { IBinaryData, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
type PartialBinaryData = Omit<IBinaryData, 'data'>;
|
|
const isBinaryUniqueSetup = () => {
|
|
const binaries: PartialBinaryData[] = [];
|
|
return (binary: IBinaryData) => {
|
|
for (const existingBinary of binaries) {
|
|
if (
|
|
existingBinary.mimeType === binary.mimeType &&
|
|
existingBinary.fileType === binary.fileType &&
|
|
existingBinary.fileSize === binary.fileSize &&
|
|
existingBinary.fileExtension === binary.fileExtension
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
binaries.push({
|
|
mimeType: binary.mimeType,
|
|
fileType: binary.fileType,
|
|
fileSize: binary.fileSize,
|
|
fileExtension: binary.fileExtension,
|
|
});
|
|
|
|
return true;
|
|
};
|
|
};
|
|
|
|
export function addBinariesToItem(
|
|
newItem: INodeExecutionData,
|
|
items: INodeExecutionData[],
|
|
uniqueOnly?: boolean,
|
|
) {
|
|
const isBinaryUnique = uniqueOnly ? isBinaryUniqueSetup() : undefined;
|
|
|
|
for (const item of items) {
|
|
if (item.binary === undefined) continue;
|
|
|
|
for (const key of Object.keys(item.binary)) {
|
|
if (!newItem.binary) newItem.binary = {};
|
|
let binaryKey = key;
|
|
const binary = item.binary[key];
|
|
|
|
if (isBinaryUnique && !isBinaryUnique(binary)) {
|
|
continue;
|
|
}
|
|
|
|
// If the binary key already exists add a suffix to it
|
|
let i = 1;
|
|
while (newItem.binary[binaryKey] !== undefined) {
|
|
binaryKey = `${key}_${i}`;
|
|
i++;
|
|
}
|
|
|
|
newItem.binary[binaryKey] = binary;
|
|
}
|
|
}
|
|
|
|
return newItem;
|
|
}
|