* Simplify options * Use more sensible edition logic * Use set instead of option for string * Improve macro for product name * Add tests launch config * Restore unregistered state * Reorganize cases for title and improve function name * Code coverage on by default * Fixed copyright * Improve code coverage and test readability * Separate build-all and build-coverage * Back out coverage on by default * Fixed bad var in cmake * More verbose logging for coverage * Restore tasks * Restore preLaunchTask * Use default comparitor * Move temp files to temp dir * Add tasks for tests * Support for wstring * Upgrade sonar-scanner to 6 on Debian 12 * Use modern pip install * Install python for sonarcloud * Use Ubuntu and install deps * Fixed sonar-scanner URL * Fix exported dir * Persist build dir * Don't use venv for pip install gcovr * Fixed another path * Update actions/checkout to v4 for SonarCloud analysis workflow * Add coverage task * Improve coverage for SerialKeyEdition.cpp * Enable licensing for builds * Fixed invalid macro names, missing arguments, etc * Fixed more copyright * Fixed incorrect use of "enterprise" * Fixed incorrect use of "business" * Experiment with environment * Make package prefix variable * Add environment matrix to all OS * Improve job names * Make job names easier to read * Roll back environment matrix (too much noise) * Fixed: default should override required * Refactor CI with vars * Fixed arg for env.get_env
652 lines
21 KiB
C++
652 lines
21 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012-2016 Symless Ltd.
|
|
* Copyright (C) 2008 Volker Lanz (vl@fidra.de)
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file LICENSE that should have accompanied this file.
|
|
*
|
|
* This package 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "AppConfig.h"
|
|
#include "QSynergyApplication.h"
|
|
#include "QUtility.h"
|
|
|
|
#include <QPushButton>
|
|
#include <QtCore>
|
|
#include <QtNetwork>
|
|
#include <QtWidgets/QMessageBox>
|
|
|
|
#include "ConfigWriter.h"
|
|
#include "SslCertificate.h"
|
|
|
|
using GUI::Config::ConfigWriter;
|
|
#if defined(Q_OS_WIN)
|
|
const char AppConfig::m_SynergysName[] = "synergys.exe";
|
|
const char AppConfig::m_SynergycName[] = "synergyc.exe";
|
|
const char AppConfig::m_SynergyLogDir[] = "log/";
|
|
const char AppConfig::synergyConfigName[] = "synergy.sgc";
|
|
#define DEFAULT_PROCESS_MODE Service
|
|
#else
|
|
const char AppConfig::m_SynergysName[] = "synergys";
|
|
const char AppConfig::m_SynergycName[] = "synergyc";
|
|
const char AppConfig::m_SynergyLogDir[] = "/var/log/";
|
|
const char AppConfig::synergyConfigName[] = "synergy.conf";
|
|
#define DEFAULT_PROCESS_MODE Desktop
|
|
#endif
|
|
|
|
const ElevateMode defaultElevateMode = ElevateAsNeeded;
|
|
|
|
const char *AppConfig::m_SynergySettingsName[] = {
|
|
"screenName",
|
|
"port",
|
|
"interface",
|
|
"logLevel2",
|
|
"logToFile",
|
|
"logFilename",
|
|
"wizardLastRun",
|
|
"language",
|
|
"startedBefore",
|
|
"autoConfig",
|
|
"autoConfigServer",
|
|
"elevateMode",
|
|
"elevateModeEnum",
|
|
"edition",
|
|
"cryptoEnabled",
|
|
"autoHide",
|
|
"serialKey",
|
|
"lastVersion",
|
|
"lastExpiringWarningTime",
|
|
"activationHasRun",
|
|
"minimizeToTray",
|
|
"ActivateEmail",
|
|
"loadFromSystemScope",
|
|
"groupServerChecked",
|
|
"useExternalConfig",
|
|
"configFile",
|
|
"useInternalConfig",
|
|
"groupClientChecked",
|
|
"serverHostname",
|
|
"tlsCertPath",
|
|
"tlsKeyLength",
|
|
"preventSleep",
|
|
"languageSync",
|
|
"invertScrollDirection",
|
|
"eliteBackersUrl",
|
|
"guid",
|
|
"licenseRegistryUrl",
|
|
"licenseNextCheck",
|
|
"initiateConnectionFromServer",
|
|
"clientHostMode",
|
|
"serverClientMode"};
|
|
|
|
static const char *logLevelNames[] = {"INFO", "DEBUG", "DEBUG1", "DEBUG2"};
|
|
|
|
AppConfig::AppConfig()
|
|
: m_ScreenName(), m_Port(24800), m_Interface(), m_LogLevel(0),
|
|
m_LogToFile(), m_WizardLastRun(0), m_ProcessMode(DEFAULT_PROCESS_MODE),
|
|
m_StartedBefore(), m_AutoConfig(true), m_AutoConfigServer(),
|
|
m_ElevateMode(defaultElevateMode), m_Edition(kUnregistered),
|
|
m_CryptoEnabled(false), m_AutoHide(false), m_LastExpiringWarningTime(0),
|
|
m_ActivationHasRun(), m_MinimizeToTray(false), m_ServerGroupChecked(),
|
|
m_UseExternalConfig(), m_UseInternalConfig(), m_ClientGroupChecked(),
|
|
m_LoadFromSystemScope() {
|
|
|
|
auto writer = ConfigWriter::make();
|
|
|
|
// Register this class to receive global load and saves
|
|
writer->registerClass(this);
|
|
writer->globalLoad();
|
|
|
|
// User settings exist and the load from system scope variable is true
|
|
if (writer->hasSetting(settingName(kLoadSystemSettings),
|
|
ConfigWriter::kUser)) {
|
|
setLoadFromSystemScope(m_LoadFromSystemScope);
|
|
}
|
|
// If user setting don't exist but system ones do, load the system settings
|
|
else if (writer->hasSetting(settingName(kScreenName),
|
|
ConfigWriter::kSystem)) {
|
|
setLoadFromSystemScope(true);
|
|
}
|
|
}
|
|
|
|
const QString &AppConfig::screenName() const { return m_ScreenName; }
|
|
|
|
int AppConfig::port() const { return m_Port; }
|
|
|
|
const QString &AppConfig::networkInterface() const { return m_Interface; }
|
|
|
|
int AppConfig::logLevel() const { return m_LogLevel; }
|
|
|
|
bool AppConfig::logToFile() const { return m_LogToFile; }
|
|
|
|
const QString &AppConfig::logFilename() const { return m_LogFilename; }
|
|
|
|
QString AppConfig::synergyLogDir() const {
|
|
// by default log to home dir
|
|
return QDir::home().absolutePath() + "/";
|
|
}
|
|
|
|
QString AppConfig::synergyProgramDir() const {
|
|
// synergy binaries should be in the same dir.
|
|
return QCoreApplication::applicationDirPath() + "/";
|
|
}
|
|
|
|
void AppConfig::persistLogDir() {
|
|
QDir dir = synergyLogDir();
|
|
|
|
// persist the log directory
|
|
if (!dir.exists()) {
|
|
dir.mkpath(dir.path());
|
|
}
|
|
}
|
|
|
|
const QString AppConfig::logFilenameCmd() const {
|
|
QString filename = m_LogFilename;
|
|
#if defined(Q_OS_WIN)
|
|
// wrap in quotes in case username contains spaces.
|
|
filename = QString("\"%1\"").arg(filename);
|
|
#endif
|
|
return filename;
|
|
}
|
|
|
|
QString AppConfig::logLevelText() const { return logLevelNames[logLevel()]; }
|
|
|
|
ProcessMode AppConfig::processMode() const { return m_ProcessMode; }
|
|
|
|
bool AppConfig::wizardShouldRun() const {
|
|
return m_WizardLastRun < kWizardVersion;
|
|
}
|
|
|
|
const QString &AppConfig::language() const { return m_Language; }
|
|
|
|
bool AppConfig::startedBefore() const { return m_StartedBefore; }
|
|
|
|
bool AppConfig::autoConfig() const {
|
|
#ifdef ENABLE_AUTO_CONFIG
|
|
return m_AutoConfig;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
QString AppConfig::autoConfigServer() const { return m_AutoConfigServer; }
|
|
|
|
void AppConfig::loadSettings() {
|
|
m_ScreenName =
|
|
loadSetting(kScreenName, QHostInfo::localHostName()).toString();
|
|
if (m_ScreenName.isEmpty()) {
|
|
m_ScreenName = QHostInfo::localHostName();
|
|
}
|
|
|
|
m_Port = loadSetting(kPort, 24800).toInt();
|
|
m_Interface = loadSetting(kInterfaceSetting).toString();
|
|
m_LogLevel = loadSetting(kLogLevel, 0).toInt();
|
|
m_LogToFile = loadSetting(kLogToFile, false).toBool();
|
|
m_LogFilename =
|
|
loadSetting(kLogFilename, synergyLogDir() + "synergy.log").toString();
|
|
m_WizardLastRun = loadCommonSetting(kWizardLastRun, 0).toInt();
|
|
m_Language = loadSetting(kLanguage, QLocale::system().name()).toString();
|
|
m_StartedBefore = loadSetting(kStartedBefore, false).toBool();
|
|
m_AutoConfig = loadSetting(kAutoConfig, false).toBool();
|
|
m_AutoConfigServer = loadSetting(kAutoConfigServer, "").toString();
|
|
|
|
{ // Scope related code together
|
|
// TODO Investigate why kElevateModeEnum isn't loaded fully
|
|
QVariant elevateMode = loadSetting(kElevateModeEnum);
|
|
if (!elevateMode.isValid()) {
|
|
elevateMode = loadSetting(kElevateModeSetting,
|
|
QVariant(static_cast<int>(defaultElevateMode)));
|
|
}
|
|
m_ElevateMode = static_cast<ElevateMode>(elevateMode.toInt());
|
|
}
|
|
|
|
m_ActivateEmail = loadSetting(kActivateEmail, "").toString();
|
|
m_CryptoEnabled = loadSetting(kCryptoEnabled, true).toBool();
|
|
m_AutoHide = loadSetting(kAutoHide, false).toBool();
|
|
m_lastVersion = loadSetting(kLastVersion, "Unknown").toString();
|
|
m_LastExpiringWarningTime = loadSetting(kLastExpireWarningTime, 0).toInt();
|
|
m_ActivationHasRun = loadSetting(kActivationHasRun, false).toBool();
|
|
m_MinimizeToTray = loadSetting(kMinimizeToTray, false).toBool();
|
|
m_LoadFromSystemScope =
|
|
loadCommonSetting(kLoadSystemSettings, false).toBool();
|
|
m_ServerGroupChecked = loadSetting(kGroupServerCheck, false).toBool();
|
|
m_UseExternalConfig = loadSetting(kUseExternalConfig, false).toBool();
|
|
m_ConfigFile =
|
|
loadSetting(kConfigFile, QDir::homePath() + "/" + synergyConfigName)
|
|
.toString();
|
|
m_UseInternalConfig = loadSetting(kUseInternalConfig, false).toBool();
|
|
m_ClientGroupChecked = loadSetting(kGroupClientCheck, false).toBool();
|
|
m_ServerHostname = loadSetting(kServerHostname).toString();
|
|
m_PreventSleep = loadSetting(kPreventSleep, false).toBool();
|
|
m_LanguageSync = loadSetting(kLanguageSync, false).toBool();
|
|
m_InvertScrollDirection = loadSetting(kInvertScrollDirection, false).toBool();
|
|
m_eliteBackersUrl =
|
|
loadCommonSetting(kEliteBackersUrl,
|
|
"https://api2.prod.symless.com/credits/elite-backers")
|
|
.toString();
|
|
m_guid = loadCommonSetting(kGuid, QUuid::createUuid()).toString();
|
|
m_licenseRegistryUrl =
|
|
loadCommonSetting(kLicenseRegistryUrl,
|
|
"https://api2.prod.symless.com/license/register")
|
|
.toString();
|
|
m_licenseNextCheck = loadCommonSetting(kLicenseNextCheck, 0).toULongLong();
|
|
m_ClientHostMode = loadSetting(kClientHostMode, true).toBool();
|
|
m_ServerClientMode = loadSetting(kServerClientMode, true).toBool();
|
|
m_InitiateConnectionFromServer =
|
|
loadSetting(kInitiateConnectionFromServer, false).toBool();
|
|
|
|
// only change the serial key if the settings being loaded contains a key
|
|
bool updateSerial = ConfigWriter::make()->hasSetting(
|
|
settingName(kLoadSystemSettings), ConfigWriter::kCurrent);
|
|
// if the setting exists and is not empty
|
|
updateSerial = updateSerial &&
|
|
!loadSetting(kSerialKey, "").toString().trimmed().isEmpty();
|
|
|
|
if (updateSerial) {
|
|
m_Serialkey = loadSetting(kSerialKey, "").toString().trimmed();
|
|
m_Edition = static_cast<Edition>(
|
|
loadSetting(kEditionSetting, kUnregistered).toInt());
|
|
}
|
|
|
|
// Set the default path of the TLS certificate file in the users DIR
|
|
QString certificateFilename =
|
|
QString("%1/%2/%3")
|
|
.arg(m_CoreInterface.getProfileDir(), "SSL", "Synergy.pem");
|
|
|
|
m_TLSCertificatePath =
|
|
loadSetting(kTLSCertPath, certificateFilename).toString();
|
|
m_TLSKeyLength = loadSetting(kTLSKeyLength, "2048").toString();
|
|
|
|
if (getCryptoEnabled()) {
|
|
generateCertificate();
|
|
}
|
|
}
|
|
|
|
void AppConfig::saveSettings() {
|
|
setCommonSetting(kWizardLastRun, m_WizardLastRun);
|
|
setCommonSetting(kLoadSystemSettings, m_LoadFromSystemScope);
|
|
setCommonSetting(kGroupClientCheck, m_ClientGroupChecked);
|
|
setCommonSetting(kGroupServerCheck, m_ServerGroupChecked);
|
|
setCommonSetting(kEliteBackersUrl, m_eliteBackersUrl);
|
|
setCommonSetting(kGuid, m_guid);
|
|
setCommonSetting(kLicenseRegistryUrl, m_licenseRegistryUrl);
|
|
setCommonSetting(kLicenseNextCheck, m_licenseNextCheck);
|
|
|
|
if (isWritable()) {
|
|
setSetting(kScreenName, m_ScreenName);
|
|
setSetting(kPort, m_Port);
|
|
setSetting(kInterfaceSetting, m_Interface);
|
|
setSetting(kLogLevel, m_LogLevel);
|
|
setSetting(kLogToFile, m_LogToFile);
|
|
setSetting(kLogFilename, m_LogFilename);
|
|
setSetting(kLanguage, m_Language);
|
|
setSetting(kStartedBefore, m_StartedBefore);
|
|
setSetting(kAutoConfig, m_AutoConfig);
|
|
setSetting(kAutoConfigServer, m_AutoConfigServer);
|
|
// Refer to enum ElevateMode declaration for insight in to why this
|
|
// flag is mapped this way
|
|
setSetting(kElevateModeSetting, m_ElevateMode == ElevateAlways);
|
|
setSetting(kElevateModeEnum, static_cast<int>(m_ElevateMode));
|
|
setSetting(kEditionSetting, m_Edition);
|
|
setSetting(kCryptoEnabled, m_CryptoEnabled);
|
|
setSetting(kAutoHide, m_AutoHide);
|
|
setSetting(kSerialKey, m_Serialkey);
|
|
setSetting(kLastVersion, m_lastVersion);
|
|
setSetting(kLastExpireWarningTime, m_LastExpiringWarningTime);
|
|
setSetting(kActivationHasRun, m_ActivationHasRun);
|
|
setSetting(kMinimizeToTray, m_MinimizeToTray);
|
|
setSetting(kUseExternalConfig, m_UseExternalConfig);
|
|
setSetting(kConfigFile, m_ConfigFile);
|
|
setSetting(kUseInternalConfig, m_UseInternalConfig);
|
|
setSetting(kServerHostname, m_ServerHostname);
|
|
setSetting(kPreventSleep, m_PreventSleep);
|
|
setSetting(kLanguageSync, m_LanguageSync);
|
|
setSetting(kInvertScrollDirection, m_InvertScrollDirection);
|
|
setSetting(kClientHostMode, m_ClientHostMode);
|
|
setSetting(kServerClientMode, m_ServerClientMode);
|
|
}
|
|
|
|
m_unsavedChanges = false;
|
|
}
|
|
|
|
#ifdef SYNERGY_ENABLE_LICENSING
|
|
bool AppConfig::activationHasRun() const { return m_ActivationHasRun; }
|
|
|
|
AppConfig &AppConfig::activationHasRun(bool value) {
|
|
m_ActivationHasRun = value;
|
|
return *this;
|
|
}
|
|
#endif
|
|
|
|
QString AppConfig::lastVersion() const { return m_lastVersion; }
|
|
|
|
void AppConfig::setLastVersion(const QString &version) {
|
|
setSettingModified(m_lastVersion, version);
|
|
}
|
|
|
|
void AppConfig::setScreenName(const QString &s) {
|
|
setSettingModified(m_ScreenName, s);
|
|
emit screenNameChanged();
|
|
}
|
|
|
|
void AppConfig::setPort(int i) { setSettingModified(m_Port, i); }
|
|
|
|
void AppConfig::setNetworkInterface(const QString &s) {
|
|
setSettingModified(m_Interface, s);
|
|
}
|
|
|
|
void AppConfig::setLogLevel(int i) { setSettingModified(m_LogLevel, i); }
|
|
|
|
void AppConfig::setLogToFile(bool b) { setSettingModified(m_LogToFile, b); }
|
|
|
|
void AppConfig::setLogFilename(const QString &s) {
|
|
setSettingModified(m_LogFilename, s);
|
|
}
|
|
|
|
void AppConfig::setWizardHasRun() {
|
|
setSettingModified(m_WizardLastRun, kWizardVersion);
|
|
}
|
|
|
|
void AppConfig::setLanguage(const QString &language) {
|
|
setSettingModified(m_Language, language);
|
|
}
|
|
|
|
void AppConfig::setStartedBefore(bool b) {
|
|
setSettingModified(m_StartedBefore, b);
|
|
}
|
|
|
|
void AppConfig::setElevateMode(ElevateMode em) {
|
|
setSettingModified(m_ElevateMode, em);
|
|
}
|
|
|
|
void AppConfig::setAutoConfig(bool autoConfig) {
|
|
setSettingModified(m_AutoConfig, autoConfig);
|
|
emit zeroConfToggled();
|
|
}
|
|
|
|
void AppConfig::setAutoConfigServer(const QString &autoConfigServer) {
|
|
setSettingModified(m_AutoConfigServer, autoConfigServer);
|
|
}
|
|
|
|
#ifdef SYNERGY_ENABLE_LICENSING
|
|
void AppConfig::setEdition(Edition e) {
|
|
setSettingModified(m_Edition, e);
|
|
setCommonSetting(kEditionSetting, m_Edition);
|
|
}
|
|
|
|
Edition AppConfig::edition() const { return m_Edition; }
|
|
|
|
void AppConfig::setSerialKey(const QString &serial) {
|
|
setSettingModified(m_Serialkey, serial);
|
|
setCommonSetting(kSerialKey, m_Serialkey);
|
|
}
|
|
|
|
void AppConfig::clearSerialKey() { m_Serialkey.clear(); }
|
|
|
|
QString AppConfig::serialKey() const { return m_Serialkey; }
|
|
|
|
int AppConfig::lastExpiringWarningTime() const {
|
|
return m_LastExpiringWarningTime;
|
|
}
|
|
|
|
void AppConfig::setLastExpiringWarningTime(int newValue) {
|
|
setSettingModified(m_LastExpiringWarningTime, newValue);
|
|
}
|
|
#endif
|
|
|
|
QString AppConfig::synergysName() const { return m_SynergysName; }
|
|
|
|
QString AppConfig::synergycName() const { return m_SynergycName; }
|
|
|
|
ElevateMode AppConfig::elevateMode() { return m_ElevateMode; }
|
|
|
|
void AppConfig::setCryptoEnabled(bool newValue) {
|
|
if (m_CryptoEnabled != newValue && newValue) {
|
|
generateCertificate();
|
|
} else {
|
|
emit sslToggled();
|
|
}
|
|
setSettingModified(m_CryptoEnabled, newValue);
|
|
}
|
|
|
|
bool AppConfig::isCryptoAvailable() const {
|
|
bool result{true};
|
|
|
|
#ifdef SYNERGY_ENABLE_LICENSING
|
|
result = (edition() == kPro || edition() == kProChina ||
|
|
edition() == kBusiness || edition() == kUltimate);
|
|
#endif // SYNERGY_ENABLE_LICENSING
|
|
|
|
return result;
|
|
}
|
|
|
|
bool AppConfig::getCryptoEnabled() const {
|
|
return isCryptoAvailable() && m_CryptoEnabled;
|
|
}
|
|
|
|
void AppConfig::setAutoHide(bool b) { setSettingModified(m_AutoHide, b); }
|
|
|
|
bool AppConfig::getAutoHide() { return m_AutoHide; }
|
|
|
|
void AppConfig::setMinimizeToTray(bool newValue) {
|
|
setSettingModified(m_MinimizeToTray, newValue);
|
|
}
|
|
|
|
bool AppConfig::getInvertScrollDirection() const {
|
|
return m_InvertScrollDirection;
|
|
}
|
|
|
|
void AppConfig::setEliteBackersUrl(const QString &newValue) {
|
|
setSettingModified(m_eliteBackersUrl, newValue);
|
|
}
|
|
|
|
void AppConfig::setLicenseNextCheck(unsigned long long time) {
|
|
setSettingModified(m_licenseNextCheck, time);
|
|
}
|
|
|
|
const QString &AppConfig::getEliteBackersUrl() const {
|
|
return m_eliteBackersUrl;
|
|
}
|
|
|
|
const QString &AppConfig::getLicenseRegistryUrl() const {
|
|
return m_licenseRegistryUrl;
|
|
}
|
|
|
|
unsigned long long AppConfig::getLicenseNextCheck() const {
|
|
return m_licenseNextCheck;
|
|
}
|
|
|
|
const QString &AppConfig::getGuid() const { return m_guid; }
|
|
|
|
bool AppConfig::getLanguageSync() const { return m_LanguageSync; }
|
|
|
|
void AppConfig::setInvertScrollDirection(bool newValue) {
|
|
setSettingModified(m_InvertScrollDirection, newValue);
|
|
}
|
|
|
|
void AppConfig::setLanguageSync(bool newValue) {
|
|
setSettingModified(m_LanguageSync, newValue);
|
|
}
|
|
|
|
bool AppConfig::getPreventSleep() const { return m_PreventSleep; }
|
|
|
|
bool AppConfig::getClientHostMode() const {
|
|
return (m_ClientHostMode && getInitiateConnectionFromServer());
|
|
}
|
|
|
|
bool AppConfig::getServerClientMode() const {
|
|
return (m_ServerClientMode && getInitiateConnectionFromServer());
|
|
}
|
|
|
|
bool AppConfig::getInitiateConnectionFromServer() const {
|
|
return m_InitiateConnectionFromServer;
|
|
}
|
|
|
|
void AppConfig::setPreventSleep(bool newValue) {
|
|
setSettingModified(m_PreventSleep, newValue);
|
|
}
|
|
|
|
bool AppConfig::getMinimizeToTray() { return m_MinimizeToTray; }
|
|
|
|
QString AppConfig::settingName(AppConfig::Setting name) {
|
|
return m_SynergySettingsName[name];
|
|
}
|
|
|
|
template <typename T>
|
|
void AppConfig::setSetting(AppConfig::Setting name, T value) {
|
|
ConfigWriter::make()->setSetting(settingName(name), value);
|
|
}
|
|
|
|
template <typename T>
|
|
void AppConfig::setCommonSetting(AppConfig::Setting name, T value) {
|
|
ConfigWriter::make()->setSetting(settingName(name), value,
|
|
ConfigWriter::kUser);
|
|
ConfigWriter::make()->setSetting(settingName(name), value,
|
|
ConfigWriter::kSystem);
|
|
}
|
|
|
|
QVariant AppConfig::loadSetting(AppConfig::Setting name,
|
|
const QVariant &defaultValue) {
|
|
return ConfigWriter::make()->loadSetting(settingName(name), defaultValue);
|
|
}
|
|
|
|
QVariant AppConfig::loadCommonSetting(AppConfig::Setting name,
|
|
const QVariant &defaultValue) const {
|
|
QVariant result(defaultValue);
|
|
QString setting(settingName(name));
|
|
auto &writer = *ConfigWriter::make();
|
|
|
|
if (writer.hasSetting(setting)) {
|
|
result = writer.loadSetting(setting, defaultValue);
|
|
} else if (writer.getScope() == ConfigWriter::kSystem) {
|
|
if (writer.hasSetting(setting, ConfigWriter::kUser)) {
|
|
result = writer.loadSetting(setting, defaultValue, ConfigWriter::kUser);
|
|
}
|
|
} else if (writer.hasSetting(setting, ConfigWriter::kSystem)) {
|
|
result = writer.loadSetting(setting, defaultValue, ConfigWriter::kSystem);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void AppConfig::loadScope(ConfigWriter::Scope scope) {
|
|
auto writer = ConfigWriter::make();
|
|
|
|
if (writer->getScope() != scope) {
|
|
setDefaultValues();
|
|
writer->setScope(scope);
|
|
if (writer->hasSetting(settingName(kScreenName), writer->getScope())) {
|
|
// If the user already has settings, then load them up now.
|
|
writer->globalLoad();
|
|
}
|
|
}
|
|
}
|
|
|
|
void AppConfig::setDefaultValues() { m_InitiateConnectionFromServer = false; }
|
|
|
|
void AppConfig::setLoadFromSystemScope(bool value) {
|
|
|
|
if (value) {
|
|
loadScope(ConfigWriter::kSystem);
|
|
} else {
|
|
loadScope(ConfigWriter::kUser);
|
|
}
|
|
|
|
/*
|
|
* It's very imprortant to set this variable after loadScope
|
|
* because during scope loading this variable can be rewritten with old value
|
|
*/
|
|
m_LoadFromSystemScope = value;
|
|
}
|
|
|
|
bool AppConfig::isWritable() const {
|
|
return ConfigWriter::make()->isWritable();
|
|
}
|
|
|
|
bool AppConfig::isSystemScoped() const {
|
|
return ConfigWriter::make()->getScope() == ConfigWriter::kSystem;
|
|
}
|
|
|
|
bool AppConfig::getServerGroupChecked() const { return m_ServerGroupChecked; }
|
|
|
|
bool AppConfig::getUseExternalConfig() const { return m_UseExternalConfig; }
|
|
|
|
const QString &AppConfig::getConfigFile() const { return m_ConfigFile; }
|
|
|
|
bool AppConfig::getUseInternalConfig() const { return m_UseInternalConfig; }
|
|
|
|
bool AppConfig::getClientGroupChecked() const { return m_ClientGroupChecked; }
|
|
|
|
QString AppConfig::getServerHostname() const { return m_ServerHostname; }
|
|
|
|
void AppConfig::setServerGroupChecked(bool newValue) {
|
|
setSettingModified(m_ServerGroupChecked, newValue);
|
|
}
|
|
|
|
void AppConfig::setUseExternalConfig(bool newValue) {
|
|
setSettingModified(m_UseExternalConfig, newValue);
|
|
}
|
|
|
|
void AppConfig::setConfigFile(const QString &newValue) {
|
|
setSettingModified(m_ConfigFile, newValue);
|
|
}
|
|
|
|
void AppConfig::setUseInternalConfig(bool newValue) {
|
|
setSettingModified(m_UseInternalConfig, newValue);
|
|
}
|
|
|
|
void AppConfig::setClientGroupChecked(bool newValue) {
|
|
setSettingModified(m_ClientGroupChecked, newValue);
|
|
}
|
|
|
|
void AppConfig::setServerHostname(const QString &newValue) {
|
|
setSettingModified(m_ServerHostname, newValue);
|
|
}
|
|
|
|
void AppConfig::setClientHostMode(bool newValue) {
|
|
setSettingModified(m_ClientHostMode, newValue);
|
|
}
|
|
|
|
void AppConfig::setServerClientMode(bool newValue) {
|
|
setSettingModified(m_ServerClientMode, newValue);
|
|
}
|
|
|
|
template <typename T>
|
|
void AppConfig::setSettingModified(T &variable, const T &newValue) {
|
|
if (variable != newValue) {
|
|
variable = newValue;
|
|
m_unsavedChanges = true;
|
|
}
|
|
}
|
|
|
|
void AppConfig::setTLSCertPath(const QString &path) {
|
|
m_TLSCertificatePath = path;
|
|
}
|
|
|
|
QString AppConfig::getTLSCertPath() const { return m_TLSCertificatePath; }
|
|
|
|
QString AppConfig::getTLSKeyLength() const { return m_TLSKeyLength; }
|
|
|
|
void AppConfig::setTLSKeyLength(const QString &length) {
|
|
if (m_TLSKeyLength != length) {
|
|
m_TLSKeyLength = length;
|
|
generateCertificate(true);
|
|
}
|
|
}
|
|
|
|
void AppConfig::generateCertificate(bool forceGeneration) const {
|
|
SslCertificate sslCertificate;
|
|
sslCertificate.generateCertificate(getTLSCertPath(), getTLSKeyLength(),
|
|
forceGeneration);
|
|
emit sslToggled();
|
|
}
|