2023-03-24 09:04:26 -07:00
|
|
|
import glob from 'fast-glob';
|
2023-10-09 07:09:23 -07:00
|
|
|
import { Container, Service } from 'typedi';
|
|
|
|
import path from 'path';
|
|
|
|
import fsPromises from 'fs/promises';
|
|
|
|
|
2023-01-27 05:56:56 -08:00
|
|
|
import type { DirectoryLoader, Types } from 'n8n-core';
|
2019-06-23 03:35:23 -07:00
|
|
|
import {
|
2022-11-23 07:20:28 -08:00
|
|
|
CUSTOM_EXTENSION_ENV,
|
2023-10-23 04:39:35 -07:00
|
|
|
InstanceSettings,
|
2022-11-23 07:20:28 -08:00
|
|
|
CustomDirectoryLoader,
|
|
|
|
PackageDirectoryLoader,
|
|
|
|
LazyPackageDirectoryLoader,
|
|
|
|
} from 'n8n-core';
|
|
|
|
import type {
|
|
|
|
KnownNodesAndCredentials,
|
2023-02-03 04:14:59 -08:00
|
|
|
INodeTypeDescription,
|
2023-10-09 07:09:23 -07:00
|
|
|
INodeTypeData,
|
|
|
|
ICredentialTypeData,
|
2019-06-23 03:35:23 -07:00
|
|
|
} from 'n8n-workflow';
|
2023-10-25 07:35:22 -07:00
|
|
|
import { ErrorReporterProxy as ErrorReporter } from 'n8n-workflow';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-11-09 06:25:00 -08:00
|
|
|
import config from '@/config';
|
2023-02-03 04:14:59 -08:00
|
|
|
import {
|
|
|
|
CUSTOM_API_CALL_KEY,
|
|
|
|
CUSTOM_API_CALL_NAME,
|
2023-02-10 05:59:20 -08:00
|
|
|
inTest,
|
2023-03-24 09:04:26 -07:00
|
|
|
CLI_DIR,
|
2023-08-31 07:40:20 -07:00
|
|
|
inE2ETests,
|
2023-02-03 04:14:59 -08:00
|
|
|
} from '@/constants';
|
2023-10-25 07:35:22 -07:00
|
|
|
import { Logger } from '@/Logger';
|
2023-10-09 07:09:23 -07:00
|
|
|
|
|
|
|
interface LoadedNodesAndCredentials {
|
|
|
|
nodes: INodeTypeData;
|
|
|
|
credentials: ICredentialTypeData;
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-02-21 10:21:56 -08:00
|
|
|
@Service()
|
2023-10-09 07:09:23 -07:00
|
|
|
export class LoadNodesAndCredentials {
|
|
|
|
private known: KnownNodesAndCredentials = { nodes: {}, credentials: {} };
|
2021-06-17 22:58:26 -07:00
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
loaded: LoadedNodesAndCredentials = { nodes: {}, credentials: {} };
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
types: Types = { nodes: [], credentials: [] };
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-02-08 09:57:43 -08:00
|
|
|
loaders: Record<string, DirectoryLoader> = {};
|
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
excludeNodes = config.getEnv('nodes.exclude');
|
2021-08-29 11:58:11 -07:00
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
includeNodes = config.getEnv('nodes.include');
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
private postProcessors: Array<() => Promise<void>> = [];
|
|
|
|
|
2023-10-25 07:35:22 -07:00
|
|
|
constructor(
|
|
|
|
private readonly logger: Logger,
|
|
|
|
private readonly instanceSettings: InstanceSettings,
|
|
|
|
) {}
|
2023-10-23 04:39:35 -07:00
|
|
|
|
2019-08-08 11:38:25 -07:00
|
|
|
async init() {
|
2023-10-09 07:09:23 -07:00
|
|
|
if (inTest) throw new Error('Not available in tests');
|
|
|
|
|
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-11-23 07:20:28 -08:00
|
|
|
|
2022-07-20 07:24:03 -07:00
|
|
|
// @ts-ignore
|
2022-11-23 07:20:28 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
2023-10-09 07:09:23 -07:00
|
|
|
module.constructor._initPaths();
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-08-31 07:40:20 -07:00
|
|
|
if (!inE2ETests) {
|
|
|
|
this.excludeNodes = this.excludeNodes ?? [];
|
|
|
|
this.excludeNodes.push('n8n-nodes-base.e2eTest');
|
|
|
|
}
|
|
|
|
|
2023-06-07 04:58:14 -07:00
|
|
|
// Load nodes from `n8n-nodes-base`
|
|
|
|
const basePathsToScan = [
|
2023-04-03 03:14:41 -07:00
|
|
|
// In case "n8n" package is in same node_modules folder.
|
|
|
|
path.join(CLI_DIR, '..'),
|
|
|
|
// In case "n8n" package is the root and the packages are
|
|
|
|
// in the "node_modules" folder underneath it.
|
|
|
|
path.join(CLI_DIR, 'node_modules'),
|
|
|
|
];
|
|
|
|
|
2023-06-07 04:58:14 -07:00
|
|
|
for (const nodeModulesDir of basePathsToScan) {
|
|
|
|
await this.loadNodesFromNodeModules(nodeModulesDir, 'n8n-nodes-base');
|
2023-04-03 03:14:41 -07:00
|
|
|
}
|
2023-03-24 09:04:26 -07:00
|
|
|
|
2023-06-07 04:58:14 -07:00
|
|
|
// Load nodes from any other `n8n-nodes-*` packages in the download directory
|
|
|
|
// This includes the community nodes
|
2023-10-23 04:39:35 -07:00
|
|
|
await this.loadNodesFromNodeModules(
|
|
|
|
path.join(this.instanceSettings.nodesDownloadDir, 'node_modules'),
|
|
|
|
);
|
2023-06-07 04:58:14 -07:00
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
await this.loadNodesFromCustomDirectories();
|
2023-02-08 09:57:43 -08:00
|
|
|
await this.postProcessLoaders();
|
2022-11-23 07:20:28 -08:00
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
addPostProcessor(fn: () => Promise<void>) {
|
|
|
|
this.postProcessors.push(fn);
|
|
|
|
}
|
2023-01-04 09:16:48 -08:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
isKnownNode(type: string) {
|
|
|
|
return type in this.known.nodes;
|
|
|
|
}
|
2023-01-04 09:16:48 -08:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
get loadedCredentials() {
|
|
|
|
return this.loaded.credentials;
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
get loadedNodes() {
|
|
|
|
return this.loaded.nodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
get knownCredentials() {
|
|
|
|
return this.known.credentials;
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
get knownNodes() {
|
|
|
|
return this.known.nodes;
|
2022-07-20 07:24:03 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 04:58:14 -07:00
|
|
|
private async loadNodesFromNodeModules(
|
|
|
|
nodeModulesDir: string,
|
|
|
|
packageName?: string,
|
|
|
|
): Promise<void> {
|
2023-07-31 08:55:16 -07:00
|
|
|
const globOptions = {
|
2023-06-07 04:58:14 -07:00
|
|
|
cwd: nodeModulesDir,
|
|
|
|
onlyDirectories: true,
|
|
|
|
deep: 1,
|
2023-07-31 08:55:16 -07:00
|
|
|
};
|
|
|
|
const installedPackagePaths = packageName
|
|
|
|
? await glob(packageName, globOptions)
|
|
|
|
: [
|
|
|
|
...(await glob('n8n-nodes-*', globOptions)),
|
|
|
|
...(await glob('@*/n8n-nodes-*', { ...globOptions, deep: 2 })),
|
|
|
|
];
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-03-24 09:04:26 -07:00
|
|
|
for (const packagePath of installedPackagePaths) {
|
2022-07-20 07:24:03 -07:00
|
|
|
try {
|
2023-03-24 09:04:26 -07:00
|
|
|
await this.runDirectoryLoader(
|
|
|
|
LazyPackageDirectoryLoader,
|
|
|
|
path.join(nodeModulesDir, packagePath),
|
|
|
|
);
|
2022-11-04 09:34:47 -07:00
|
|
|
} catch (error) {
|
|
|
|
ErrorReporter.error(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
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
resolveIcon(packageName: string, url: string): string | undefined {
|
|
|
|
const loader = this.loaders[packageName];
|
|
|
|
if (loader) {
|
|
|
|
const pathPrefix = `/icons/${packageName}/`;
|
|
|
|
const filePath = path.resolve(loader.directory, url.substring(pathPrefix.length));
|
|
|
|
if (!path.relative(loader.directory, filePath).includes('..')) {
|
|
|
|
return filePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2023-01-05 04:28:40 -08:00
|
|
|
getCustomDirectories(): string[] {
|
2023-10-23 04:39:35 -07:00
|
|
|
const customDirectories = [this.instanceSettings.customExtensionDir];
|
2019-06-23 03:35:23 -07:00
|
|
|
|
|
|
|
if (process.env[CUSTOM_EXTENSION_ENV] !== undefined) {
|
2023-01-05 04:28:40 -08:00
|
|
|
const customExtensionFolders = process.env[CUSTOM_EXTENSION_ENV].split(';');
|
2022-09-09 09:08:08 -07:00
|
|
|
customDirectories.push(...customExtensionFolders);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
2023-01-05 04:28:40 -08:00
|
|
|
return customDirectories;
|
|
|
|
}
|
|
|
|
|
2023-02-08 09:57:43 -08:00
|
|
|
private async loadNodesFromCustomDirectories(): Promise<void> {
|
2023-01-05 04:28:40 -08:00
|
|
|
for (const directory of this.getCustomDirectories()) {
|
2022-11-23 07:20:28 -08:00
|
|
|
await this.runDirectoryLoader(CustomDirectoryLoader, directory);
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
async loadPackage(packageName: string) {
|
2023-10-23 04:39:35 -07:00
|
|
|
const finalNodeUnpackedPath = path.join(
|
|
|
|
this.instanceSettings.nodesDownloadDir,
|
|
|
|
'node_modules',
|
|
|
|
packageName,
|
|
|
|
);
|
2023-10-09 07:09:23 -07:00
|
|
|
return this.runDirectoryLoader(PackageDirectoryLoader, finalNodeUnpackedPath);
|
2022-07-20 07:24:03 -07:00
|
|
|
}
|
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
async unloadPackage(packageName: string) {
|
2023-02-15 07:09:53 -08:00
|
|
|
if (packageName in this.loaders) {
|
|
|
|
this.loaders[packageName].reset();
|
|
|
|
delete this.loaders[packageName];
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
}
|
|
|
|
|
2023-02-03 04:14:59 -08:00
|
|
|
/**
|
|
|
|
* Whether any of the node's credential types may be used to
|
|
|
|
* make a request from a node other than itself.
|
|
|
|
*/
|
|
|
|
private supportsProxyAuth(description: INodeTypeDescription) {
|
|
|
|
if (!description.credentials) return false;
|
|
|
|
|
|
|
|
return description.credentials.some(({ name }) => {
|
|
|
|
const credType = this.types.credentials.find((t) => t.name === name);
|
|
|
|
if (!credType) {
|
2023-10-25 07:35:22 -07:00
|
|
|
this.logger.warn(
|
2023-02-03 04:14:59 -08:00
|
|
|
`Failed to load Custom API options for the node "${description.name}": Unknown credential name "${name}"`,
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (credType.authenticate !== undefined) return true;
|
|
|
|
|
|
|
|
return (
|
|
|
|
Array.isArray(credType.extends) &&
|
|
|
|
credType.extends.some((parentType) =>
|
|
|
|
['oAuth2Api', 'googleOAuth2Api', 'oAuth1Api'].includes(parentType),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inject a `Custom API Call` option into `resource` and `operation`
|
|
|
|
* parameters in a latest-version node that supports proxy auth.
|
|
|
|
*/
|
|
|
|
private injectCustomApiCallOptions() {
|
|
|
|
this.types.nodes.forEach((node: INodeTypeDescription) => {
|
|
|
|
const isLatestVersion =
|
|
|
|
node.defaultVersion === undefined || node.defaultVersion === node.version;
|
|
|
|
|
|
|
|
if (isLatestVersion) {
|
|
|
|
if (!this.supportsProxyAuth(node)) return;
|
|
|
|
|
|
|
|
node.properties.forEach((p) => {
|
|
|
|
if (
|
|
|
|
['resource', 'operation'].includes(p.name) &&
|
|
|
|
Array.isArray(p.options) &&
|
|
|
|
p.options[p.options.length - 1].name !== CUSTOM_API_CALL_NAME
|
|
|
|
) {
|
|
|
|
p.options.push({
|
|
|
|
name: CUSTOM_API_CALL_NAME,
|
|
|
|
value: CUSTOM_API_CALL_KEY,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-06-17 22:58:26 -07:00
|
|
|
/**
|
2022-11-23 07:20:28 -08:00
|
|
|
* Run a loader of source files of nodes and credentials in a directory.
|
2021-06-17 22:58:26 -07:00
|
|
|
*/
|
2022-11-23 07:20:28 -08:00
|
|
|
private async runDirectoryLoader<T extends DirectoryLoader>(
|
|
|
|
constructor: new (...args: ConstructorParameters<typeof DirectoryLoader>) => T,
|
|
|
|
dir: string,
|
|
|
|
) {
|
|
|
|
const loader = new constructor(dir, this.excludeNodes, this.includeNodes);
|
|
|
|
await loader.loadAll();
|
2023-02-15 07:09:53 -08:00
|
|
|
this.loaders[loader.packageName] = loader;
|
2023-02-08 09:57:43 -08:00
|
|
|
return loader;
|
|
|
|
}
|
2022-11-23 07:20:28 -08:00
|
|
|
|
2023-02-08 09:57:43 -08:00
|
|
|
async postProcessLoaders() {
|
2023-02-15 07:09:53 -08:00
|
|
|
this.known = { nodes: {}, credentials: {} };
|
|
|
|
this.loaded = { nodes: {}, credentials: {} };
|
|
|
|
this.types = { nodes: [], credentials: [] };
|
|
|
|
|
|
|
|
for (const loader of Object.values(this.loaders)) {
|
2023-02-08 09:57:43 -08:00
|
|
|
// list of node & credential types that will be sent to the frontend
|
2023-07-10 08:57:26 -07:00
|
|
|
const { known, types, directory } = loader;
|
2023-02-08 09:57:43 -08:00
|
|
|
this.types.nodes = this.types.nodes.concat(types.nodes);
|
|
|
|
this.types.credentials = this.types.credentials.concat(types.credentials);
|
|
|
|
|
|
|
|
// Nodes and credentials that have been loaded immediately
|
|
|
|
for (const nodeTypeName in loader.nodeTypes) {
|
|
|
|
this.loaded.nodes[nodeTypeName] = loader.nodeTypes[nodeTypeName];
|
|
|
|
}
|
2022-07-20 07:24:03 -07:00
|
|
|
|
2023-02-08 09:57:43 -08:00
|
|
|
for (const credentialTypeName in loader.credentialTypes) {
|
|
|
|
this.loaded.credentials[credentialTypeName] = loader.credentialTypes[credentialTypeName];
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2023-07-10 08:57:26 -07:00
|
|
|
for (const type in known.nodes) {
|
|
|
|
const { className, sourcePath } = known.nodes[type];
|
|
|
|
this.known.nodes[type] = {
|
|
|
|
className,
|
|
|
|
sourcePath: path.join(directory, sourcePath),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const type in known.credentials) {
|
|
|
|
const {
|
|
|
|
className,
|
|
|
|
sourcePath,
|
|
|
|
nodesToTestWith,
|
|
|
|
extends: extendsArr,
|
|
|
|
} = known.credentials[type];
|
|
|
|
this.known.credentials[type] = {
|
|
|
|
className,
|
|
|
|
sourcePath: path.join(directory, sourcePath),
|
|
|
|
nodesToTestWith:
|
|
|
|
loader instanceof PackageDirectoryLoader
|
|
|
|
? nodesToTestWith?.map((nodeName) => `${loader.packageName}.${nodeName}`)
|
|
|
|
: undefined,
|
|
|
|
extends: extendsArr,
|
|
|
|
};
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
}
|
2023-10-09 07:09:23 -07:00
|
|
|
|
|
|
|
this.injectCustomApiCallOptions();
|
|
|
|
|
|
|
|
for (const postProcessor of this.postProcessors) {
|
|
|
|
await postProcessor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async setupHotReload() {
|
|
|
|
const { default: debounce } = await import('lodash/debounce');
|
|
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
|
|
const { watch } = await import('chokidar');
|
2023-10-27 05:15:02 -07:00
|
|
|
|
2023-10-09 07:09:23 -07:00
|
|
|
const { Push } = await import('@/push');
|
|
|
|
const push = Container.get(Push);
|
|
|
|
|
|
|
|
Object.values(this.loaders).forEach(async (loader) => {
|
|
|
|
try {
|
|
|
|
await fsPromises.access(loader.directory);
|
|
|
|
} catch {
|
|
|
|
// If directory doesn't exist, there is nothing to watch
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const realModulePath = path.join(await fsPromises.realpath(loader.directory), path.sep);
|
|
|
|
const reloader = debounce(async () => {
|
|
|
|
const modulesToUnload = Object.keys(require.cache).filter((filePath) =>
|
|
|
|
filePath.startsWith(realModulePath),
|
|
|
|
);
|
|
|
|
modulesToUnload.forEach((filePath) => {
|
|
|
|
delete require.cache[filePath];
|
|
|
|
});
|
|
|
|
|
|
|
|
loader.reset();
|
|
|
|
await loader.loadAll();
|
|
|
|
await this.postProcessLoaders();
|
2023-11-07 07:26:45 -08:00
|
|
|
push.broadcast('nodeDescriptionUpdated');
|
2023-10-09 07:09:23 -07:00
|
|
|
}, 100);
|
|
|
|
|
|
|
|
const toWatch = loader.isLazyLoaded
|
|
|
|
? ['**/nodes.json', '**/credentials.json']
|
|
|
|
: ['**/*.js', '**/*.json'];
|
|
|
|
watch(toWatch, { cwd: realModulePath }).on('change', reloader);
|
|
|
|
});
|
2022-07-20 07:24:03 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|