Files
n8n/packages/nodes-base/nodes/Code/PythonTaskRunnerSandbox.ts
alighasami 3d5eaf9445
Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

128 lines
3.7 KiB
TypeScript

import {
type CodeExecutionMode,
type IExecuteFunctions,
type INodeExecutionData,
type WorkflowExecuteMode,
NodeOperationError,
} from 'n8n-workflow';
import type { TextKeys } from './result-validation';
import { validateRunCodeAllItems, validateRunCodeEachItem } from './result-validation';
import { throwExecutionError } from './throw-execution-error';
const PYTHON_TEXT_KEYS: TextKeys = {
object: { singular: 'dictionary', plural: 'dictionaries' },
};
export class PythonTaskRunnerSandbox {
constructor(
private readonly pythonCode: string,
private readonly nodeMode: CodeExecutionMode,
private readonly workflowMode: WorkflowExecuteMode,
private readonly executeFunctions: IExecuteFunctions,
private readonly additionalProperties: Record<string, unknown> = {},
) {}
private validateCode(): void {
if (typeof this.pythonCode !== 'string') {
throw new NodeOperationError(
this.executeFunctions.getNode(),
'No Python code found to execute. Please add code to the Code node.',
);
}
}
/**
* Run a script by forwarding it to a Python task runner, together with input items.
*
* The Python runner receives input items together with the task, whereas the
* JavaScript runner does _not_ receive input items together with the task and
* instead retrieves them later, only if needed, via an RPC request.
*/
async runUsingIncomingItems() {
this.validateCode();
const itemIndex = 0;
const node = this.executeFunctions.getNode();
const workflow = this.executeFunctions.getWorkflow();
const taskSettings: Record<string, unknown> = {
code: this.pythonCode,
nodeMode: this.nodeMode,
workflowMode: this.workflowMode,
continueOnFail: this.executeFunctions.continueOnFail(),
items: this.executeFunctions.getInputData(),
nodeId: node.id,
nodeName: node.name,
workflowId: workflow.id,
workflowName: workflow.name,
};
const executionResult = await this.executeFunctions.startJob<INodeExecutionData[]>(
'python',
taskSettings,
itemIndex,
);
if (!executionResult.ok) {
return throwExecutionError('error' in executionResult ? executionResult.error : {});
}
if (this.nodeMode === 'runOnceForAllItems') {
return validateRunCodeAllItems(
executionResult.result,
PYTHON_TEXT_KEYS,
this.executeFunctions.helpers.normalizeItems.bind(this.executeFunctions.helpers),
);
}
return executionResult.result.map((item, index) =>
validateRunCodeEachItem(
item,
index,
PYTHON_TEXT_KEYS,
this.executeFunctions.helpers.normalizeItems.bind(this.executeFunctions.helpers),
),
);
}
/**
* Run a script for tool execution.
*
* Unlike `runUsingIncomingItems`, this method:
* - Sends empty items (tools don't process workflow items)
* - Passes `query` from `additionalProperties` to the runner
* - Does not validate the result from the runner (tools can return any type)
*/
async runCodeForTool(): Promise<unknown> {
this.validateCode();
const itemIndex = 0;
const node = this.executeFunctions.getNode();
const workflow = this.executeFunctions.getWorkflow();
const taskSettings: Record<string, unknown> = {
code: this.pythonCode,
nodeMode: 'runOnceForAllItems',
workflowMode: this.workflowMode,
continueOnFail: this.executeFunctions.continueOnFail(),
items: [],
nodeId: node.id,
nodeName: node.name,
workflowId: workflow.id,
workflowName: workflow.name,
query: this.additionalProperties.query,
};
const executionResult = await this.executeFunctions.startJob('python', taskSettings, itemIndex);
if (!executionResult.ok) {
return throwExecutionError('error' in executionResult ? executionResult.error : {});
}
return executionResult.result;
}
}