n8n/packages/cli/src/Db.ts

126 lines
3.6 KiB
TypeScript
Raw Normal View History

2019-06-23 03:35:23 -07:00
import {
GenericHelpers,
2019-06-23 03:35:23 -07:00
IDatabaseCollections,
DatabaseType,
} from './';
import {
UserSettings,
} from 'n8n-core';
2019-06-23 03:35:23 -07:00
import {
ConnectionOptions,
createConnection,
getRepository,
2020-04-27 03:46:09 -07:00
Connection,
} from 'typeorm';
2019-06-23 03:35:23 -07:00
import {
MongoDb,
PostgresDb,
2019-06-23 03:35:23 -07:00
SQLite,
MySQLDb,
} from './databases';
2019-06-23 03:35:23 -07:00
export let collections: IDatabaseCollections = {
Credentials: null,
Execution: null,
Workflow: null,
};
import * as path from 'path';
2020-04-27 03:46:09 -07:00
export async function init(synchronize?: boolean): Promise<boolean> {
const dbType = await GenericHelpers.getConfigValue('database.type') as DatabaseType;
2019-06-23 03:35:23 -07:00
const n8nFolder = UserSettings.getUserN8nFolderPath();
let entities;
let connectionOptions: ConnectionOptions;
2020-04-27 03:46:09 -07:00
let connection;
2019-06-23 03:35:23 -07:00
let dbNotExistError: string | undefined;
switch (dbType) {
case 'mongodb':
entities = MongoDb;
connectionOptions = {
type: 'mongodb',
entityPrefix: await GenericHelpers.getConfigValue('database.tablePrefix') as string,
url: await GenericHelpers.getConfigValue('database.mongodb.connectionUrl') as string,
useNewUrlParser: true,
2020-04-27 03:46:09 -07:00
migrations: ['./databases/mongodb/migrations/*.js'],
};
break;
case 'postgresdb':
dbNotExistError = 'does not exist';
entities = PostgresDb;
connectionOptions = {
type: 'postgres',
entityPrefix: await GenericHelpers.getConfigValue('database.tablePrefix') as string,
database: await GenericHelpers.getConfigValue('database.postgresdb.database') as string,
host: await GenericHelpers.getConfigValue('database.postgresdb.host') as string,
password: await GenericHelpers.getConfigValue('database.postgresdb.password') as string,
port: await GenericHelpers.getConfigValue('database.postgresdb.port') as number,
username: await GenericHelpers.getConfigValue('database.postgresdb.user') as string,
2020-03-17 22:04:53 -07:00
schema: await GenericHelpers.getConfigValue('database.postgresdb.schema') as string,
2020-04-27 03:46:09 -07:00
migrations: ['./databases/postgresdb/migrations/*.js']
};
break;
2020-04-14 10:54:11 -07:00
case 'mariadb':
case 'mysqldb':
dbNotExistError = 'does not exist';
entities = MySQLDb;
connectionOptions = {
2020-04-14 10:54:11 -07:00
type: dbType === 'mysqldb' ? 'mysql' : 'mariadb',
database: await GenericHelpers.getConfigValue('database.mysqldb.database') as string,
entityPrefix: await GenericHelpers.getConfigValue('database.tablePrefix') as string,
host: await GenericHelpers.getConfigValue('database.mysqldb.host') as string,
password: await GenericHelpers.getConfigValue('database.mysqldb.password') as string,
port: await GenericHelpers.getConfigValue('database.mysqldb.port') as number,
username: await GenericHelpers.getConfigValue('database.mysqldb.user') as string,
2020-04-27 03:46:09 -07:00
migrations: ['./databases/mysqldb/migrations/*.js']
};
break;
case 'sqlite':
dbNotExistError = 'no such table:';
entities = SQLite;
connectionOptions = {
type: 'sqlite',
database: path.join(n8nFolder, 'database.sqlite'),
entityPrefix: await GenericHelpers.getConfigValue('database.tablePrefix') as string,
2020-04-27 03:46:09 -07:00
migrations: ['./databases/sqlite/migrations/*.js'],
};
break;
default:
throw new Error(`The database "${dbType}" is currently not supported!`);
2019-06-23 03:35:23 -07:00
}
Object.assign(connectionOptions, {
entities: Object.values(entities),
2020-04-22 07:03:50 -07:00
synchronize: false,//synchronize === true || process.env['NODE_ENV'] !== 'production',
2020-04-27 03:46:09 -07:00
logging: true,
migrationsRun: true
2019-06-23 03:35:23 -07:00
});
2020-04-27 03:46:09 -07:00
for(let i = 0; i < 1000; i++){
console.log(connectionOptions);
}
2020-04-27 03:46:09 -07:00
try{
connection = await createConnection(connectionOptions);
await connection.runMigrations({
transaction: "none"
});
}catch(e){
throw new Error("Couldn't connect to db / migrate stuff.")
}
return connection.isConnected;
};