2022-12-02 12:54:28 -08:00
|
|
|
|
/* eslint-disable @typescript-eslint/no-loop-func */
|
2021-02-16 23:51:02 -08:00
|
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
import {
|
2022-10-21 08:24:58 -07:00
|
|
|
|
deepCopy,
|
2019-06-23 03:35:23 -07:00
|
|
|
|
IBinaryKeyData,
|
|
|
|
|
IDataObject,
|
|
|
|
|
INodeExecutionData,
|
|
|
|
|
INodeType,
|
|
|
|
|
INodeTypeDescription,
|
2021-04-16 09:33:36 -07:00
|
|
|
|
NodeOperationError,
|
2019-06-23 03:35:23 -07:00
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
const { NodeVM } = require('vm2');
|
|
|
|
|
|
|
|
|
|
export class FunctionItem implements INodeType {
|
|
|
|
|
description: INodeTypeDescription = {
|
|
|
|
|
displayName: 'Function Item',
|
|
|
|
|
name: 'functionItem',
|
2022-10-13 05:28:02 -07:00
|
|
|
|
hidden: true,
|
2019-06-23 03:35:23 -07:00
|
|
|
|
icon: 'fa:code',
|
|
|
|
|
group: ['transform'],
|
|
|
|
|
version: 1,
|
2021-07-03 05:40:16 -07:00
|
|
|
|
description: 'Run custom function code which gets executed once per item',
|
2019-06-23 03:35:23 -07:00
|
|
|
|
defaults: {
|
|
|
|
|
name: 'FunctionItem',
|
2019-07-26 02:41:08 -07:00
|
|
|
|
color: '#ddbb33',
|
2019-06-23 03:35:23 -07:00
|
|
|
|
},
|
|
|
|
|
inputs: ['main'],
|
|
|
|
|
outputs: ['main'],
|
|
|
|
|
properties: [
|
2022-10-13 05:28:02 -07:00
|
|
|
|
{
|
|
|
|
|
displayName: 'A newer version of this node type is available, called the ‘Code’ node',
|
|
|
|
|
name: 'notice',
|
|
|
|
|
type: 'notice',
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
2019-06-23 03:35:23 -07:00
|
|
|
|
{
|
2020-10-13 02:05:56 -07:00
|
|
|
|
displayName: 'JavaScript Code',
|
2019-06-23 03:35:23 -07:00
|
|
|
|
name: 'functionCode',
|
|
|
|
|
typeOptions: {
|
|
|
|
|
alwaysOpenEditWindow: true,
|
2021-12-23 02:41:46 -08:00
|
|
|
|
codeAutocomplete: 'functionItem',
|
2019-09-04 09:22:06 -07:00
|
|
|
|
editor: 'code',
|
2019-06-23 03:35:23 -07:00
|
|
|
|
rows: 10,
|
|
|
|
|
},
|
|
|
|
|
type: 'string',
|
2021-05-29 12:03:59 -07:00
|
|
|
|
default: `// Code here will run once per input item.
|
2022-09-29 03:33:16 -07:00
|
|
|
|
// More info and help: https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.functionitem/
|
2022-03-13 01:34:44 -08:00
|
|
|
|
// Tip: You can use luxon for dates and $jmespath for querying JSON structures
|
2021-05-29 12:03:59 -07:00
|
|
|
|
|
|
|
|
|
// Add a new field called 'myNewField' to the JSON of the item
|
|
|
|
|
item.myNewField = 1;
|
|
|
|
|
|
|
|
|
|
// You can write logs to the browser console
|
|
|
|
|
console.log('Done!');
|
|
|
|
|
|
|
|
|
|
return item;`,
|
2022-05-06 14:01:25 -07:00
|
|
|
|
description: 'The JavaScript code to execute for each item',
|
2019-09-04 09:22:06 -07:00
|
|
|
|
noDataExpression: true,
|
2019-06-23 03:35:23 -07:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-29 02:20:10 -07:00
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2021-02-16 23:51:02 -08:00
|
|
|
|
const items = this.getInputData();
|
2019-08-01 13:55:33 -07:00
|
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
|
const returnData: INodeExecutionData[] = [];
|
2022-04-22 09:29:51 -07:00
|
|
|
|
const length = items.length;
|
2021-02-16 23:51:02 -08:00
|
|
|
|
let item: INodeExecutionData;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
2022-01-02 01:33:15 -08:00
|
|
|
|
const cleanupData = (inputData: IDataObject): IDataObject => {
|
2022-08-01 13:47:55 -07:00
|
|
|
|
Object.keys(inputData).map((key) => {
|
2022-01-02 01:33:15 -08:00
|
|
|
|
if (inputData[key] !== null && typeof inputData[key] === 'object') {
|
|
|
|
|
if (inputData[key]!.constructor.name === 'Object') {
|
|
|
|
|
// Is regular node.js object so check its data
|
|
|
|
|
inputData[key] = cleanupData(inputData[key] as IDataObject);
|
|
|
|
|
} else {
|
|
|
|
|
// Is some special object like a Date so stringify
|
2022-10-21 08:24:58 -07:00
|
|
|
|
inputData[key] = deepCopy(inputData[key]);
|
2022-01-02 01:33:15 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return inputData;
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
|
for (let itemIndex = 0; itemIndex < length; itemIndex++) {
|
2022-09-11 07:42:09 -07:00
|
|
|
|
const mode = this.getMode();
|
|
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
|
try {
|
2021-07-19 23:58:54 -07:00
|
|
|
|
item = items[itemIndex];
|
2022-09-11 07:42:09 -07:00
|
|
|
|
item.index = itemIndex;
|
2021-07-19 23:58:54 -07:00
|
|
|
|
|
|
|
|
|
// Copy the items as they may get changed in the functions
|
2022-10-21 08:24:58 -07:00
|
|
|
|
item = deepCopy(item);
|
2021-07-19 23:58:54 -07:00
|
|
|
|
|
|
|
|
|
// Define the global objects for the custom function
|
|
|
|
|
const sandbox = {
|
2022-09-11 07:42:09 -07:00
|
|
|
|
/** @deprecated for removal - replaced by getBinaryDataAsync() */
|
2021-07-19 23:58:54 -07:00
|
|
|
|
getBinaryData: (): IBinaryKeyData | undefined => {
|
2022-09-11 07:42:09 -07:00
|
|
|
|
if (mode === 'manual') {
|
|
|
|
|
this.sendMessageToUI(
|
|
|
|
|
'getBinaryData(...) is deprecated and will be removed in a future version. Please consider switching to getBinaryDataAsync(...) instead.',
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-07-19 23:58:54 -07:00
|
|
|
|
return item.binary;
|
|
|
|
|
},
|
2022-09-11 07:42:09 -07:00
|
|
|
|
/** @deprecated for removal - replaced by setBinaryDataAsync() */
|
|
|
|
|
setBinaryData: async (data: IBinaryKeyData) => {
|
|
|
|
|
if (mode === 'manual') {
|
|
|
|
|
this.sendMessageToUI(
|
|
|
|
|
'setBinaryData(...) is deprecated and will be removed in a future version. Please consider switching to setBinaryDataAsync(...) instead.',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
item.binary = data;
|
|
|
|
|
},
|
2021-07-19 23:58:54 -07:00
|
|
|
|
getNodeParameter: this.getNodeParameter,
|
|
|
|
|
getWorkflowStaticData: this.getWorkflowStaticData,
|
|
|
|
|
helpers: this.helpers,
|
|
|
|
|
item: item.json,
|
2022-09-11 07:42:09 -07:00
|
|
|
|
getBinaryDataAsync: async (): Promise<IBinaryKeyData | undefined> => {
|
|
|
|
|
// Fetch Binary Data, if available. Cannot check item with `if (item?.index)`, as index may be 0.
|
|
|
|
|
if (item?.binary && item?.index !== undefined && item?.index !== null) {
|
|
|
|
|
for (const binaryPropertyName of Object.keys(item.binary)) {
|
|
|
|
|
item.binary[binaryPropertyName].data = (
|
2022-12-02 12:54:28 -08:00
|
|
|
|
await this.helpers.getBinaryDataBuffer(item.index, binaryPropertyName)
|
2022-09-11 07:42:09 -07:00
|
|
|
|
)?.toString('base64');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Retrun Data
|
|
|
|
|
return item.binary;
|
|
|
|
|
},
|
|
|
|
|
setBinaryDataAsync: async (data: IBinaryKeyData) => {
|
|
|
|
|
// Ensure data is present
|
|
|
|
|
if (!data) {
|
|
|
|
|
throw new NodeOperationError(
|
|
|
|
|
this.getNode(),
|
|
|
|
|
'No data was provided to setBinaryDataAsync (data: IBinaryKeyData).',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set Binary Data
|
|
|
|
|
for (const binaryPropertyName of Object.keys(data)) {
|
|
|
|
|
const binaryItem = data[binaryPropertyName];
|
|
|
|
|
data[binaryPropertyName] = await this.helpers.setBinaryDataBuffer(
|
|
|
|
|
binaryItem,
|
|
|
|
|
Buffer.from(binaryItem.data, 'base64'),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set Item Reference
|
2021-07-19 23:58:54 -07:00
|
|
|
|
item.binary = data;
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Make it possible to access data via $node, $parameter, ...
|
|
|
|
|
const dataProxy = this.getWorkflowDataProxy(itemIndex);
|
|
|
|
|
Object.assign(sandbox, dataProxy);
|
|
|
|
|
|
|
|
|
|
const options = {
|
2022-08-01 13:47:55 -07:00
|
|
|
|
console: mode === 'manual' ? 'redirect' : 'inherit',
|
2021-07-19 23:58:54 -07:00
|
|
|
|
sandbox,
|
|
|
|
|
require: {
|
|
|
|
|
external: false as boolean | { modules: string[] },
|
|
|
|
|
builtin: [] as string[],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (process.env.NODE_FUNCTION_ALLOW_BUILTIN) {
|
|
|
|
|
options.require.builtin = process.env.NODE_FUNCTION_ALLOW_BUILTIN.split(',');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (process.env.NODE_FUNCTION_ALLOW_EXTERNAL) {
|
2022-08-01 13:47:55 -07:00
|
|
|
|
options.require.external = {
|
|
|
|
|
modules: process.env.NODE_FUNCTION_ALLOW_EXTERNAL.split(','),
|
|
|
|
|
};
|
2021-07-19 23:58:54 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const vm = new NodeVM(options);
|
|
|
|
|
|
|
|
|
|
if (mode === 'manual') {
|
|
|
|
|
vm.on('console.log', this.sendMessageToUI);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the code to execute
|
|
|
|
|
const functionCode = this.getNodeParameter('functionCode', itemIndex) as string;
|
|
|
|
|
|
|
|
|
|
let jsonData: IDataObject;
|
|
|
|
|
try {
|
|
|
|
|
// Execute the function code
|
2022-08-01 13:47:55 -07:00
|
|
|
|
jsonData = await vm.run(
|
|
|
|
|
`module.exports = async function() {${functionCode}\n}()`,
|
|
|
|
|
__dirname,
|
|
|
|
|
);
|
2021-07-19 23:58:54 -07:00
|
|
|
|
} catch (error) {
|
|
|
|
|
if (this.continueOnFail()) {
|
2022-08-01 13:47:55 -07:00
|
|
|
|
returnData.push({ json: { error: error.message } });
|
2021-07-19 23:58:54 -07:00
|
|
|
|
continue;
|
|
|
|
|
} else {
|
2021-12-23 12:00:08 -08:00
|
|
|
|
// Try to find the line number which contains the error and attach to error message
|
2021-12-23 06:16:42 -08:00
|
|
|
|
const stackLines = error.stack.split('\n');
|
|
|
|
|
if (stackLines.length > 0) {
|
2022-03-13 01:34:44 -08:00
|
|
|
|
stackLines.shift();
|
2022-08-01 13:47:55 -07:00
|
|
|
|
const lineParts = stackLines
|
|
|
|
|
.find((line: string) => line.includes('FunctionItem'))
|
|
|
|
|
.split(':');
|
2021-12-23 06:16:42 -08:00
|
|
|
|
if (lineParts.length > 2) {
|
|
|
|
|
const lineNumber = lineParts.splice(-2, 1);
|
|
|
|
|
if (!isNaN(lineNumber)) {
|
|
|
|
|
error.message = `${error.message} [Line ${lineNumber} | Item Index: ${itemIndex}]`;
|
|
|
|
|
return Promise.reject(error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error.message = `${error.message} [Item Index: ${itemIndex}]`;
|
|
|
|
|
|
2021-07-19 23:58:54 -07:00
|
|
|
|
return Promise.reject(error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Do very basic validation of the data
|
|
|
|
|
if (jsonData === undefined) {
|
2022-08-01 13:47:55 -07:00
|
|
|
|
throw new NodeOperationError(
|
|
|
|
|
this.getNode(),
|
|
|
|
|
'No data got returned. Always an object has to be returned!',
|
|
|
|
|
);
|
2021-07-19 23:58:54 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const returnItem: INodeExecutionData = {
|
2022-01-02 01:33:15 -08:00
|
|
|
|
json: cleanupData(jsonData),
|
2022-06-03 08:25:07 -07:00
|
|
|
|
pairedItem: {
|
|
|
|
|
item: itemIndex,
|
|
|
|
|
},
|
2021-07-19 23:58:54 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (item.binary) {
|
|
|
|
|
returnItem.binary = item.binary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
returnData.push(returnItem);
|
2021-04-16 09:33:36 -07:00
|
|
|
|
} catch (error) {
|
2021-07-19 23:58:54 -07:00
|
|
|
|
if (this.continueOnFail()) {
|
2022-06-03 08:25:07 -07:00
|
|
|
|
returnData.push({
|
|
|
|
|
json: {
|
|
|
|
|
error: error.message,
|
|
|
|
|
},
|
|
|
|
|
pairedItem: {
|
|
|
|
|
item: itemIndex,
|
|
|
|
|
},
|
|
|
|
|
});
|
2021-07-19 23:58:54 -07:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
throw error;
|
2021-02-16 23:51:02 -08:00
|
|
|
|
}
|
2021-03-29 02:20:10 -07:00
|
|
|
|
}
|
2021-02-16 23:51:02 -08:00
|
|
|
|
return this.prepareOutputData(returnData);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
}
|
|
|
|
|
}
|