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: [
|
|
|
|
{
|
|
|
|
displayName: 'Function',
|
|
|
|
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-06-23 03:35:23 -07:00
|
|
|
const vm = new NodeVM({
|
|
|
|
console: 'inherit',
|
|
|
|
sandbox,
|
|
|
|
require: {
|
|
|
|
external: false,
|
|
|
|
root: './',
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get the code to execute
|
|
|
|
const functionCode = this.getNodeParameter('functionCode') as string;
|
|
|
|
|
|
|
|
|
|
|
|
let jsonData: IDataObject;
|
|
|
|
try {
|
|
|
|
// Execute the function code
|
|
|
|
jsonData = await vm.run(`module.exports = async function() {${functionCode}}()`);
|
|
|
|
} catch (e) {
|
|
|
|
return Promise.reject(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
json: jsonData
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|