mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Cleanup config initialization, add local config options
* Fix #5313, allow specifying local config path using environment variable and command line flag * Add command line flag `--localconfig <path>` to specify a file path to use for the local configuration settings. * Add environment variable support to set config files paths: `KPXC_CONFIG` and `KPXC_CONFIG_LOCAL` to override default locations. * Reorder startup sequence to load specified config files earlier to allow for theme settings and other early options to be picked up. * Removed old command line option `--pw`, no longer used. * Attempt a fix of application not closing when last window is gone. Only set `QApplication::setQuitOnLastWindowClosed(true)` when tray icon is enabled instead of always.
This commit is contained in:
parent
122051c91c
commit
9886b1075f
7 changed files with 125 additions and 69 deletions
|
@ -22,6 +22,7 @@
|
|||
#include <QCoreApplication>
|
||||
#include <QDir>
|
||||
#include <QHash>
|
||||
#include <QProcessEnvironment>
|
||||
#include <QSettings>
|
||||
#include <QSize>
|
||||
#include <QStandardPaths>
|
||||
|
@ -418,49 +419,17 @@ void Config::migrate()
|
|||
sync();
|
||||
}
|
||||
|
||||
Config::Config(const QString& fileName, QObject* parent)
|
||||
Config::Config(const QString& configFileName, const QString& localConfigFileName, QObject* parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
init(fileName);
|
||||
init(configFileName, localConfigFileName);
|
||||
}
|
||||
|
||||
Config::Config(QObject* parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
// Check if we are running in portable mode, if so store the config files local to the app
|
||||
auto portablePath = QCoreApplication::applicationDirPath().append("/%1");
|
||||
if (QFile::exists(portablePath.arg(".portable"))) {
|
||||
init(portablePath.arg("config/keepassxc.ini"), portablePath.arg("config/keepassxc_local.ini"));
|
||||
return;
|
||||
}
|
||||
|
||||
QString configPath;
|
||||
QString localConfigPath;
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation);
|
||||
#elif defined(Q_OS_MACOS)
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
||||
#else
|
||||
// On case-sensitive Operating Systems, force use of lowercase app directories
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/keepassxc";
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/keepassxc";
|
||||
#endif
|
||||
|
||||
configPath += "/keepassxc";
|
||||
localConfigPath += "/keepassxc";
|
||||
|
||||
#ifdef QT_DEBUG
|
||||
configPath += "_debug";
|
||||
localConfigPath += "_debug";
|
||||
#endif
|
||||
|
||||
configPath += ".ini";
|
||||
localConfigPath += ".ini";
|
||||
|
||||
init(QDir::toNativeSeparators(configPath), QDir::toNativeSeparators(localConfigPath));
|
||||
auto configFiles = defaultConfigFiles();
|
||||
init(configFiles.first, configFiles.second);
|
||||
}
|
||||
|
||||
Config::~Config()
|
||||
|
@ -488,6 +457,45 @@ void Config::init(const QString& configFileName, const QString& localConfigFileN
|
|||
connect(qApp, &QCoreApplication::aboutToQuit, this, &Config::sync);
|
||||
}
|
||||
|
||||
QPair<QString, QString> Config::defaultConfigFiles()
|
||||
{
|
||||
// Check if we are running in portable mode, if so store the config files local to the app
|
||||
auto portablePath = QCoreApplication::applicationDirPath().append("/%1");
|
||||
if (QFile::exists(portablePath.arg(".portable"))) {
|
||||
return {portablePath.arg("config/keepassxc.ini"), portablePath.arg("config/keepassxc_local.ini")};
|
||||
}
|
||||
|
||||
QString configPath;
|
||||
QString localConfigPath;
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation);
|
||||
#elif defined(Q_OS_MACOS)
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
||||
#else
|
||||
// On case-sensitive Operating Systems, force use of lowercase app directories
|
||||
configPath = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/keepassxc";
|
||||
localConfigPath = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/keepassxc";
|
||||
#endif
|
||||
|
||||
QString suffix;
|
||||
#ifdef QT_DEBUG
|
||||
suffix = "_debug";
|
||||
#endif
|
||||
|
||||
configPath += QString("/keepassxc%1.ini").arg(suffix);
|
||||
localConfigPath += QString("/keepassxc%1.ini").arg(suffix);
|
||||
|
||||
// Allow overriding the default location with env vars
|
||||
const auto& env = QProcessEnvironment::systemEnvironment();
|
||||
configPath = env.value("KPXC_CONFIG", configPath);
|
||||
localConfigPath = env.value("KPXC_CONFIG_LOCAL", localConfigPath);
|
||||
|
||||
return {QDir::toNativeSeparators(configPath), QDir::toNativeSeparators(localConfigPath)};
|
||||
}
|
||||
|
||||
Config* Config::instance()
|
||||
{
|
||||
if (!m_instance) {
|
||||
|
@ -497,12 +505,16 @@ Config* Config::instance()
|
|||
return m_instance;
|
||||
}
|
||||
|
||||
void Config::createConfigFromFile(const QString& file)
|
||||
void Config::createConfigFromFile(const QString& configFileName, const QString& localConfigFileName)
|
||||
{
|
||||
if (m_instance) {
|
||||
delete m_instance;
|
||||
}
|
||||
m_instance = new Config(file, qApp);
|
||||
|
||||
auto defaultFiles = defaultConfigFiles();
|
||||
m_instance = new Config(configFileName.isEmpty() ? defaultFiles.first : configFileName,
|
||||
localConfigFileName.isEmpty() ? defaultFiles.second : localConfigFileName,
|
||||
qApp);
|
||||
}
|
||||
|
||||
void Config::createTempFileInstance()
|
||||
|
@ -514,7 +526,7 @@ void Config::createTempFileInstance()
|
|||
bool openResult = tmpFile->open();
|
||||
Q_ASSERT(openResult);
|
||||
Q_UNUSED(openResult);
|
||||
m_instance = new Config(tmpFile->fileName(), qApp);
|
||||
m_instance = new Config(tmpFile->fileName(), "", qApp);
|
||||
tmpFile->setParent(m_instance);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue