2019-06-23 03:35:23 -07:00
|
|
|
import { IExecuteSingleFunctions } from 'n8n-core';
|
|
|
|
import {
|
|
|
|
IBinaryKeyData,
|
|
|
|
IDataObject,
|
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
} 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
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
async executeSingle(this: IExecuteSingleFunctions): Promise<INodeExecutionData> {
|
2019-08-01 13:55:33 -07:00
|
|
|
let item = this.getInputData();
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
// Define the global objects for the custom function
|
|
|
|
const sandbox = {
|
|
|
|
getBinaryData: (): IBinaryKeyData | undefined => {
|
|
|
|
return item.binary;
|
|
|
|
},
|
|
|
|
getNodeParameter: this.getNodeParameter,
|
2019-10-14 22:37:49 -07:00
|
|
|
getWorkflowStaticData: this.getWorkflowStaticData,
|
2019-06-23 03:35:23 -07:00
|
|
|
helpers: this.helpers,
|
|
|
|
item: item.json,
|
|
|
|
setBinaryData: (data: IBinaryKeyData) => {
|
|
|
|
item.binary = data;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-09-04 05:53:39 -07:00
|
|
|
// Make it possible to access data via $node, $parameter, ...
|
|
|
|
const dataProxy = this.getWorkflowDataProxy();
|
|
|
|
Object.assign(sandbox, dataProxy);
|
|
|
|
|
2019-12-13 09:23:30 -08:00
|
|
|
const options = {
|
2019-06-23 03:35:23 -07:00
|
|
|
console: 'inherit',
|
|
|
|
sandbox,
|
|
|
|
require: {
|
2020-01-01 13:37:10 -08:00
|
|
|
external: false as boolean | { modules: string[] },
|
2019-12-13 09:23:30 -08:00
|
|
|
builtin: [] as string[],
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2019-12-13 09:23:30 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
if (process.env.NODE_FUNCTION_ALLOW_BUILTIN) {
|
|
|
|
options.require.builtin = process.env.NODE_FUNCTION_ALLOW_BUILTIN.split(',');
|
|
|
|
}
|
|
|
|
|
2020-01-01 13:37:10 -08:00
|
|
|
if (process.env.NODE_FUNCTION_ALLOW_EXTERNAL) {
|
|
|
|
options.require.external = { modules: process.env.NODE_FUNCTION_ALLOW_EXTERNAL.split(',') };
|
|
|
|
}
|
|
|
|
|
2019-12-13 09:23:30 -08:00
|
|
|
const vm = new NodeVM(options);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
// Get the code to execute
|
|
|
|
const functionCode = this.getNodeParameter('functionCode') as string;
|
|
|
|
|
|
|
|
|
|
|
|
let jsonData: IDataObject;
|
|
|
|
try {
|
|
|
|
// Execute the function code
|
2020-01-25 13:21:59 -08:00
|
|
|
jsonData = await vm.run(`module.exports = async function() {${functionCode}}()`, __dirname);
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (e) {
|
|
|
|
return Promise.reject(e);
|
|
|
|
}
|
|
|
|
|
2019-12-23 12:54:27 -08:00
|
|
|
// Do very basic validation of the data
|
|
|
|
if (jsonData === undefined) {
|
|
|
|
throw new Error('No data got returned. Always an object has to be returned!');
|
|
|
|
}
|
|
|
|
|
2020-08-14 11:02:52 -07:00
|
|
|
const returnItem: INodeExecutionData = {
|
2019-06-23 03:35:23 -07:00
|
|
|
json: jsonData
|
|
|
|
};
|
2020-08-14 11:02:52 -07:00
|
|
|
|
|
|
|
if (item.binary) {
|
|
|
|
returnItem.binary = item.binary;
|
|
|
|
}
|
|
|
|
|
|
|
|
return returnItem;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|