2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
|
|
|
// Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "utils/utils.h"
|
|
|
|
#include "utils/tails.h"
|
|
|
|
|
|
|
|
#define QS QStringLiteral
|
|
|
|
|
|
|
|
struct ConfigDirective
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
QVariant defaultValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const QHash<Config::ConfigKey, ConfigDirective> configStrings = {
|
|
|
|
// General
|
|
|
|
{Config::warnOnExternalLink,{QS("warnOnExternalLink"), true}},
|
|
|
|
{Config::checkForAppUpdates,{QS("checkForAppUpdates"), true}},
|
|
|
|
{Config::warnOnStagenet,{QS("warnOnStagenet"), true}},
|
|
|
|
{Config::warnOnTestnet,{QS("warnOnTestnet"), true}},
|
|
|
|
{Config::warnOnAlpha,{QS("warnOnAlpha"), true}},
|
|
|
|
{Config::homeWidget,{QS("homeWidget"), "ccs"}},
|
|
|
|
{Config::donateBeg,{QS("donateBeg"), 1}},
|
|
|
|
{Config::skin,{QS("skin"), "light"}},
|
|
|
|
{Config::preferredFiatCurrency,{QS("preferredFiatCurrency"), "USD"}},
|
2020-12-21 20:34:36 +00:00
|
|
|
{Config::blockExplorer,{QS("blockExplorer"), "explore.wownero.com"}},
|
2020-10-07 10:36:04 +00:00
|
|
|
{Config::walletDirectory,{QS("walletDirectory"), ""}},
|
|
|
|
{Config::autoOpenWalletPath,{QS("autoOpenWalletPath"), ""}},
|
|
|
|
{Config::walletPath,{QS("walletPath"), ""}},
|
2020-10-14 20:12:32 +00:00
|
|
|
{Config::xmrigPath,{QS("xmrigPath"), ""}},
|
2020-12-21 20:34:36 +00:00
|
|
|
{Config::xmrigPool,{QS("xmrigPool"), "cryptonote.social:2223"}},
|
2020-10-07 10:36:04 +00:00
|
|
|
{Config::nodes,{QS("nodes"), "{}"}},
|
|
|
|
{Config::websocketEnabled,{QS("websocketEnabled"), true}},
|
|
|
|
{Config::nodeSource,{QS("nodeSource"), 0}},
|
|
|
|
{Config::useOnionNodes,{QS("useOnionNodes"), false}},
|
2020-12-30 04:45:00 +00:00
|
|
|
{Config::showTabHome,{QS("showTabHome"), true}},
|
2020-10-07 10:36:04 +00:00
|
|
|
{Config::showTabCoins,{QS("showTabCoins"), false}},
|
2020-12-12 01:49:33 +00:00
|
|
|
{Config::showTabExchange, {QS("showTabExchange"), true}},
|
2020-10-14 20:12:32 +00:00
|
|
|
{Config::showTabXMRig,{QS("showTabXMRig"), false}},
|
2020-10-07 10:36:04 +00:00
|
|
|
{Config::showTabCalc,{QS("showTabCalc"), true}},
|
|
|
|
{Config::geometry, {QS("geometry"), {}}},
|
|
|
|
{Config::windowState, {QS("windowState"), {}}},
|
|
|
|
{Config::firstRun,{QS("firstRun"), false}},
|
2020-12-30 02:48:10 +00:00
|
|
|
{Config::hideBalance, {QS("hideBalance"), false}},
|
2020-12-30 03:58:17 +00:00
|
|
|
{Config::redditFrontend, {QS("redditFrontend"), "old.reddit.com"}},
|
|
|
|
{Config::showHistorySyncNotice, {QS("showHistorySyncNotice"), true}}
|
2020-10-07 10:36:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
QPointer<Config> Config::m_instance(nullptr);
|
|
|
|
|
|
|
|
QVariant Config::get(ConfigKey key)
|
|
|
|
{
|
|
|
|
auto cfg = configStrings[key];
|
|
|
|
auto defaultValue = configStrings[key].defaultValue;
|
|
|
|
|
|
|
|
return m_settings->value(cfg.name, defaultValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Config::getFileName()
|
|
|
|
{
|
|
|
|
return m_settings->fileName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::set(ConfigKey key, const QVariant& value)
|
|
|
|
{
|
|
|
|
if (get(key) == value) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto cfg = configStrings[key];
|
|
|
|
m_settings->setValue(cfg.name, value);
|
|
|
|
|
|
|
|
this->sync();
|
|
|
|
emit changed(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sync configuration with persistent storage.
|
|
|
|
*
|
|
|
|
* Usually, you don't need to call this method manually, but if you are writing
|
|
|
|
* configurations after an emitted \link QCoreApplication::aboutToQuit() signal,
|
|
|
|
* use it to guarantee your config values are persisted.
|
|
|
|
*/
|
|
|
|
void Config::sync()
|
|
|
|
{
|
|
|
|
m_settings->sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::resetToDefaults()
|
|
|
|
{
|
|
|
|
m_settings->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
Config::Config(const QString& fileName, QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
init(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
Config::Config(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
QString configPath;
|
|
|
|
|
|
|
|
bool isTails = TailsOS::detect();
|
|
|
|
|
|
|
|
configPath = QDir::homePath();
|
|
|
|
if (isTails) { // #if defined(PORTABLE)
|
|
|
|
QString appImagePath = qgetenv("APPIMAGE");
|
|
|
|
QFileInfo appImageDir(appImagePath);
|
|
|
|
|
2021-02-20 06:33:04 +00:00
|
|
|
QDir portablePath(appImageDir.absoluteDir().path() + "/.wowllet");
|
2020-10-07 10:36:04 +00:00
|
|
|
if (portablePath.mkpath(".")) {
|
|
|
|
configPath = portablePath.path();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
qCritical() << "Unable to create portable directory: " << portablePath.path();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-20 06:33:04 +00:00
|
|
|
configPath += "/.config/wowllet/settings.json";
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
init(QDir::toNativeSeparators(configPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Config::~Config()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::init(const QString& configFileName)
|
|
|
|
{
|
|
|
|
const QSettings::Format jsonFormat = QSettings::registerFormat("json", Utils::readJsonFile, Utils::writeJsonFile);
|
|
|
|
QSettings::setDefaultFormat(jsonFormat);
|
|
|
|
m_settings.reset(new QSettings(configFileName, jsonFormat));
|
|
|
|
|
|
|
|
connect(qApp, &QCoreApplication::aboutToQuit, this, &Config::sync);
|
|
|
|
}
|
|
|
|
|
|
|
|
Config* Config::instance()
|
|
|
|
{
|
|
|
|
if (!m_instance) {
|
|
|
|
m_instance = new Config(qApp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_instance;
|
2020-12-21 20:34:36 +00:00
|
|
|
}
|