2021-09-21 10:38:24 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
|
|
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
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,
|
2021-09-21 10:38:24 -07:00
|
|
|
INodeTypeNameVersion,
|
2019-06-23 03:35:23 -07:00
|
|
|
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(
|
2021-09-21 10:38:24 -07:00
|
|
|
nodeTypeNameAndVersion: INodeTypeNameVersion,
|
2021-08-29 11:58:11 -07:00
|
|
|
nodeTypes: INodeTypes,
|
|
|
|
path: string,
|
|
|
|
currentNodeParameters: INodeParameters,
|
|
|
|
credentials?: INodeCredentials,
|
|
|
|
) {
|
2021-09-21 10:38:24 -07:00
|
|
|
const nodeType = nodeTypes.getByNameAndVersion(
|
|
|
|
nodeTypeNameAndVersion.name,
|
|
|
|
nodeTypeNameAndVersion.version,
|
|
|
|
);
|
2021-05-16 16:16:24 -07:00
|
|
|
this.path = path;
|
2019-06-23 03:35:23 -07:00
|
|
|
if (nodeType === undefined) {
|
2021-09-21 10:38:24 -07:00
|
|
|
throw new Error(
|
|
|
|
`The node-type "${nodeTypeNameAndVersion.name} v${nodeTypeNameAndVersion.version}" is not known!`,
|
|
|
|
);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-09-21 10:38:24 -07:00
|
|
|
type: nodeTypeNameAndVersion.name,
|
|
|
|
typeVersion: nodeTypeNameAndVersion.version,
|
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);
|
|
|
|
|
2021-09-21 10:38:24 -07:00
|
|
|
const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node!.type, node?.typeVersion);
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
if (
|
2021-09-21 10:38:24 -07:00
|
|
|
!nodeType ||
|
|
|
|
nodeType.methods === undefined ||
|
|
|
|
nodeType.methods.loadOptions === undefined ||
|
|
|
|
nodeType.methods.loadOptions[methodName] === undefined
|
2021-08-29 11:58:11 -07:00
|
|
|
) {
|
|
|
|
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
|
|
|
|
2021-09-21 10:38:24 -07:00
|
|
|
return nodeType.methods.loadOptions[methodName].call(thisArgs);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|