BetterDiscordApp-rauenzi/renderer/src/modules/datastore.js

130 lines
5.0 KiB
JavaScript
Raw Normal View History

2023-05-20 00:37:21 +02:00
import fs from "fs";
import path from "path";
2023-05-19 22:38:45 +02:00
import Logger from "@common/logger";
2023-05-20 00:37:21 +02:00
import Config from "@data/config";
2021-03-01 01:19:25 +01:00
const releaseChannel = window?.DiscordNative?.app?.getReleaseChannel?.() ?? "stable";
2019-05-28 20:19:48 +02:00
2019-06-27 04:31:18 +02:00
// Schema
2019-06-06 21:57:25 +02:00
// =======================
// %appdata%\BetterDiscord
// -> data
// -> [releaseChannel]\ (stable/canary/ptb)
// -> settings.json
// -> plugins.json
// -> themes.json
2019-05-29 05:48:41 +02:00
export default new class DataStore {
2019-05-28 20:19:48 +02:00
constructor() {
2019-06-07 05:52:08 +02:00
this.data = {misc: {}};
2019-05-28 20:19:48 +02:00
this.pluginData = {};
2019-06-28 07:36:05 +02:00
this.cacheData = {};
2019-05-28 20:19:48 +02:00
}
initialize() {
2021-03-25 17:19:55 +01:00
const bdFolderExists = fs.existsSync(Config.dataPath);
if (!bdFolderExists) fs.mkdirSync(Config.dataPath);
const pluginFolderExists = fs.existsSync(this.pluginFolder);
if (!pluginFolderExists) fs.mkdirSync(this.pluginFolder);
const themeFolderExists = fs.existsSync(this.themeFolder);
if (!themeFolderExists) fs.mkdirSync(this.themeFolder);
2020-07-29 21:06:54 +02:00
const newStorageExists = fs.existsSync(this.baseFolder);
if (!newStorageExists) fs.mkdirSync(this.baseFolder);
2019-06-07 05:52:08 +02:00
if (!fs.existsSync(this.dataFolder)) fs.mkdirSync(this.dataFolder);
2019-06-10 22:37:50 +02:00
if (!fs.existsSync(this.customCSS)) fs.writeFileSync(this.customCSS, "");
2019-06-07 05:52:08 +02:00
const dataFiles = fs.readdirSync(this.dataFolder).filter(f => !fs.statSync(path.resolve(this.dataFolder, f)).isDirectory() && f.endsWith(".json"));
for (const file of dataFiles) {
let data = {};
try {data = __non_webpack_require__(path.resolve(this.dataFolder, file));}
catch (e) {Logger.stacktrace("DataStore", `Could not load file ${file}`, e);}
this.data[file.split(".")[0]] = data;
2019-06-07 05:52:08 +02:00
}
2020-07-16 07:42:56 +02:00
}
get pluginFolder() {return this._pluginFolder || (this._pluginFolder = path.resolve(Config.dataPath, "plugins"));}
get themeFolder() {return this._themeFolder || (this._themeFolder = path.resolve(Config.dataPath, "themes"));}
2019-06-10 22:37:50 +02:00
get customCSS() {return this._customCSS || (this._customCSS = path.resolve(this.dataFolder, "custom.css"));}
2019-06-07 05:52:08 +02:00
get baseFolder() {return this._baseFolder || (this._baseFolder = path.resolve(Config.dataPath, "data"));}
get dataFolder() {return this._dataFolder || (this._dataFolder = path.resolve(this.baseFolder, `${releaseChannel}`));}
2019-05-28 20:19:48 +02:00
getPluginFile(pluginName) {return path.resolve(Config.dataPath, "plugins", pluginName + ".config.json");}
2019-06-06 21:57:25 +02:00
2019-06-07 05:52:08 +02:00
_getFile(key) {
2020-07-16 07:42:56 +02:00
if (key == "settings" || key == "plugins" || key == "themes" || key == "window") return path.resolve(this.dataFolder, `${key}.json`);
2019-06-07 05:52:08 +02:00
return path.resolve(this.dataFolder, `misc.json`);
}
2019-06-06 21:57:25 +02:00
getBDData(key) {
2019-06-07 05:52:08 +02:00
return this.data.misc[key] || "";
2019-05-28 20:19:48 +02:00
}
2019-06-06 21:57:25 +02:00
setBDData(key, value) {
2019-06-07 05:52:08 +02:00
this.data.misc[key] = value;
fs.writeFileSync(path.resolve(this.dataFolder, `misc.json`), JSON.stringify(this.data.misc, null, 4));
2019-05-28 20:19:48 +02:00
}
2019-06-27 04:31:18 +02:00
getLocale(locale) {
const file = path.resolve(this.localeFolder, `${locale}.json`);
if (!fs.existsSync(file)) return null;
2022-10-02 09:34:34 +02:00
try {return JSON.parse(fs.readFileSync(file).toString());}
catch {return false;}
2019-06-27 04:31:18 +02:00
}
saveLocale(locale, strings) {
fs.writeFileSync(path.resolve(this.localeFolder, `${locale}.json`), JSON.stringify(strings, null, 4));
}
2019-06-06 21:57:25 +02:00
getData(key) {
2019-05-28 20:19:48 +02:00
return this.data[key] || "";
}
2019-06-06 21:57:25 +02:00
setData(key, value) {
2019-05-28 20:19:48 +02:00
this.data[key] = value;
2019-06-07 05:52:08 +02:00
fs.writeFileSync(path.resolve(this.dataFolder, `${key}.json`), JSON.stringify(value, null, 4));
2019-05-28 20:19:48 +02:00
}
2019-06-10 22:37:50 +02:00
loadCustomCSS() {
return fs.readFileSync(this.customCSS).toString();
}
saveCustomCSS(css) {
return fs.writeFileSync(this.customCSS, css);
}
ensurePluginData(pluginName) {
if (typeof(this.pluginData[pluginName]) !== "undefined") return; // Already have data cached
// Setup blank data if config doesn't exist
if (!fs.existsSync(this.getPluginFile(pluginName))) return this.pluginData[pluginName] = {};
// Getting here means not cached, read from disk
2019-05-28 20:19:48 +02:00
this.pluginData[pluginName] = JSON.parse(fs.readFileSync(this.getPluginFile(pluginName)));
}
getPluginData(pluginName, key) {
this.ensurePluginData(pluginName); // Ensure plugin data, if any, is cached
return this.pluginData[pluginName][key]; // Return blindly to allow falsey values
2019-05-28 20:19:48 +02:00
}
setPluginData(pluginName, key, value) {
if (value === undefined) return; // Can't set undefined, use deletePluginData
this.ensurePluginData(pluginName); // Ensure plugin data, if any, is cached
this.pluginData[pluginName][key] = value; // Set the value blindly to allow falsey values
fs.writeFileSync(this.getPluginFile(pluginName), JSON.stringify(this.pluginData[pluginName], null, 4)); // Save to disk
2019-05-28 20:19:48 +02:00
}
deletePluginData(pluginName, key) {
this.ensurePluginData(pluginName); // Ensure plugin data, if any, is cached
2019-05-28 20:19:48 +02:00
delete this.pluginData[pluginName][key];
fs.writeFileSync(this.getPluginFile(pluginName), JSON.stringify(this.pluginData[pluginName], null, 4));
}
2019-05-29 05:48:41 +02:00
};