mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
176 lines
4.6 KiB
TypeScript
176 lines
4.6 KiB
TypeScript
import type {
|
|
CodeExecutionMode,
|
|
CodeNodeEditorLanguage,
|
|
IExecuteFunctions,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
import { javascriptCodeDescription } from './descriptions/JavascriptCodeDescription';
|
|
import { pythonCodeDescription } from './descriptions/PythonCodeDescription';
|
|
import { JavaScriptSandbox } from './JavaScriptSandbox';
|
|
import { PythonSandbox } from './PythonSandbox';
|
|
import { getSandboxContext } from './Sandbox';
|
|
import { standardizeOutput } from './utils';
|
|
import { IS_V1_RELEASE } from '../../utils/constants';
|
|
|
|
export class Code implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Code',
|
|
name: 'code',
|
|
icon: 'fa:code',
|
|
group: ['transform'],
|
|
version: [1, 2],
|
|
defaultVersion: IS_V1_RELEASE ? 2 : 1,
|
|
description: 'Run custom JavaScript code',
|
|
defaults: {
|
|
name: 'Code',
|
|
color: '#FF9922',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
parameterPane: 'wide',
|
|
properties: [
|
|
{
|
|
displayName: 'Mode',
|
|
name: 'mode',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Run Once for All Items',
|
|
value: 'runOnceForAllItems',
|
|
description: 'Run this code only once, no matter how many input items there are',
|
|
},
|
|
{
|
|
name: 'Run Once for Each Item',
|
|
value: 'runOnceForEachItem',
|
|
description: 'Run this code as many times as there are input items',
|
|
},
|
|
],
|
|
default: 'runOnceForAllItems',
|
|
},
|
|
{
|
|
displayName: 'Language',
|
|
name: 'language',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
'@version': [2],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'JavaScript',
|
|
value: 'javaScript',
|
|
},
|
|
{
|
|
name: 'Python (Beta)',
|
|
value: 'python',
|
|
},
|
|
],
|
|
default: 'javaScript',
|
|
},
|
|
{
|
|
displayName: 'Language',
|
|
name: 'language',
|
|
type: 'hidden',
|
|
displayOptions: {
|
|
show: {
|
|
'@version': [1],
|
|
},
|
|
},
|
|
default: 'javaScript',
|
|
},
|
|
|
|
...javascriptCodeDescription,
|
|
...pythonCodeDescription,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
const nodeMode = this.getNodeParameter('mode', 0) as CodeExecutionMode;
|
|
const workflowMode = this.getMode();
|
|
|
|
const language: CodeNodeEditorLanguage =
|
|
this.getNode()?.typeVersion === 2
|
|
? (this.getNodeParameter('language', 0) as CodeNodeEditorLanguage)
|
|
: 'javaScript';
|
|
const codeParameterName = language === 'python' ? 'pythonCode' : 'jsCode';
|
|
|
|
const getSandbox = (index = 0) => {
|
|
const code = this.getNodeParameter(codeParameterName, index) as string;
|
|
const context = getSandboxContext.call(this, index);
|
|
if (nodeMode === 'runOnceForAllItems') {
|
|
context.items = context.$input.all();
|
|
} else {
|
|
context.item = context.$input.item;
|
|
}
|
|
|
|
if (language === 'python') {
|
|
const modules = this.getNodeParameter('modules', index) as string;
|
|
const moduleImports: string[] = modules ? modules.split(',').map((m) => m.trim()) : [];
|
|
context.printOverwrite = workflowMode === 'manual' ? this.sendMessageToUI : null;
|
|
return new PythonSandbox(context, code, moduleImports, index, this.helpers);
|
|
} else {
|
|
const sandbox = new JavaScriptSandbox(context, code, index, workflowMode, this.helpers);
|
|
if (workflowMode === 'manual') {
|
|
sandbox.vm.on('console.log', this.sendMessageToUI);
|
|
}
|
|
return sandbox;
|
|
}
|
|
};
|
|
|
|
// ----------------------------------
|
|
// runOnceForAllItems
|
|
// ----------------------------------
|
|
|
|
if (nodeMode === 'runOnceForAllItems') {
|
|
const sandbox = getSandbox();
|
|
let items: INodeExecutionData[];
|
|
try {
|
|
items = await sandbox.runCodeAllItems();
|
|
} catch (error) {
|
|
if (!this.continueOnFail()) throw error;
|
|
items = [{ json: { error: error.message } }];
|
|
}
|
|
|
|
for (const item of items) {
|
|
standardizeOutput(item.json);
|
|
}
|
|
|
|
return this.prepareOutputData(items);
|
|
}
|
|
|
|
// ----------------------------------
|
|
// runOnceForEachItem
|
|
// ----------------------------------
|
|
|
|
const returnData: INodeExecutionData[] = [];
|
|
|
|
const items = this.getInputData();
|
|
|
|
for (let index = 0; index < items.length; index++) {
|
|
const sandbox = getSandbox(index);
|
|
let result: INodeExecutionData | undefined;
|
|
try {
|
|
result = await sandbox.runCodeEachItem();
|
|
} catch (error) {
|
|
if (!this.continueOnFail()) throw error;
|
|
returnData.push({ json: { error: error.message } });
|
|
}
|
|
|
|
if (result) {
|
|
returnData.push({
|
|
json: standardizeOutput(result.json),
|
|
pairedItem: { item: index },
|
|
...(result.binary && { binary: result.binary }),
|
|
});
|
|
}
|
|
}
|
|
|
|
return this.prepareOutputData(returnData);
|
|
}
|
|
}
|