2023-02-27 01:09:49 +00:00
|
|
|
const fs = require("fs");
|
|
|
|
|
2023-04-20 20:43:05 +00:00
|
|
|
template = "localdb.json.template"
|
2023-02-27 01:09:49 +00:00
|
|
|
filename = "localdb.json";
|
|
|
|
|
2023-04-20 20:43:05 +00:00
|
|
|
let db = JSON.parse(fs.readFileSync(template));
|
2023-02-27 01:28:01 +00:00
|
|
|
|
2023-02-26 08:36:27 +00:00
|
|
|
/**
|
|
|
|
* called at app startup, can be used to initialize any variables needed for database access
|
|
|
|
*/
|
2023-02-27 01:28:01 +00:00
|
|
|
function init () {
|
|
|
|
try {
|
2023-04-20 20:43:05 +00:00
|
|
|
load();
|
2023-02-27 01:28:01 +00:00
|
|
|
}
|
|
|
|
catch {
|
2023-04-20 20:43:05 +00:00
|
|
|
save();
|
2023-02-27 01:28:01 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-26 08:36:27 +00:00
|
|
|
|
2023-04-19 02:42:35 +00:00
|
|
|
function load () {
|
|
|
|
db = JSON.parse(fs.readFileSync(filename));
|
2023-02-27 01:28:01 +00:00
|
|
|
}
|
2023-02-26 08:36:27 +00:00
|
|
|
|
2023-04-19 02:42:35 +00:00
|
|
|
function save () {
|
|
|
|
fs.writeFileSync(filename, JSON.stringify(db));
|
|
|
|
}
|
|
|
|
|
2023-04-20 20:43:05 +00:00
|
|
|
function getResources() {
|
|
|
|
return db.resources;
|
2023-02-27 01:28:01 +00:00
|
|
|
}
|
2023-02-26 08:36:27 +00:00
|
|
|
|
2023-04-19 02:42:35 +00:00
|
|
|
function getUser (username) {
|
|
|
|
return db.users[username];
|
|
|
|
}
|
|
|
|
|
2023-04-20 20:43:05 +00:00
|
|
|
module.exports = {init, getUser, getResources};
|