2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
|
|
|
INode,
|
|
|
|
INodeCredentials,
|
2020-03-15 05:00:57 -07:00
|
|
|
INodeParameters,
|
2019-06-23 03:35:23 -07:00
|
|
|
INodePropertyOptions,
|
|
|
|
INodeTypes,
|
|
|
|
IWorkflowExecuteAdditionalData,
|
|
|
|
Workflow,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line import/no-cycle
|
|
|
|
import { NodeExecuteFunctions } from '.';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
const TEMP_NODE_NAME = 'Temp-Node';
|
|
|
|
const TEMP_WORKFLOW_NAME = 'Temp-Workflow';
|
|
|
|
|
|
|
|
export class LoadNodeParameterOptions {
|
2021-05-16 16:16:24 -07:00
|
|
|
path: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
workflow: Workflow;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
constructor(
|
|
|
|
nodeTypeName: string,
|
|
|
|
nodeTypes: INodeTypes,
|
|
|
|
path: string,
|
|
|
|
currentNodeParameters: INodeParameters,
|
|
|
|
credentials?: INodeCredentials,
|
|
|
|
) {
|
2021-05-16 16:16:24 -07:00
|
|
|
this.path = path;
|
2019-06-23 03:35:23 -07:00
|
|
|
const nodeType = nodeTypes.getByName(nodeTypeName);
|
|
|
|
|
|
|
|
if (nodeType === undefined) {
|
|
|
|
throw new Error(`The node-type "${nodeTypeName}" is not known!`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const nodeData: INode = {
|
2020-03-15 05:00:57 -07:00
|
|
|
parameters: currentNodeParameters,
|
2019-06-23 03:35:23 -07:00
|
|
|
name: TEMP_NODE_NAME,
|
|
|
|
type: nodeTypeName,
|
|
|
|
typeVersion: 1,
|
2021-08-29 11:58:11 -07:00
|
|
|
position: [0, 0],
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
if (credentials) {
|
|
|
|
nodeData.credentials = credentials;
|
|
|
|
}
|
|
|
|
|
|
|
|
const workflowData = {
|
2021-08-29 11:58:11 -07:00
|
|
|
nodes: [nodeData],
|
2019-06-23 03:35:23 -07:00
|
|
|
connections: {},
|
|
|
|
};
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
this.workflow = new Workflow({
|
|
|
|
nodes: workflowData.nodes,
|
|
|
|
connections: workflowData.connections,
|
|
|
|
active: false,
|
|
|
|
nodeTypes,
|
|
|
|
});
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns data of a fake workflow
|
|
|
|
*
|
|
|
|
* @returns
|
|
|
|
* @memberof LoadNodeParameterOptions
|
|
|
|
*/
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
2019-06-23 03:35:23 -07:00
|
|
|
getWorkflowData() {
|
|
|
|
return {
|
|
|
|
name: TEMP_WORKFLOW_NAME,
|
|
|
|
active: false,
|
|
|
|
connections: {},
|
|
|
|
nodes: Object.values(this.workflow.nodes),
|
2019-07-22 11:29:06 -07:00
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: new Date(),
|
2019-06-23 03:35:23 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2021-08-29 11:58:11 -07:00
|
|
|
async getOptions(
|
|
|
|
methodName: string,
|
|
|
|
additionalData: IWorkflowExecuteAdditionalData,
|
|
|
|
): Promise<INodePropertyOptions[]> {
|
2019-06-23 03:35:23 -07:00
|
|
|
const node = this.workflow.getNode(TEMP_NODE_NAME);
|
|
|
|
|
|
|
|
const nodeType = this.workflow.nodeTypes.getByName(node!.type);
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
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!`,
|
|
|
|
);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
const thisArgs = NodeExecuteFunctions.getLoadOptionsFunctions(
|
|
|
|
this.workflow,
|
|
|
|
node!,
|
|
|
|
this.path,
|
|
|
|
additionalData,
|
|
|
|
);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
return nodeType!.methods.loadOptions[methodName].call(thisArgs);
|
|
|
|
}
|
|
|
|
}
|