tabs/src/Config.ts

88 lines
2.6 KiB
TypeScript
Raw Normal View History

import fs from "fs";
import path from "path";
import getAppDataPath from "appdata-path";
import Service from "./Service";
import Meta from "./Meta";
const configDir = Meta.isDevMode() ? getAppDataPath('tabs-app-dev') : getAppDataPath('tabs-app');
const configFile = path.resolve(configDir, 'config.json');
export default class Config {
2020-05-21 07:38:44 +02:00
public services: Service[] = [];
2020-05-21 07:38:44 +02:00
public updateCheckSkip?: string;
public startMinimized: boolean = false;
public bigNavBar: boolean = false;
2020-05-21 07:38:44 +02:00
public securityButton: boolean = true;
public homeButton: boolean = false;
public backButton: boolean = true;
public forwardButton: boolean = false;
public refreshButton: boolean = false;
2020-05-21 07:38:44 +02:00
private properties: string[] = [];
constructor() {
// Load data from config file
2020-05-21 07:38:44 +02:00
let data: any = {};
if (fs.existsSync(configDir) && fs.statSync(configDir).isDirectory()) {
if (fs.existsSync(configFile) && fs.statSync(configFile).isFile())
data = JSON.parse(fs.readFileSync(configFile, 'utf8'));
} else {
fs.mkdirSync(configDir);
}
// Parse services
if (typeof data.services === 'object') {
let i = 0;
for (const service of data.services) {
this.services[i] = new Service(service);
i++;
}
}
if (this.services.length === 0) {
2020-05-05 21:27:10 +02:00
this.services.push(new Service('welcome', 'Welcome', 'rocket', false, 'https://github.com/ArisuOngaku/tabs', false));
}
this.defineProperty('updateCheckSkip', data);
this.defineProperty('startMinimized', data);
this.defineProperty('bigNavBar', data);
this.defineProperty('securityButton', data);
this.defineProperty('homeButton', data);
this.defineProperty('backButton', data);
this.defineProperty('forwardButton', data);
this.defineProperty('refreshButton', data);
this.save();
}
save() {
console.log('Saving config');
2020-01-04 15:49:23 +01:00
this.services = this.services.filter(s => s !== null);
fs.writeFileSync(configFile, JSON.stringify(this, null, 4));
console.log('> Config saved to', configFile.toString());
}
2020-05-21 07:38:44 +02:00
defineProperty(name: string, data: any) {
if (data[name] !== undefined) {
2020-05-21 07:38:44 +02:00
(<any>this)[name] = data[name];
}
this.properties.push(name);
}
2020-05-21 07:38:44 +02:00
update(data: any) {
for (const prop of this.properties) {
if (data[prop] !== undefined) {
2020-05-21 07:38:44 +02:00
(<any>this)[prop] = data[prop];
}
}
}
}