mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
f718c2291f
Co-authored-by: Marcus <marcus@n8n.io>
174 lines
4.3 KiB
TypeScript
174 lines
4.3 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';
|
|
|
|
export class Code implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Code',
|
|
name: 'code',
|
|
icon: 'fa:code',
|
|
group: ['transform'],
|
|
version: [1, 2],
|
|
defaultVersion: 2,
|
|
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 node = this.getNode();
|
|
const language: CodeNodeEditorLanguage =
|
|
node.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;
|
|
}
|
|
|
|
const Sandbox = language === 'python' ? PythonSandbox : JavaScriptSandbox;
|
|
const sandbox = new Sandbox(context, code, index, this.helpers);
|
|
sandbox.on(
|
|
'output',
|
|
workflowMode === 'manual'
|
|
? this.sendMessageToUI
|
|
: (...args) =>
|
|
console.log(`[Workflow "${this.getWorkflow().id}"][Node "${node.name}"]`, ...args),
|
|
);
|
|
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);
|
|
}
|
|
}
|