2022-07-20 07:24:03 -07:00
|
|
|
/* eslint-disable import/no-cycle */
|
|
|
|
/* eslint-disable no-underscore-dangle */
|
2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
/* eslint-disable no-prototype-builtins */
|
|
|
|
/* eslint-disable no-param-reassign */
|
|
|
|
/* eslint-disable @typescript-eslint/prefer-optional-chain */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
|
|
/* eslint-disable no-await-in-loop */
|
|
|
|
/* eslint-disable no-continue */
|
|
|
|
/* eslint-disable no-restricted-syntax */
|
|
|
|
import { CUSTOM_EXTENSION_ENV, UserSettings } from 'n8n-core';
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
2021-06-17 22:58:26 -07:00
|
|
|
CodexData,
|
2019-06-23 03:35:23 -07:00
|
|
|
ICredentialType,
|
2022-02-05 13:55:43 -08:00
|
|
|
ICredentialTypeData,
|
2021-05-21 21:41:06 -07:00
|
|
|
ILogger,
|
2019-06-23 03:35:23 -07:00
|
|
|
INodeType,
|
2019-08-08 11:38:25 -07:00
|
|
|
INodeTypeData,
|
2022-07-20 07:24:03 -07:00
|
|
|
INodeTypeNameVersion,
|
2021-09-21 10:38:24 -07:00
|
|
|
INodeVersionedType,
|
2021-05-21 20:51:38 -07:00
|
|
|
LoggerProxy,
|
2019-06-23 03:35:23 -07:00
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2019-06-24 03:47:44 -07:00
|
|
|
import {
|
|
|
|
access as fsAccess,
|
|
|
|
readdir as fsReaddir,
|
|
|
|
readFile as fsReadFile,
|
|
|
|
stat as fsStat,
|
2021-08-20 14:48:02 -07:00
|
|
|
} from 'fs/promises';
|
2022-04-08 14:32:08 -07:00
|
|
|
import glob from 'fast-glob';
|
|
|
|
import path from 'path';
|
2022-07-20 07:24:03 -07:00
|
|
|
import { IN8nNodePackageJson } from './Interfaces';
|
2021-08-29 11:58:11 -07:00
|
|
|
import { getLogger } from './Logger';
|
2022-04-08 14:32:08 -07:00
|
|
|
import config from '../config';
|
2022-07-20 07:24:03 -07:00
|
|
|
import { NodeTypes } from '.';
|
|
|
|
import { InstalledPackages } from './databases/entities/InstalledPackages';
|
|
|
|
import { InstalledNodes } from './databases/entities/InstalledNodes';
|
|
|
|
import { executeCommand } from './CommunityNodes/helpers';
|
|
|
|
import { RESPONSE_ERROR_MESSAGES } from './constants';
|
|
|
|
import {
|
|
|
|
persistInstalledPackageData,
|
|
|
|
removePackageFromDatabase,
|
|
|
|
} from './CommunityNodes/packageModel';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-06-17 22:58:26 -07:00
|
|
|
const CUSTOM_NODES_CATEGORY = 'Custom Nodes';
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
class LoadNodesAndCredentialsClass {
|
2019-08-08 11:38:25 -07:00
|
|
|
nodeTypes: INodeTypeData = {};
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-02-05 13:55:43 -08:00
|
|
|
credentialTypes: ICredentialTypeData = {};
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-04-08 10:37:27 -07:00
|
|
|
excludeNodes: string | undefined = undefined;
|
2021-08-29 11:58:11 -07:00
|
|
|
|
2022-04-08 10:37:27 -07:00
|
|
|
includeNodes: string | undefined = undefined;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
nodeModulesPath = '';
|
|
|
|
|
2021-05-21 21:41:06 -07:00
|
|
|
logger: ILogger;
|
2021-05-21 20:51:38 -07:00
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
async init() {
|
2021-05-21 20:51:38 -07:00
|
|
|
this.logger = getLogger();
|
|
|
|
LoggerProxy.init(this.logger);
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
// Make sure the imported modules can resolve dependencies fine.
|
2022-08-03 09:10:59 -07:00
|
|
|
const delimiter = process.platform === 'win32' ? ';' : ':';
|
|
|
|
process.env.NODE_PATH = module.paths.join(delimiter);
|
2022-07-20 07:24:03 -07:00
|
|
|
// @ts-ignore
|
|
|
|
module.constructor._initPaths();
|
|
|
|
|
|
|
|
this.nodeModulesPath = await this.getNodeModulesFolderLocation();
|
|
|
|
|
|
|
|
this.excludeNodes = config.getEnv('nodes.exclude');
|
|
|
|
this.includeNodes = config.getEnv('nodes.include');
|
|
|
|
|
|
|
|
// Get all the installed packages which contain n8n nodes
|
|
|
|
const nodePackages = await this.getN8nNodePackages(this.nodeModulesPath);
|
|
|
|
|
|
|
|
for (const packagePath of nodePackages) {
|
|
|
|
await this.loadDataFromPackage(packagePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.loadNodesFromDownloadedPackages();
|
|
|
|
|
|
|
|
await this.loadNodesFromCustomFolders();
|
|
|
|
}
|
|
|
|
|
|
|
|
async getNodeModulesFolderLocation(): Promise<string> {
|
2019-06-23 03:35:23 -07:00
|
|
|
// Get the path to the node-modules folder to be later able
|
|
|
|
// to load the credentials and nodes
|
|
|
|
const checkPaths = [
|
|
|
|
// In case "n8n" package is in same node_modules folder.
|
|
|
|
path.join(__dirname, '..', '..', '..', 'n8n-workflow'),
|
|
|
|
// In case "n8n" package is the root and the packages are
|
|
|
|
// in the "node_modules" folder underneath it.
|
|
|
|
path.join(__dirname, '..', '..', 'node_modules', 'n8n-workflow'),
|
|
|
|
];
|
|
|
|
for (const checkPath of checkPaths) {
|
|
|
|
try {
|
2021-04-30 19:22:15 -07:00
|
|
|
await fsAccess(checkPath);
|
2019-06-23 03:35:23 -07:00
|
|
|
// Folder exists, so use it.
|
2022-07-20 07:24:03 -07:00
|
|
|
return path.dirname(checkPath);
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (error) {
|
|
|
|
// Folder does not exist so get next one
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-continue
|
2019-06-23 03:35:23 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
throw new Error('Could not find "node_modules" folder!');
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
async loadNodesFromDownloadedPackages(): Promise<void> {
|
|
|
|
const nodePackages = [];
|
|
|
|
try {
|
|
|
|
// Read downloaded nodes and credentials
|
|
|
|
const downloadedNodesFolder = UserSettings.getUserN8nFolderDowloadedNodesPath();
|
|
|
|
const downloadedNodesFolderModules = path.join(downloadedNodesFolder, 'node_modules');
|
|
|
|
await fsAccess(downloadedNodesFolderModules);
|
|
|
|
const downloadedPackages = await this.getN8nNodePackages(downloadedNodesFolderModules);
|
|
|
|
nodePackages.push(...downloadedPackages);
|
|
|
|
// eslint-disable-next-line no-empty
|
|
|
|
} catch (error) {}
|
|
|
|
|
|
|
|
for (const packagePath of nodePackages) {
|
|
|
|
try {
|
|
|
|
await this.loadDataFromPackage(packagePath);
|
|
|
|
// eslint-disable-next-line no-empty
|
|
|
|
} catch (error) {}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
async loadNodesFromCustomFolders(): Promise<void> {
|
2019-06-23 03:35:23 -07:00
|
|
|
// Read nodes and credentials from custom directories
|
|
|
|
const customDirectories = [];
|
|
|
|
|
|
|
|
// Add "custom" folder in user-n8n folder
|
|
|
|
customDirectories.push(UserSettings.getUserN8nFolderCustomExtensionPath());
|
|
|
|
|
|
|
|
// Add folders from special environment variable
|
|
|
|
if (process.env[CUSTOM_EXTENSION_ENV] !== undefined) {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
2019-06-23 03:35:23 -07:00
|
|
|
const customExtensionFolders = process.env[CUSTOM_EXTENSION_ENV]!.split(';');
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line prefer-spread
|
2019-06-23 03:35:23 -07:00
|
|
|
customDirectories.push.apply(customDirectories, customExtensionFolders);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const directory of customDirectories) {
|
|
|
|
await this.loadDataFromDirectory('CUSTOM', directory);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all the names of the packages which could
|
|
|
|
* contain n8n nodes
|
|
|
|
*
|
|
|
|
* @returns {Promise<string[]>}
|
|
|
|
* @memberof LoadNodesAndCredentialsClass
|
|
|
|
*/
|
2022-07-20 07:24:03 -07:00
|
|
|
async getN8nNodePackages(baseModulesPath: string): Promise<string[]> {
|
2020-06-03 10:40:39 -07:00
|
|
|
const getN8nNodePackagesRecursive = async (relativePath: string): Promise<string[]> => {
|
|
|
|
const results: string[] = [];
|
2022-07-20 07:24:03 -07:00
|
|
|
const nodeModulesPath = `${baseModulesPath}/${relativePath}`;
|
2021-04-30 19:22:15 -07:00
|
|
|
for (const file of await fsReaddir(nodeModulesPath)) {
|
2020-06-03 10:40:39 -07:00
|
|
|
const isN8nNodesPackage = file.indexOf('n8n-nodes-') === 0;
|
|
|
|
const isNpmScopedPackage = file.indexOf('@') === 0;
|
|
|
|
if (!isN8nNodesPackage && !isNpmScopedPackage) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-04-30 19:22:15 -07:00
|
|
|
if (!(await fsStat(nodeModulesPath)).isDirectory()) {
|
2020-06-03 10:40:39 -07:00
|
|
|
continue;
|
|
|
|
}
|
2021-08-29 11:58:11 -07:00
|
|
|
if (isN8nNodesPackage) {
|
2022-07-20 07:24:03 -07:00
|
|
|
results.push(`${baseModulesPath}/${relativePath}${file}`);
|
2021-08-29 11:58:11 -07:00
|
|
|
}
|
2020-06-03 10:40:39 -07:00
|
|
|
if (isNpmScopedPackage) {
|
2021-08-29 11:58:11 -07:00
|
|
|
results.push(...(await getN8nNodePackagesRecursive(`${relativePath}${file}/`)));
|
2020-06-03 10:40:39 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2020-06-03 10:40:39 -07:00
|
|
|
return results;
|
2020-06-03 10:58:55 -07:00
|
|
|
};
|
2020-06-03 10:40:39 -07:00
|
|
|
return getN8nNodePackagesRecursive('');
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads credentials from a file
|
|
|
|
*
|
|
|
|
* @param {string} credentialName The name of the credentials
|
|
|
|
* @param {string} filePath The file to read credentials from
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async loadCredentialsFromFile(credentialName: string, filePath: string): Promise<void> {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line import/no-dynamic-require, global-require, @typescript-eslint/no-var-requires
|
2019-06-23 03:35:23 -07:00
|
|
|
const tempModule = require(filePath);
|
|
|
|
|
|
|
|
let tempCredential: ICredentialType;
|
|
|
|
try {
|
2022-06-18 14:37:37 -07:00
|
|
|
// Add serializer method "toJSON" to the class so that authenticate method (if defined)
|
|
|
|
// gets mapped to the authenticate attribute before it is sent to the client.
|
|
|
|
// The authenticate property is used by the client to decide whether or not to
|
|
|
|
// include the credential type in the predifined credentials (HTTP node)
|
|
|
|
// eslint-disable-next-line func-names
|
|
|
|
tempModule[credentialName].prototype.toJSON = function () {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
|
|
return {
|
|
|
|
...this,
|
|
|
|
authenticate: typeof this.authenticate === 'function' ? {} : this.authenticate,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
tempCredential = new tempModule[credentialName]() as ICredentialType;
|
2021-09-11 01:15:36 -07:00
|
|
|
|
|
|
|
if (tempCredential.icon && tempCredential.icon.startsWith('file:')) {
|
|
|
|
// If a file icon gets used add the full path
|
|
|
|
tempCredential.icon = `file:${path.join(
|
|
|
|
path.dirname(filePath),
|
|
|
|
tempCredential.icon.substr(5),
|
|
|
|
)}`;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof TypeError) {
|
2021-08-29 11:58:11 -07:00
|
|
|
throw new Error(
|
|
|
|
`Class with name "${credentialName}" could not be found. Please check if the class is named correctly!`,
|
|
|
|
);
|
2019-06-23 03:35:23 -07:00
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-05 13:55:43 -08:00
|
|
|
this.credentialTypes[tempCredential.name] = {
|
|
|
|
type: tempCredential,
|
|
|
|
sourcePath: filePath,
|
|
|
|
};
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
async loadNpmModule(packageName: string, version?: string): Promise<InstalledPackages> {
|
|
|
|
const downloadFolder = UserSettings.getUserN8nFolderDowloadedNodesPath();
|
|
|
|
const command = `npm install ${packageName}${version ? `@${version}` : ''}`;
|
|
|
|
|
|
|
|
await executeCommand(command);
|
|
|
|
|
|
|
|
const finalNodeUnpackedPath = path.join(downloadFolder, 'node_modules', packageName);
|
|
|
|
|
|
|
|
const loadedNodes = await this.loadDataFromPackage(finalNodeUnpackedPath);
|
|
|
|
|
|
|
|
if (loadedNodes.length > 0) {
|
|
|
|
const packageFile = await this.readPackageJson(finalNodeUnpackedPath);
|
|
|
|
// Save info to DB
|
|
|
|
try {
|
|
|
|
const installedPackage = await persistInstalledPackageData(
|
|
|
|
packageFile.name,
|
|
|
|
packageFile.version,
|
|
|
|
loadedNodes,
|
|
|
|
this.nodeTypes,
|
|
|
|
packageFile.author?.name,
|
|
|
|
packageFile.author?.email,
|
|
|
|
);
|
|
|
|
this.attachNodesToNodeTypes(installedPackage.installedNodes);
|
|
|
|
return installedPackage;
|
|
|
|
} catch (error) {
|
|
|
|
LoggerProxy.error('Failed to save installed packages and nodes', { error, packageName });
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Remove this package since it contains no loadable nodes
|
|
|
|
const removeCommand = `npm remove ${packageName}`;
|
|
|
|
try {
|
|
|
|
await executeCommand(removeCommand);
|
|
|
|
} catch (error) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Error(RESPONSE_ERROR_MESSAGES.PACKAGE_DOES_NOT_CONTAIN_NODES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async removeNpmModule(packageName: string, installedPackage: InstalledPackages): Promise<void> {
|
|
|
|
const command = `npm remove ${packageName}`;
|
|
|
|
|
|
|
|
await executeCommand(command);
|
|
|
|
|
|
|
|
void (await removePackageFromDatabase(installedPackage));
|
|
|
|
|
|
|
|
this.unloadNodes(installedPackage.installedNodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
async updateNpmModule(
|
|
|
|
packageName: string,
|
|
|
|
installedPackage: InstalledPackages,
|
|
|
|
): Promise<InstalledPackages> {
|
|
|
|
const downloadFolder = UserSettings.getUserN8nFolderDowloadedNodesPath();
|
|
|
|
|
|
|
|
const command = `npm update ${packageName}`;
|
|
|
|
|
|
|
|
try {
|
|
|
|
await executeCommand(command);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.message === RESPONSE_ERROR_MESSAGES.PACKAGE_NOT_FOUND) {
|
|
|
|
throw new Error(`The npm package "${packageName}" could not be found.`);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.unloadNodes(installedPackage.installedNodes);
|
|
|
|
|
|
|
|
const finalNodeUnpackedPath = path.join(downloadFolder, 'node_modules', packageName);
|
|
|
|
|
|
|
|
const loadedNodes = await this.loadDataFromPackage(finalNodeUnpackedPath);
|
|
|
|
|
|
|
|
if (loadedNodes.length > 0) {
|
|
|
|
const packageFile = await this.readPackageJson(finalNodeUnpackedPath);
|
|
|
|
|
|
|
|
// Save info to DB
|
|
|
|
try {
|
|
|
|
await removePackageFromDatabase(installedPackage);
|
|
|
|
|
|
|
|
const newlyInstalledPackage = await persistInstalledPackageData(
|
|
|
|
packageFile.name,
|
|
|
|
packageFile.version,
|
|
|
|
loadedNodes,
|
|
|
|
this.nodeTypes,
|
|
|
|
packageFile.author?.name,
|
|
|
|
packageFile.author?.email,
|
|
|
|
);
|
|
|
|
|
|
|
|
this.attachNodesToNodeTypes(newlyInstalledPackage.installedNodes);
|
|
|
|
|
|
|
|
return newlyInstalledPackage;
|
|
|
|
} catch (error) {
|
|
|
|
LoggerProxy.error('Failed to save installed packages and nodes', { error, packageName });
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Remove this package since it contains no loadable nodes
|
|
|
|
const removeCommand = `npm remove ${packageName}`;
|
|
|
|
try {
|
|
|
|
await executeCommand(removeCommand);
|
|
|
|
} catch (error) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
throw new Error(RESPONSE_ERROR_MESSAGES.PACKAGE_DOES_NOT_CONTAIN_NODES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
/**
|
|
|
|
* Loads a node from a file
|
|
|
|
*
|
|
|
|
* @param {string} packageName The package name to set for the found nodes
|
|
|
|
* @param {string} nodeName Tha name of the node
|
|
|
|
* @param {string} filePath The file to read node from
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2022-07-20 07:24:03 -07:00
|
|
|
async loadNodeFromFile(
|
|
|
|
packageName: string,
|
|
|
|
nodeName: string,
|
|
|
|
filePath: string,
|
|
|
|
): Promise<INodeTypeNameVersion | undefined> {
|
2021-09-21 10:38:24 -07:00
|
|
|
let tempNode: INodeType | INodeVersionedType;
|
2019-06-23 03:35:23 -07:00
|
|
|
let fullNodeName: string;
|
2022-07-20 07:24:03 -07:00
|
|
|
let nodeVersion = 1;
|
2021-09-21 10:38:24 -07:00
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
try {
|
2022-07-20 07:24:03 -07:00
|
|
|
// eslint-disable-next-line import/no-dynamic-require, global-require, @typescript-eslint/no-var-requires
|
|
|
|
const tempModule = require(filePath);
|
2021-09-21 10:38:24 -07:00
|
|
|
tempNode = new tempModule[nodeName]();
|
2021-06-17 22:58:26 -07:00
|
|
|
this.addCodex({ node: tempNode, filePath, isCustom: packageName === 'CUSTOM' });
|
2019-06-23 03:35:23 -07:00
|
|
|
} catch (error) {
|
2022-07-20 07:24:03 -07:00
|
|
|
// eslint-disable-next-line no-console, @typescript-eslint/restrict-template-expressions
|
|
|
|
console.error(`Error loading node "${nodeName}" from: "${filePath}" - ${error.message}`);
|
2019-06-23 03:35:23 -07:00
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line prefer-const
|
|
|
|
fullNodeName = `${packageName}.${tempNode.description.name}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
tempNode.description.name = fullNodeName;
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
if (tempNode.description.icon !== undefined && tempNode.description.icon.startsWith('file:')) {
|
2019-06-23 03:35:23 -07:00
|
|
|
// If a file icon gets used add the full path
|
2021-08-29 11:58:11 -07:00
|
|
|
tempNode.description.icon = `file:${path.join(
|
|
|
|
path.dirname(filePath),
|
|
|
|
tempNode.description.icon.substr(5),
|
|
|
|
)}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2021-09-21 10:38:24 -07:00
|
|
|
if (tempNode.hasOwnProperty('executeSingle')) {
|
2021-08-29 11:58:11 -07:00
|
|
|
this.logger.warn(
|
|
|
|
`"executeSingle" will get deprecated soon. Please update the code of node "${packageName}.${nodeName}" to use "execute" instead!`,
|
|
|
|
{ filePath },
|
|
|
|
);
|
2021-05-21 20:51:38 -07:00
|
|
|
}
|
|
|
|
|
2021-09-21 10:38:24 -07:00
|
|
|
if (tempNode.hasOwnProperty('nodeVersions')) {
|
|
|
|
const versionedNodeType = (tempNode as INodeVersionedType).getNodeType();
|
|
|
|
this.addCodex({ node: versionedNodeType, filePath, isCustom: packageName === 'CUSTOM' });
|
2022-07-20 07:24:03 -07:00
|
|
|
nodeVersion = (tempNode as INodeVersionedType).currentVersion;
|
2021-09-21 10:38:24 -07:00
|
|
|
|
|
|
|
if (
|
|
|
|
versionedNodeType.description.icon !== undefined &&
|
|
|
|
versionedNodeType.description.icon.startsWith('file:')
|
|
|
|
) {
|
|
|
|
// If a file icon gets used add the full path
|
|
|
|
versionedNodeType.description.icon = `file:${path.join(
|
|
|
|
path.dirname(filePath),
|
|
|
|
versionedNodeType.description.icon.substr(5),
|
|
|
|
)}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (versionedNodeType.hasOwnProperty('executeSingle')) {
|
|
|
|
this.logger.warn(
|
|
|
|
`"executeSingle" will get deprecated soon. Please update the code of node "${packageName}.${nodeName}" to use "execute" instead!`,
|
|
|
|
{ filePath },
|
|
|
|
);
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
} else {
|
|
|
|
// Short renaming to avoid type issues
|
|
|
|
const tmpNode = tempNode as INodeType;
|
|
|
|
nodeVersion = Array.isArray(tmpNode.description.version)
|
|
|
|
? tmpNode.description.version.slice(-1)[0]
|
|
|
|
: tmpNode.description.version;
|
2021-09-21 10:38:24 -07:00
|
|
|
}
|
|
|
|
|
2020-12-01 01:53:43 -08:00
|
|
|
if (this.includeNodes !== undefined && !this.includeNodes.includes(fullNodeName)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
// Check if the node should be skiped
|
2019-06-23 03:35:23 -07:00
|
|
|
if (this.excludeNodes !== undefined && this.excludeNodes.includes(fullNodeName)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
this.nodeTypes[fullNodeName] = {
|
|
|
|
type: tempNode,
|
|
|
|
sourcePath: filePath,
|
|
|
|
};
|
2022-07-20 07:24:03 -07:00
|
|
|
|
|
|
|
// eslint-disable-next-line consistent-return
|
|
|
|
return {
|
|
|
|
name: fullNodeName,
|
|
|
|
version: nodeVersion,
|
|
|
|
} as INodeTypeNameVersion;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2021-06-17 22:58:26 -07:00
|
|
|
/**
|
|
|
|
* Retrieves `categories`, `subcategories` and alias (if defined)
|
|
|
|
* from the codex data for the node at the given file path.
|
|
|
|
*
|
|
|
|
* @param {string} filePath The file path to a `*.node.js` file
|
|
|
|
* @returns {CodexData}
|
|
|
|
*/
|
|
|
|
getCodex(filePath: string): CodexData {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line global-require, import/no-dynamic-require, @typescript-eslint/no-var-requires
|
2021-06-17 22:58:26 -07:00
|
|
|
const { categories, subcategories, alias } = require(`${filePath}on`); // .js to .json
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
2021-06-17 22:58:26 -07:00
|
|
|
return {
|
|
|
|
...(categories && { categories }),
|
|
|
|
...(subcategories && { subcategories }),
|
|
|
|
...(alias && { alias }),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a node codex `categories` and `subcategories` (if defined)
|
|
|
|
* to a node description `codex` property.
|
|
|
|
*
|
|
|
|
* @param {object} obj
|
|
|
|
* @param obj.node Node to add categories to
|
|
|
|
* @param obj.filePath Path to the built node
|
|
|
|
* @param obj.isCustom Whether the node is custom
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2021-09-21 10:38:24 -07:00
|
|
|
addCodex({
|
|
|
|
node,
|
|
|
|
filePath,
|
|
|
|
isCustom,
|
|
|
|
}: {
|
|
|
|
node: INodeType | INodeVersionedType;
|
|
|
|
filePath: string;
|
|
|
|
isCustom: boolean;
|
|
|
|
}) {
|
2021-06-17 22:58:26 -07:00
|
|
|
try {
|
|
|
|
const codex = this.getCodex(filePath);
|
|
|
|
|
|
|
|
if (isCustom) {
|
|
|
|
codex.categories = codex.categories
|
|
|
|
? codex.categories.concat(CUSTOM_NODES_CATEGORY)
|
|
|
|
: [CUSTOM_NODES_CATEGORY];
|
|
|
|
}
|
|
|
|
|
|
|
|
node.description.codex = codex;
|
|
|
|
} catch (_) {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
2021-06-17 22:58:26 -07:00
|
|
|
this.logger.debug(`No codex available for: ${filePath.split('/').pop()}`);
|
|
|
|
|
|
|
|
if (isCustom) {
|
|
|
|
node.description.codex = {
|
|
|
|
categories: [CUSTOM_NODES_CATEGORY],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads nodes and credentials from the given directory
|
|
|
|
*
|
|
|
|
* @param {string} setPackageName The package name to set for the found nodes
|
|
|
|
* @param {string} directory The directory to look in
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
async loadDataFromDirectory(setPackageName: string, directory: string): Promise<void> {
|
2021-08-29 11:58:11 -07:00
|
|
|
const files = await glob(path.join(directory, '**/*.@(node|credentials).js'));
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
let fileName: string;
|
|
|
|
let type: string;
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const loadPromises: any[] = [];
|
2019-06-23 03:35:23 -07:00
|
|
|
for (const filePath of files) {
|
|
|
|
[fileName, type] = path.parse(filePath).name.split('.');
|
|
|
|
|
|
|
|
if (type === 'node') {
|
|
|
|
loadPromises.push(this.loadNodeFromFile(setPackageName, fileName, filePath));
|
|
|
|
} else if (type === 'credentials') {
|
|
|
|
loadPromises.push(this.loadCredentialsFromFile(fileName, filePath));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(loadPromises);
|
|
|
|
}
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
async readPackageJson(packagePath: string): Promise<IN8nNodePackageJson> {
|
|
|
|
// Get the absolute path of the package
|
|
|
|
const packageFileString = await fsReadFile(path.join(packagePath, 'package.json'), 'utf8');
|
|
|
|
return JSON.parse(packageFileString) as IN8nNodePackageJson;
|
|
|
|
}
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
/**
|
|
|
|
* Loads nodes and credentials from the package with the given name
|
|
|
|
*
|
2022-07-20 07:24:03 -07:00
|
|
|
* @param {string} packagePath The path to read data from
|
2019-06-23 03:35:23 -07:00
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2022-07-20 07:24:03 -07:00
|
|
|
async loadDataFromPackage(packagePath: string): Promise<INodeTypeNameVersion[]> {
|
2019-06-23 03:35:23 -07:00
|
|
|
// Get the absolute path of the package
|
2022-07-20 07:24:03 -07:00
|
|
|
const packageFile = await this.readPackageJson(packagePath);
|
|
|
|
// if (!packageFile.hasOwnProperty('n8n')) {
|
|
|
|
if (!packageFile.n8n) {
|
|
|
|
return [];
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
const packageName = packageFile.name;
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
let tempPath: string;
|
|
|
|
let filePath: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
const returnData: INodeTypeNameVersion[] = [];
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
// Read all node types
|
2021-08-29 11:58:11 -07:00
|
|
|
let fileName: string;
|
|
|
|
let type: string;
|
2019-06-23 03:35:23 -07:00
|
|
|
if (packageFile.n8n.hasOwnProperty('nodes') && Array.isArray(packageFile.n8n.nodes)) {
|
|
|
|
for (filePath of packageFile.n8n.nodes) {
|
|
|
|
tempPath = path.join(packagePath, filePath);
|
|
|
|
[fileName, type] = path.parse(filePath).name.split('.');
|
2022-07-20 07:24:03 -07:00
|
|
|
const loadData = await this.loadNodeFromFile(packageName, fileName, tempPath);
|
|
|
|
if (loadData) {
|
|
|
|
returnData.push(loadData);
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read all credential types
|
2021-08-29 11:58:11 -07:00
|
|
|
if (
|
|
|
|
packageFile.n8n.hasOwnProperty('credentials') &&
|
|
|
|
Array.isArray(packageFile.n8n.credentials)
|
|
|
|
) {
|
2019-06-23 03:35:23 -07:00
|
|
|
for (filePath of packageFile.n8n.credentials) {
|
|
|
|
tempPath = path.join(packagePath, filePath);
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2019-06-23 03:35:23 -07:00
|
|
|
[fileName, type] = path.parse(filePath).name.split('.');
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
2019-06-23 03:35:23 -07:00
|
|
|
this.loadCredentialsFromFile(fileName, tempPath);
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
unloadNodes(installedNodes: InstalledNodes[]): void {
|
|
|
|
const nodeTypes = NodeTypes();
|
|
|
|
installedNodes.forEach((installedNode) => {
|
|
|
|
nodeTypes.removeNodeType(installedNode.type);
|
|
|
|
delete this.nodeTypes[installedNode.type];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
attachNodesToNodeTypes(installedNodes: InstalledNodes[]): void {
|
|
|
|
const nodeTypes = NodeTypes();
|
|
|
|
installedNodes.forEach((installedNode) => {
|
|
|
|
nodeTypes.attachNodeType(
|
|
|
|
installedNode.type,
|
|
|
|
this.nodeTypes[installedNode.type].type,
|
|
|
|
this.nodeTypes[installedNode.type].sourcePath,
|
|
|
|
);
|
|
|
|
});
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let packagesInformationInstance: LoadNodesAndCredentialsClass | undefined;
|
|
|
|
|
|
|
|
export function LoadNodesAndCredentials(): LoadNodesAndCredentialsClass {
|
|
|
|
if (packagesInformationInstance === undefined) {
|
|
|
|
packagesInformationInstance = new LoadNodesAndCredentialsClass();
|
|
|
|
}
|
|
|
|
|
|
|
|
return packagesInformationInstance;
|
|
|
|
}
|