mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-17 10:04:08 -08:00
98 lines
2.2 KiB
TypeScript
98 lines
2.2 KiB
TypeScript
|
import {
|
||
|
INode,
|
||
|
INodeCredentials,
|
||
|
INodePropertyOptions,
|
||
|
INodeTypes,
|
||
|
IWorkflowExecuteAdditionalData,
|
||
|
Workflow,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
import {
|
||
|
NodeExecuteFunctions,
|
||
|
} from './';
|
||
|
|
||
|
|
||
|
const TEMP_NODE_NAME = 'Temp-Node';
|
||
|
const TEMP_WORKFLOW_NAME = 'Temp-Workflow';
|
||
|
|
||
|
|
||
|
export class LoadNodeParameterOptions {
|
||
|
workflow: Workflow;
|
||
|
|
||
|
|
||
|
constructor(nodeTypeName: string, nodeTypes: INodeTypes, credentials?: INodeCredentials) {
|
||
|
const nodeType = nodeTypes.getByName(nodeTypeName);
|
||
|
|
||
|
if (nodeType === undefined) {
|
||
|
throw new Error(`The node-type "${nodeTypeName}" is not known!`);
|
||
|
}
|
||
|
|
||
|
const nodeData: INode = {
|
||
|
parameters: {
|
||
|
},
|
||
|
name: TEMP_NODE_NAME,
|
||
|
type: nodeTypeName,
|
||
|
typeVersion: 1,
|
||
|
position: [
|
||
|
0,
|
||
|
0,
|
||
|
]
|
||
|
};
|
||
|
|
||
|
if (credentials) {
|
||
|
nodeData.credentials = credentials;
|
||
|
}
|
||
|
|
||
|
const workflowData = {
|
||
|
nodes: [
|
||
|
nodeData,
|
||
|
],
|
||
|
connections: {},
|
||
|
};
|
||
|
|
||
|
this.workflow = new Workflow(undefined, workflowData.nodes, workflowData.connections, false, nodeTypes, undefined);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Returns data of a fake workflow
|
||
|
*
|
||
|
* @returns
|
||
|
* @memberof LoadNodeParameterOptions
|
||
|
*/
|
||
|
getWorkflowData() {
|
||
|
return {
|
||
|
name: TEMP_WORKFLOW_NAME,
|
||
|
active: false,
|
||
|
connections: {},
|
||
|
nodes: Object.values(this.workflow.nodes),
|
||
|
createdAt: 0,
|
||
|
updatedAt: 0,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Returns the available options
|
||
|
*
|
||
|
* @param {string} methodName The name of the method of which to get the data from
|
||
|
* @param {IWorkflowExecuteAdditionalData} additionalData
|
||
|
* @returns {Promise<INodePropertyOptions[]>}
|
||
|
* @memberof LoadNodeParameterOptions
|
||
|
*/
|
||
|
getOptions(methodName: string, additionalData: IWorkflowExecuteAdditionalData): Promise<INodePropertyOptions[]> {
|
||
|
const node = this.workflow.getNode(TEMP_NODE_NAME);
|
||
|
|
||
|
const nodeType = this.workflow.nodeTypes.getByName(node!.type);
|
||
|
|
||
|
if (nodeType!.methods === undefined || nodeType!.methods.loadOptions === undefined || nodeType!.methods.loadOptions[methodName] === undefined) {
|
||
|
throw new Error(`The node-type "${node!.type}" does not have the method "${methodName}" defined!`);
|
||
|
}
|
||
|
|
||
|
const thisArgs = NodeExecuteFunctions.getLoadOptionsFunctions(this.workflow, node!, additionalData);
|
||
|
|
||
|
return nodeType!.methods.loadOptions[methodName].call(thisArgs);
|
||
|
}
|
||
|
|
||
|
}
|