FreeDATA/gui/src/js/settingsHandler.ts

146 lines
4.4 KiB
TypeScript
Raw Normal View History

2023-10-03 13:15:17 +00:00
import path from "node:path";
import fs from "fs";
2023-11-04 02:12:06 +00:00
import { setColormap } from "./waterfallHandler";
2023-09-06 10:23:20 +00:00
// pinia store setup
2023-10-03 13:15:17 +00:00
import { setActivePinia } from "pinia";
import pinia from "../store/index";
2023-09-06 10:23:20 +00:00
setActivePinia(pinia);
2023-11-18 09:44:17 +00:00
import { settingsStore as settings, onChange } from "../store/settingsStore.js";
2023-11-08 10:24:52 +00:00
2023-11-13 17:50:46 +00:00
import { useStateStore } from "../store/stateStore";
const stateStore = useStateStore(pinia);
2023-09-06 10:23:20 +00:00
// ---------------------------------
2023-10-22 08:12:00 +00:00
console.log(process.env);
2023-10-22 09:13:02 +00:00
var appDataFolder = "undefined";
2023-10-22 08:12:00 +00:00
if (typeof process.env["APPDATA"] !== "undefined") {
2023-10-22 09:13:02 +00:00
appDataFolder = process.env["APPDATA"];
2023-10-22 08:12:00 +00:00
console.log(appDataFolder);
2023-10-04 21:34:36 +00:00
} else {
2023-10-22 08:12:00 +00:00
switch (process.platform) {
case "darwin":
2023-10-22 09:13:02 +00:00
appDataFolder = process.env["HOME"] + "/Library/Application Support";
2023-10-22 08:12:00 +00:00
console.log(appDataFolder);
break;
case "linux":
2023-10-22 09:13:02 +00:00
appDataFolder = process.env["HOME"] + "/.config";
2023-10-22 08:12:00 +00:00
console.log(appDataFolder);
2023-10-22 09:19:25 +00:00
break;
2023-10-22 08:12:00 +00:00
case "win32":
2023-10-22 09:13:02 +00:00
appDataFolder = "undefined";
2023-10-22 08:12:00 +00:00
break;
default:
2023-10-22 09:13:02 +00:00
appDataFolder = "undefined";
2023-10-22 08:12:00 +00:00
break;
}
2023-10-04 21:34:36 +00:00
}
2023-09-06 10:23:20 +00:00
var configFolder = path.join(appDataFolder, "FreeDATA");
var configPath = path.join(configFolder, "config.json");
2023-10-22 08:12:00 +00:00
console.log(appDataFolder);
console.log(configFolder);
console.log(configPath);
2023-10-04 21:34:36 +00:00
2023-09-06 10:23:20 +00:00
// create config folder if not exists
if (!fs.existsSync(configFolder)) {
fs.mkdirSync(configFolder);
}
// create config file if not exists with defaults
2023-11-08 10:24:52 +00:00
const configDefaultSettings = `{
"modem_host": "127.0.0.1",
2023-11-13 19:04:15 +00:00
"modem_port": 5000,
2023-11-08 10:24:52 +00:00
"spectrum": "waterfall",
"theme": "default",
"screen_height": 430,
"screen_width": 1050,
"update_channel": "latest",
"wftheme": 2,
"enable_sys_notification": 1
}`;
var parsedConfig = JSON.parse(configDefaultSettings);
2023-09-06 10:23:20 +00:00
if (!fs.existsSync(configPath)) {
fs.writeFileSync(configPath, configDefaultSettings);
}
2023-10-03 13:15:17 +00:00
export function loadSettings() {
// load settings
var config = require(configPath);
2023-09-06 12:48:45 +00:00
2023-10-03 13:15:17 +00:00
//config validation
// check running config against default config.
// if parameter not exists, add it to running config to prevent errors
console.log("CONFIG VALIDATION ----------------------------- ");
2023-09-06 20:20:18 +00:00
2023-10-03 13:15:17 +00:00
for (var key in parsedConfig) {
if (config.hasOwnProperty(key)) {
console.log("FOUND SETTTING [" + key + "]: " + config[key]);
2023-09-06 20:20:18 +00:00
} else {
2023-10-03 13:15:17 +00:00
console.log("MISSING SETTTING [" + key + "] : " + parsedConfig[key]);
config[key] = parsedConfig[key];
fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
}
try {
2023-11-08 10:25:25 +00:00
if (key == "wftheme") {
2024-01-05 22:20:21 +00:00
setColormap();
2023-11-04 02:12:06 +00:00
}
2023-10-03 13:15:17 +00:00
if (key == "mycall") {
2024-01-05 22:20:21 +00:00
settings.remote.STATION.mycall = config[key].split("-")[0];
settings.remote.STATION.myssid = config[key].split("-")[1];
2023-10-03 13:15:17 +00:00
} else {
settings[key] = config[key];
}
} catch (e) {
console.log(e);
2023-09-06 20:20:18 +00:00
}
2023-09-06 10:23:20 +00:00
}
2023-09-06 12:48:45 +00:00
}
2024-01-07 05:06:35 +00:00
//No longer used...
//export function saveSettingsToFile() {
// console.log("save settings to file...");
// let config = settings.getJSON();
// console.log(config);
// fs.writeFileSync(configPath, JSON.stringify(config, null, 2));
//}
2023-11-08 10:24:52 +00:00
2023-11-08 10:25:25 +00:00
export function processModemConfig(data) {
2023-11-08 19:19:13 +00:00
// update our settings from get request
// TODO Can we make this more dynamic? Maybe using a settings object?
// For now its a hardcoded structure until we found a better way
console.log(data);
for (const category in data) {
if (data.hasOwnProperty(category)) {
for (const setting in data[category]) {
if (data[category].hasOwnProperty(setting)) {
// Create a variable name combining the category and setting name
const variableName = setting;
// Assign the value to the variable
if (variableName == "mycall") {
let mycall = data[category][setting];
if (mycall.includes("-")) {
const splittedCallsign = mycall.split("-");
2024-01-05 22:20:21 +00:00
settings.remote.STATION.mycall = splittedCallsign[0]; // The part before the hyphen
2024-01-05 22:20:45 +00:00
settings.remote.STATION.myssid = parseInt(
splittedCallsign[1],
10,
); // The part after the hyphen, converted to a number
} else {
2024-01-05 22:20:21 +00:00
settings.remote.STATION.mycall = mycall; // Use the original mycall if no SSID is present
settings.remote.STATION.myssid = 0; // Default SSID if not provided
2023-11-11 19:32:36 +00:00
}
} else {
settings[variableName] = data[category][setting];
}
console.log(variableName + ": " + settings[variableName]);
}
}
}
}
2023-11-18 16:12:05 +00:00
}