2021-07-21 19:02:35 +01:00
|
|
|
const fs = require("fs");
|
2021-07-30 05:24:46 +01:00
|
|
|
const { sleep } = require("../src/util");
|
|
|
|
const { R } = require("redbean-node");
|
2021-08-06 12:12:49 +01:00
|
|
|
const { setSetting, setting } = require("./util-server");
|
2021-08-06 12:09:00 +01:00
|
|
|
const knex = require("knex");
|
2021-07-21 19:02:35 +01:00
|
|
|
|
|
|
|
class Database {
|
|
|
|
|
|
|
|
static templatePath = "./db/kuma.db"
|
2021-07-28 13:52:49 +01:00
|
|
|
static path = "./data/kuma.db";
|
2021-08-03 10:42:57 +01:00
|
|
|
static latestVersion = 5;
|
2021-07-21 19:02:35 +01:00
|
|
|
static noReject = true;
|
|
|
|
|
2021-08-06 12:09:00 +01:00
|
|
|
static connect() {
|
|
|
|
const Dialect = require("knex/lib/dialects/sqlite3/index.js");
|
|
|
|
Dialect.prototype._driver = () => require("@louislam/sqlite3");
|
|
|
|
|
|
|
|
R.setup(knex({
|
|
|
|
client: Dialect,
|
|
|
|
connection: {
|
|
|
|
filename: Database.path,
|
|
|
|
},
|
|
|
|
useNullAsDefault: true,
|
|
|
|
pool: {
|
|
|
|
min: 1,
|
|
|
|
max: 1,
|
|
|
|
idleTimeoutMillis: 30000,
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2021-07-21 19:02:35 +01:00
|
|
|
static async patch() {
|
|
|
|
let version = parseInt(await setting("database_version"));
|
|
|
|
|
|
|
|
if (! version) {
|
|
|
|
version = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.info("Your database version: " + version);
|
|
|
|
console.info("Latest database version: " + this.latestVersion);
|
|
|
|
|
|
|
|
if (version === this.latestVersion) {
|
|
|
|
console.info("Database no need to patch");
|
|
|
|
} else {
|
|
|
|
console.info("Database patch is needed")
|
|
|
|
|
|
|
|
console.info("Backup the db")
|
|
|
|
const backupPath = "./data/kuma.db.bak" + version;
|
|
|
|
fs.copyFileSync(Database.path, backupPath);
|
|
|
|
|
|
|
|
// Try catch anything here, if gone wrong, restore the backup
|
|
|
|
try {
|
|
|
|
for (let i = version + 1; i <= this.latestVersion; i++) {
|
|
|
|
const sqlFile = `./db/patch${i}.sql`;
|
|
|
|
console.info(`Patching ${sqlFile}`);
|
|
|
|
await Database.importSQLFile(sqlFile);
|
|
|
|
console.info(`Patched ${sqlFile}`);
|
|
|
|
await setSetting("database_version", i);
|
|
|
|
}
|
|
|
|
console.log("Database Patched Successfully");
|
|
|
|
} catch (ex) {
|
|
|
|
await Database.close();
|
|
|
|
console.error("Patch db failed!!! Restoring the backup")
|
|
|
|
fs.copyFileSync(backupPath, Database.path);
|
|
|
|
console.error(ex)
|
|
|
|
|
|
|
|
console.error("Start Uptime-Kuma failed due to patch db failed")
|
|
|
|
console.error("Please submit the bug report if you still encounter the problem after restart: https://github.com/louislam/uptime-kuma/issues")
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sadly, multi sql statements is not supported by many sqlite libraries, I have to implement it myself
|
|
|
|
* @param filename
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
static async importSQLFile(filename) {
|
|
|
|
|
|
|
|
await R.getCell("SELECT 1");
|
|
|
|
|
|
|
|
let text = fs.readFileSync(filename).toString();
|
|
|
|
|
|
|
|
// Remove all comments (--)
|
|
|
|
let lines = text.split("\n");
|
|
|
|
lines = lines.filter((line) => {
|
|
|
|
return ! line.startsWith("--")
|
|
|
|
});
|
|
|
|
|
|
|
|
// Split statements by semicolon
|
|
|
|
// Filter out empty line
|
|
|
|
text = lines.join("\n")
|
|
|
|
|
|
|
|
let statements = text.split(";")
|
|
|
|
.map((statement) => {
|
|
|
|
return statement.trim();
|
|
|
|
})
|
|
|
|
.filter((statement) => {
|
|
|
|
return statement !== "";
|
|
|
|
})
|
|
|
|
|
|
|
|
for (let statement of statements) {
|
|
|
|
await R.exec(statement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Special handle, because tarn.js throw a promise reject that cannot be caught
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
static async close() {
|
|
|
|
const listener = (reason, p) => {
|
|
|
|
Database.noReject = false;
|
|
|
|
};
|
2021-07-30 05:24:46 +01:00
|
|
|
process.addListener("unhandledRejection", listener);
|
2021-07-21 19:02:35 +01:00
|
|
|
|
|
|
|
console.log("Closing DB")
|
|
|
|
|
2021-07-30 08:13:51 +01:00
|
|
|
while (true) {
|
2021-07-21 19:02:35 +01:00
|
|
|
Database.noReject = true;
|
|
|
|
await R.close()
|
|
|
|
await sleep(2000)
|
|
|
|
|
|
|
|
if (Database.noReject) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
console.log("Waiting to close the db")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log("SQLite closed")
|
|
|
|
|
2021-07-30 05:24:46 +01:00
|
|
|
process.removeListener("unhandledRejection", listener);
|
2021-07-21 19:02:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Database;
|