2021-02-16 23:51:02 -08:00
|
|
|
import { IExecuteFunctions } from 'n8n-core';
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
|
|
|
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',
|
|
|
|
icon: 'fa:code',
|
|
|
|
group: ['transform'],
|
|
|
|
version: 1,
|
|
|
|
description: 'Run custom function code which gets executed once per item.',
|
|
|
|
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: [
|
|
|
|
{
|
2020-10-13 02:05:56 -07:00
|
|
|
displayName: 'JavaScript Code',
|
2019-06-23 03:35:23 -07:00
|
|
|
name: 'functionCode',
|
|
|
|
typeOptions: {
|
|
|
|
alwaysOpenEditWindow: true,
|
2019-09-04 09:22:06 -07:00
|
|
|
editor: 'code',
|
2019-06-23 03:35:23 -07:00
|
|
|
rows: 10,
|
|
|
|
},
|
|
|
|
type: 'string',
|
|
|
|
default: 'item.myVariable = 1;\nreturn item;',
|
|
|
|
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[] = [];
|
|
|
|
const length = items.length as unknown as number;
|
|
|
|
let item: INodeExecutionData;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
for (let itemIndex = 0; itemIndex < length; itemIndex++) {
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
item = items[itemIndex];
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
// Copy the items as they may get changed in the functions
|
|
|
|
item = JSON.parse(JSON.stringify(item));
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
// Define the global objects for the custom function
|
|
|
|
const sandbox = {
|
|
|
|
getBinaryData: (): IBinaryKeyData | undefined => {
|
|
|
|
return item.binary;
|
|
|
|
},
|
|
|
|
getNodeParameter: this.getNodeParameter,
|
|
|
|
getWorkflowStaticData: this.getWorkflowStaticData,
|
|
|
|
helpers: this.helpers,
|
|
|
|
item: item.json,
|
|
|
|
setBinaryData: (data: IBinaryKeyData) => {
|
|
|
|
item.binary = data;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// Make it possible to access data via $node, $parameter, ...
|
|
|
|
const dataProxy = this.getWorkflowDataProxy(itemIndex);
|
|
|
|
Object.assign(sandbox, dataProxy);
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
console: 'inherit',
|
|
|
|
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) {
|
|
|
|
options.require.external = { modules: process.env.NODE_FUNCTION_ALLOW_EXTERNAL.split(',') };
|
|
|
|
}
|
|
|
|
|
|
|
|
const vm = new NodeVM(options);
|
|
|
|
|
|
|
|
// Get the code to execute
|
|
|
|
const functionCode = this.getNodeParameter('functionCode', itemIndex) as string;
|
|
|
|
|
|
|
|
|
2021-04-16 09:33:36 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
let jsonData: IDataObject;
|
|
|
|
try {
|
|
|
|
// Execute the function code
|
|
|
|
jsonData = await vm.run(`module.exports = async function() {${functionCode}}()`, __dirname);
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
|
|
|
return Promise.reject(error);
|
2021-02-16 23:51:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do very basic validation of the data
|
|
|
|
if (jsonData === undefined) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeOperationError(this.getNode(), 'No data got returned. Always an object has to be returned!');
|
2021-02-16 23:51:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const returnItem: INodeExecutionData = {
|
|
|
|
json: jsonData,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (item.binary) {
|
|
|
|
returnItem.binary = item.binary;
|
|
|
|
}
|
2021-03-29 02:20:10 -07:00
|
|
|
|
2021-02-16 23:51:02 -08:00
|
|
|
returnData.push(returnItem);
|
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
|
|
|
}
|
|
|
|
}
|