fluxer/fluxer_desktop/src/common/DesktopConfig.tsx
2026-02-17 12:22:36 +00:00

82 lines
2.3 KiB
TypeScript

/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
import fs from 'node:fs';
import path from 'node:path';
import {BUILD_CHANNEL} from '@electron/common/BuildChannel';
import {CANARY_APP_URL, STABLE_APP_URL} from '@electron/common/Constants';
import log from 'electron-log';
const CONFIG_FILE_NAME = 'settings.json';
interface DesktopConfig {
app_url?: string;
}
let config: DesktopConfig = {};
let configPath: string | null = null;
function saveDesktopConfig(): void {
if (!configPath) {
log.warn('Desktop config path not initialised; cannot save settings');
return;
}
try {
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
log.info('Saved desktop config to', configPath, {app_url: config.app_url ?? '(default)'});
} catch (error) {
log.error('Failed to save desktop config:', error);
}
}
export function loadDesktopConfig(userDataPath: string): void {
configPath = path.join(userDataPath, CONFIG_FILE_NAME);
try {
if (fs.existsSync(configPath)) {
const data = fs.readFileSync(configPath, 'utf-8');
config = JSON.parse(data) as DesktopConfig;
log.info('Loaded desktop config from', configPath, {app_url: config.app_url ?? '(default)'});
}
} catch (error) {
log.error('Failed to load desktop config:', error);
}
}
export function getAppUrl(): string {
if (config.app_url) {
return config.app_url;
}
return BUILD_CHANNEL === 'canary' ? CANARY_APP_URL : STABLE_APP_URL;
}
export function getCustomAppUrl(): string | null {
return config.app_url ?? null;
}
export function setCustomAppUrl(appUrl: string | null): void {
if (appUrl) {
config.app_url = appUrl;
} else {
delete config.app_url;
}
saveDesktopConfig();
}