2021-09-11 01:15:36 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/restrict-template-expressions */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
|
|
/* eslint-disable no-param-reassign */
|
|
|
|
/* eslint-disable no-underscore-dangle */
|
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
2019-06-23 03:35:23 -07:00
|
|
|
import * as express from 'express';
|
2019-09-19 04:21:10 -07:00
|
|
|
import { join as pathJoin } from 'path';
|
2021-05-29 11:31:21 -07:00
|
|
|
import { readFile as fsReadFile } from 'fs/promises';
|
2019-08-03 05:06:11 -07:00
|
|
|
import { IDataObject } from 'n8n-workflow';
|
2021-08-29 11:58:11 -07:00
|
|
|
import * as config from '../config';
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line import/no-cycle
|
2021-09-11 01:15:36 -07:00
|
|
|
import { Db, ICredentialsDb, IPackageVersions } from '.';
|
|
|
|
// eslint-disable-next-line import/order
|
|
|
|
import { Like } from 'typeorm';
|
|
|
|
// eslint-disable-next-line import/no-cycle
|
|
|
|
import { WorkflowEntity } from './databases/entities/WorkflowEntity';
|
2019-09-19 04:21:10 -07:00
|
|
|
|
|
|
|
let versionCache: IPackageVersions | undefined;
|
|
|
|
|
2019-06-23 03:35:23 -07:00
|
|
|
/**
|
|
|
|
* Returns the base URL n8n is reachable from
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getBaseUrl(): string {
|
2021-08-29 11:58:11 -07:00
|
|
|
const protocol = config.get('protocol');
|
|
|
|
const host = config.get('host');
|
|
|
|
const port = config.get('port');
|
|
|
|
const path = config.get('path');
|
2019-06-23 03:35:23 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
if ((protocol === 'http' && port === 80) || (protocol === 'https' && port === 443)) {
|
2020-07-12 00:28:08 -07:00
|
|
|
return `${protocol}://${host}${path}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
2020-07-12 00:28:08 -07:00
|
|
|
return `${protocol}://${host}:${port}${path}`;
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the session id if one is set
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {express.Request} req
|
|
|
|
* @returns {(string | undefined)}
|
|
|
|
*/
|
|
|
|
export function getSessionId(req: express.Request): string | undefined {
|
|
|
|
return req.headers.sessionid as string | undefined;
|
|
|
|
}
|
2019-08-03 05:06:11 -07:00
|
|
|
|
2019-09-19 04:21:10 -07:00
|
|
|
/**
|
|
|
|
* Returns information which version of the packages are installed
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @returns {Promise<IPackageVersions>}
|
|
|
|
*/
|
|
|
|
export async function getVersions(): Promise<IPackageVersions> {
|
|
|
|
if (versionCache !== undefined) {
|
|
|
|
return versionCache;
|
|
|
|
}
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
const packageFile = await fsReadFile(pathJoin(__dirname, '../../package.json'), 'utf8');
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
2019-09-19 04:21:10 -07:00
|
|
|
const packageData = JSON.parse(packageFile);
|
|
|
|
|
|
|
|
versionCache = {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
2019-09-19 04:21:10 -07:00
|
|
|
cli: packageData.version,
|
|
|
|
};
|
|
|
|
|
|
|
|
return versionCache;
|
|
|
|
}
|
|
|
|
|
2021-05-29 11:31:21 -07:00
|
|
|
/**
|
|
|
|
* Extracts configuration schema for key
|
|
|
|
*
|
|
|
|
* @param {string} configKey
|
|
|
|
* @param {IDataObject} configSchema
|
|
|
|
* @returns {IDataObject} schema of the configKey
|
|
|
|
*/
|
|
|
|
function extractSchemaForKey(configKey: string, configSchema: IDataObject): IDataObject {
|
|
|
|
const configKeyParts = configKey.split('.');
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-restricted-syntax
|
2021-05-29 11:31:21 -07:00
|
|
|
for (const key of configKeyParts) {
|
|
|
|
if (configSchema[key] === undefined) {
|
|
|
|
throw new Error(`Key "${key}" of ConfigKey "${configKey}" does not exist`);
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
2021-05-29 11:31:21 -07:00
|
|
|
} else if ((configSchema[key]! as IDataObject)._cvtProperties === undefined) {
|
|
|
|
configSchema = configSchema[key] as IDataObject;
|
|
|
|
} else {
|
|
|
|
configSchema = (configSchema[key] as IDataObject)._cvtProperties as IDataObject;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return configSchema;
|
|
|
|
}
|
2019-09-19 04:21:10 -07:00
|
|
|
|
2019-08-03 05:06:11 -07:00
|
|
|
/**
|
|
|
|
* Gets value from config with support for "_FILE" environment variables
|
|
|
|
*
|
|
|
|
* @export
|
|
|
|
* @param {string} configKey The key of the config data to get
|
|
|
|
* @returns {(Promise<string | boolean | number | undefined>)}
|
|
|
|
*/
|
2021-08-29 11:58:11 -07:00
|
|
|
export async function getConfigValue(
|
|
|
|
configKey: string,
|
|
|
|
): Promise<string | boolean | number | undefined> {
|
2019-08-03 05:06:11 -07:00
|
|
|
// Get the environment variable
|
|
|
|
const configSchema = config.getSchema();
|
2021-03-25 03:42:19 -07:00
|
|
|
// @ts-ignore
|
2021-05-29 11:31:21 -07:00
|
|
|
const currentSchema = extractSchemaForKey(configKey, configSchema._cvtProperties as IDataObject);
|
|
|
|
// Check if environment variable is defined for config key
|
|
|
|
if (currentSchema.env === undefined) {
|
|
|
|
// No environment variable defined, so return value from config
|
|
|
|
return config.get(configKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if special file enviroment variable exists
|
2021-08-29 11:58:11 -07:00
|
|
|
const fileEnvironmentVariable = process.env[`${currentSchema.env}_FILE`];
|
2021-05-29 11:31:21 -07:00
|
|
|
if (fileEnvironmentVariable === undefined) {
|
|
|
|
// Does not exist, so return value from config
|
|
|
|
return config.get(configKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
let data;
|
|
|
|
try {
|
2021-08-29 11:58:11 -07:00
|
|
|
data = await fsReadFile(fileEnvironmentVariable, 'utf8');
|
2021-05-29 11:31:21 -07:00
|
|
|
} catch (error) {
|
|
|
|
if (error.code === 'ENOENT') {
|
|
|
|
throw new Error(`The file "${fileEnvironmentVariable}" could not be found.`);
|
2019-08-03 05:06:11 -07:00
|
|
|
}
|
2021-05-29 11:31:21 -07:00
|
|
|
|
|
|
|
throw error;
|
2019-08-03 05:06:11 -07:00
|
|
|
}
|
|
|
|
|
2021-05-29 11:31:21 -07:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
/**
|
|
|
|
* Generate a unique name for a workflow or credentials entity.
|
|
|
|
*
|
|
|
|
* - If the name does not yet exist, it returns the requested name.
|
|
|
|
* - If the name already exists once, it returns the requested name suffixed with 2.
|
|
|
|
* - If the name already exists more than once with suffixes, it looks for the max suffix
|
|
|
|
* and returns the requested name with max suffix + 1.
|
|
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
|
|
|
export async function generateUniqueName(
|
|
|
|
requestedName: string,
|
|
|
|
entityType: 'workflow' | 'credentials',
|
|
|
|
) {
|
|
|
|
const findConditions = {
|
|
|
|
select: ['name' as const],
|
|
|
|
where: {
|
|
|
|
name: Like(`${requestedName}%`),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const found: Array<WorkflowEntity | ICredentialsDb> =
|
|
|
|
entityType === 'workflow'
|
|
|
|
? await Db.collections.Workflow!.find(findConditions)
|
|
|
|
: await Db.collections.Credentials!.find(findConditions);
|
|
|
|
|
|
|
|
// name is unique
|
|
|
|
if (found.length === 0) {
|
|
|
|
return { name: requestedName };
|
|
|
|
}
|
|
|
|
|
|
|
|
const maxSuffix = found.reduce((acc, { name }) => {
|
|
|
|
const parts = name.split(`${requestedName} `);
|
|
|
|
|
|
|
|
if (parts.length > 2) return acc;
|
|
|
|
|
|
|
|
const suffix = Number(parts[1]);
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-restricted-globals
|
|
|
|
if (!isNaN(suffix) && Math.ceil(suffix) > acc) {
|
|
|
|
acc = Math.ceil(suffix);
|
|
|
|
}
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
// name is duplicate but no numeric suffixes exist yet
|
|
|
|
if (maxSuffix === 0) {
|
|
|
|
return { name: `${requestedName} 2` };
|
|
|
|
}
|
|
|
|
|
|
|
|
return { name: `${requestedName} ${maxSuffix + 1}` };
|
|
|
|
}
|