mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
137 lines
3.2 KiB
TypeScript
137 lines
3.2 KiB
TypeScript
import fs from 'fs/promises';
|
|
import { DatabaseMethod } from 'utils/db/types';
|
|
import { getSchemas } from '../../schemas';
|
|
import { databaseMethodSet } from '../helpers';
|
|
import patches from '../patches';
|
|
import DatabaseCore from './core';
|
|
import { runPatches } from './runPatch';
|
|
import { Patch } from './types';
|
|
|
|
export class DatabaseManager {
|
|
db?: DatabaseCore;
|
|
|
|
get #isInitialized(): boolean {
|
|
return this.db !== undefined && this.db.knex !== undefined;
|
|
}
|
|
|
|
getSchemaMap() {
|
|
return this.db?.schemaMap ?? {};
|
|
}
|
|
|
|
async createNewDatabase(dbPath: string, countryCode?: string) {
|
|
await this.#unlinkIfExists(dbPath);
|
|
await this.connectToDatabase(dbPath, countryCode);
|
|
}
|
|
|
|
async connectToDatabase(dbPath: string, countryCode?: string) {
|
|
this.db = new DatabaseCore(dbPath);
|
|
this.db.connect();
|
|
|
|
countryCode ??= await this.#getCountryCode();
|
|
const schemaMap = getSchemas(countryCode);
|
|
this.db.setSchemaMap(schemaMap);
|
|
|
|
await this.#migrate();
|
|
}
|
|
|
|
async call(method: DatabaseMethod, ...args: unknown[]) {
|
|
if (!this.#isInitialized) {
|
|
return;
|
|
}
|
|
|
|
if (!databaseMethodSet.has(method)) {
|
|
return;
|
|
}
|
|
|
|
// @ts-ignore
|
|
const response = await this.db[method](...args);
|
|
if (method === 'close') {
|
|
delete this.db;
|
|
}
|
|
|
|
return response;
|
|
}
|
|
|
|
async #migrate(): Promise<void> {
|
|
if (!this.#isInitialized) {
|
|
return;
|
|
}
|
|
|
|
const isFirstRun = await this.#getIsFirstRun();
|
|
if (isFirstRun) {
|
|
await this.db!.migrate();
|
|
}
|
|
|
|
const patchesToExecute = await this.#getPatchesToExecute();
|
|
const preMigrationPatches = patchesToExecute.filter(
|
|
(p) => p.patch.beforeMigrate
|
|
);
|
|
const postMigrationPatches = patchesToExecute.filter(
|
|
(p) => !p.patch.beforeMigrate
|
|
);
|
|
|
|
await runPatches(preMigrationPatches, this);
|
|
await this.db!.migrate();
|
|
await runPatches(postMigrationPatches, this);
|
|
}
|
|
|
|
async #getPatchesToExecute(): Promise<Patch[]> {
|
|
if (this.db === undefined) {
|
|
return [];
|
|
}
|
|
|
|
const query: { name: string }[] = await this.db.knex!('PatchRun').select(
|
|
'name'
|
|
);
|
|
const executedPatches = query.map((q) => q.name);
|
|
return patches.filter((p) => !executedPatches.includes(p.name));
|
|
}
|
|
|
|
async #getCountryCode(): Promise<string | undefined> {
|
|
if (this.db === undefined) {
|
|
return undefined;
|
|
}
|
|
|
|
let query: { countryCode: string }[] = [];
|
|
try {
|
|
query = await this.db.knex!('SingleValue').where({
|
|
fieldname: 'countryCode',
|
|
parent: 'SystemSettings',
|
|
});
|
|
} catch {
|
|
// Database not inialized and no countryCode passed
|
|
}
|
|
|
|
if (query.length > 0) {
|
|
return query[0].countryCode as string;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
async #unlinkIfExists(dbPath: string) {
|
|
try {
|
|
fs.unlink(dbPath);
|
|
} catch (err) {
|
|
if ((err as NodeJS.ErrnoException).code === 'ENOENT') {
|
|
return;
|
|
}
|
|
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
async #getIsFirstRun(): Promise<boolean> {
|
|
if (!this.#isInitialized) {
|
|
return true;
|
|
}
|
|
|
|
const tableList: unknown[] = await this.db!.knex!.raw(
|
|
"SELECT name FROM sqlite_master WHERE type='table'"
|
|
);
|
|
return tableList.length === 0;
|
|
}
|
|
}
|
|
|
|
export default new DatabaseManager();
|