2011-12-23 11:59:09 +01:00
|
|
|
/*
|
2017-12-27 16:46:56 +01:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-12-23 11:59:09 +01:00
|
|
|
* Copyright (C) 2011 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program 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/>.
|
|
|
|
*/
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
#include "FilePath.h"
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2020-01-06 03:00:25 +01:00
|
|
|
#include <QBitmap>
|
2013-10-03 15:18:16 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QLibrary>
|
2020-01-06 03:00:25 +01:00
|
|
|
#include <QStyle>
|
2011-12-23 11:59:09 +01:00
|
|
|
|
|
|
|
#include "config-keepassx.h"
|
2017-12-17 16:52:13 +02:00
|
|
|
#include "core/Config.h"
|
2018-03-31 16:01:30 -04:00
|
|
|
#include "core/Global.h"
|
2020-01-06 03:00:25 +01:00
|
|
|
#include "gui/MainWindow.h"
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2015-07-24 18:28:12 +02:00
|
|
|
FilePath* FilePath::m_instance(nullptr);
|
2012-05-31 14:51:44 +02:00
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
QString FilePath::dataPath(const QString& name)
|
2011-12-23 11:59:09 +01:00
|
|
|
{
|
2012-07-18 21:04:47 +02:00
|
|
|
if (name.isEmpty() || name.startsWith('/')) {
|
|
|
|
return m_dataPath + name;
|
2018-03-31 16:01:30 -04:00
|
|
|
} else {
|
2012-07-18 21:04:47 +02:00
|
|
|
return m_dataPath + "/" + name;
|
|
|
|
}
|
2011-12-23 11:59:09 +01:00
|
|
|
}
|
|
|
|
|
2012-07-18 20:54:26 +02:00
|
|
|
QString FilePath::pluginPath(const QString& name)
|
|
|
|
{
|
|
|
|
QStringList pluginPaths;
|
2012-10-28 15:31:57 +01:00
|
|
|
|
2012-07-18 20:54:26 +02:00
|
|
|
QDir buildDir(QCoreApplication::applicationDirPath() + "/autotype");
|
2016-09-02 19:51:51 +02:00
|
|
|
const QStringList buildDirEntryList = buildDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
|
|
|
|
for (const QString& dir : buildDirEntryList) {
|
2012-07-18 20:54:26 +02:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/autotype/" + dir;
|
|
|
|
}
|
2012-10-28 15:31:57 +01:00
|
|
|
|
|
|
|
// for TestAutoType
|
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../src/autotype/test";
|
|
|
|
|
2018-10-26 15:19:04 +02:00
|
|
|
#if defined(Q_OS_MACOS) && defined(WITH_APP_BUNDLE)
|
2016-11-08 22:13:57 +01:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../PlugIns";
|
|
|
|
#endif
|
|
|
|
|
2012-07-18 20:54:26 +02:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath();
|
2013-04-29 22:17:31 +02:00
|
|
|
|
2015-05-12 22:20:42 +02:00
|
|
|
QString configuredPluginDir = KEEPASSX_PLUGIN_DIR;
|
|
|
|
if (configuredPluginDir != ".") {
|
|
|
|
if (QDir(configuredPluginDir).isAbsolute()) {
|
|
|
|
pluginPaths << configuredPluginDir;
|
2018-03-31 16:01:30 -04:00
|
|
|
} else {
|
|
|
|
QString relativePluginDir =
|
|
|
|
QString("%1/../%2").arg(QCoreApplication::applicationDirPath(), configuredPluginDir);
|
2015-05-12 22:20:42 +02:00
|
|
|
pluginPaths << QDir(relativePluginDir).canonicalPath();
|
|
|
|
|
2018-03-31 16:01:30 -04:00
|
|
|
QString absolutePluginDir = QString("%1/%2").arg(KEEPASSX_PREFIX_DIR, configuredPluginDir);
|
2015-05-12 22:20:42 +02:00
|
|
|
pluginPaths << QDir(absolutePluginDir).canonicalPath();
|
2013-04-29 22:17:31 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-18 20:54:26 +02:00
|
|
|
|
|
|
|
QStringList dirFilter;
|
|
|
|
dirFilter << QString("*%1*").arg(name);
|
|
|
|
|
2016-09-02 19:51:51 +02:00
|
|
|
for (const QString& path : asConst(pluginPaths)) {
|
|
|
|
const QStringList fileCandidates = QDir(path).entryList(dirFilter, QDir::Files);
|
2012-07-18 20:54:26 +02:00
|
|
|
|
2016-09-02 19:51:51 +02:00
|
|
|
for (const QString& file : fileCandidates) {
|
2012-07-18 20:54:26 +02:00
|
|
|
QString filePath = path + "/" + file;
|
|
|
|
|
|
|
|
if (QLibrary::isLibrary(filePath)) {
|
|
|
|
return filePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2018-02-05 12:31:13 +01:00
|
|
|
QString FilePath::wordlistPath(const QString& name)
|
|
|
|
{
|
2018-02-11 15:08:07 +01:00
|
|
|
return dataPath("wordlists/" + name);
|
2018-02-05 12:31:13 +01:00
|
|
|
}
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
QIcon FilePath::applicationIcon()
|
2018-03-08 03:57:14 +01:00
|
|
|
{
|
|
|
|
return icon("apps", "keepassxc", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon FilePath::trayIcon()
|
2012-01-05 22:27:08 +01:00
|
|
|
{
|
2020-02-01 08:51:11 -05:00
|
|
|
return useDarkIcon() ? icon("apps", "keepassxc-dark", false) : icon("apps", "keepassxc", false);
|
2017-10-21 15:16:52 +03:00
|
|
|
}
|
|
|
|
|
2016-10-08 18:55:05 +02:00
|
|
|
QIcon FilePath::trayIconLocked()
|
|
|
|
{
|
2017-10-03 12:29:39 -04:00
|
|
|
return icon("apps", "keepassxc-locked", false);
|
2016-10-08 18:55:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QIcon FilePath::trayIconUnlocked()
|
|
|
|
{
|
2020-02-01 08:51:11 -05:00
|
|
|
return useDarkIcon() ? icon("apps", "keepassxc-dark", false) : icon("apps", "keepassxc-unlocked", false);
|
2017-10-21 15:16:52 +03:00
|
|
|
}
|
|
|
|
|
2020-01-06 03:00:25 +01:00
|
|
|
QIcon FilePath::icon(const QString& category, const QString& name, bool recolor)
|
2012-05-02 23:48:17 +02:00
|
|
|
{
|
2012-07-18 21:06:46 +02:00
|
|
|
QString combinedName = category + "/" + name;
|
|
|
|
QIcon icon = m_iconCache.value(combinedName);
|
|
|
|
|
|
|
|
if (!icon.isNull()) {
|
|
|
|
return icon;
|
|
|
|
}
|
2012-05-27 12:43:58 +02:00
|
|
|
|
2012-01-05 22:27:08 +01:00
|
|
|
if (icon.isNull()) {
|
2018-03-31 16:01:30 -04:00
|
|
|
const QList<int> pngSizes = {16, 22, 24, 32, 48, 64, 128};
|
2012-05-02 23:48:17 +02:00
|
|
|
QString filename;
|
2016-09-02 19:51:51 +02:00
|
|
|
for (int size : pngSizes) {
|
2018-03-31 16:01:30 -04:00
|
|
|
filename =
|
|
|
|
QString("%1/icons/application/%2x%2/%3.png").arg(m_dataPath, QString::number(size), combinedName);
|
2012-05-02 23:48:17 +02:00
|
|
|
if (QFile::exists(filename)) {
|
2012-07-18 21:06:46 +02:00
|
|
|
icon.addFile(filename, QSize(size, size));
|
2012-05-02 23:48:17 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-24 20:08:37 +08:00
|
|
|
filename = QString("%1/icons/application/scalable/%2.svg").arg(m_dataPath, combinedName);
|
2020-01-06 03:00:25 +01:00
|
|
|
if (QFile::exists(filename) && getMainWindow() && recolor) {
|
|
|
|
QPalette palette = getMainWindow()->palette();
|
|
|
|
|
|
|
|
QFile f(filename);
|
|
|
|
QIcon scalable(filename);
|
|
|
|
QPixmap pixmap = scalable.pixmap({128, 128});
|
|
|
|
|
|
|
|
auto mask = QBitmap::fromImage(pixmap.toImage().createAlphaMask());
|
|
|
|
pixmap.fill(palette.color(QPalette::WindowText));
|
|
|
|
pixmap.setMask(mask);
|
|
|
|
icon.addPixmap(pixmap, QIcon::Mode::Normal);
|
|
|
|
|
|
|
|
pixmap.fill(palette.color(QPalette::HighlightedText));
|
|
|
|
pixmap.setMask(mask);
|
|
|
|
icon.addPixmap(pixmap, QIcon::Mode::Selected);
|
|
|
|
|
|
|
|
pixmap.fill(palette.color(QPalette::Disabled, QPalette::WindowText));
|
|
|
|
pixmap.setMask(mask);
|
|
|
|
icon.addPixmap(pixmap, QIcon::Mode::Disabled);
|
|
|
|
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
|
|
|
|
icon.setIsMask(true);
|
|
|
|
#endif
|
|
|
|
} else if (QFile::exists(filename)) {
|
2012-05-02 23:48:17 +02:00
|
|
|
icon.addFile(filename);
|
2012-01-05 22:27:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 21:06:46 +02:00
|
|
|
m_iconCache.insert(combinedName, icon);
|
|
|
|
|
2014-01-12 16:57:29 +01:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
2020-01-06 03:00:25 +01:00
|
|
|
QIcon FilePath::onOffIcon(const QString& category, const QString& name, bool recolor)
|
2014-01-12 16:57:29 +01:00
|
|
|
{
|
|
|
|
QString combinedName = category + "/" + name;
|
|
|
|
QString cacheName = "onoff/" + combinedName;
|
|
|
|
|
|
|
|
QIcon icon = m_iconCache.value(cacheName);
|
|
|
|
|
|
|
|
if (!icon.isNull()) {
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
2020-01-06 03:00:25 +01:00
|
|
|
QIcon on = FilePath::icon(category, name + "-on", recolor);
|
|
|
|
for (const auto& size : on.availableSizes()) {
|
|
|
|
icon.addPixmap(on.pixmap(size, QIcon::Mode::Normal), QIcon::Mode::Normal, QIcon::On);
|
|
|
|
icon.addPixmap(on.pixmap(size, QIcon::Mode::Selected), QIcon::Mode::Selected, QIcon::On);
|
|
|
|
icon.addPixmap(on.pixmap(size, QIcon::Mode::Disabled), QIcon::Mode::Disabled, QIcon::On);
|
|
|
|
}
|
|
|
|
QIcon off = FilePath::icon(category, name + "-off", recolor);
|
|
|
|
for (const auto& size : off.availableSizes()) {
|
|
|
|
icon.addPixmap(off.pixmap(size, QIcon::Mode::Normal), QIcon::Mode::Normal, QIcon::Off);
|
|
|
|
icon.addPixmap(off.pixmap(size, QIcon::Mode::Selected), QIcon::Mode::Selected, QIcon::Off);
|
|
|
|
icon.addPixmap(off.pixmap(size, QIcon::Mode::Disabled), QIcon::Mode::Disabled, QIcon::Off);
|
2014-01-12 16:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
m_iconCache.insert(cacheName, icon);
|
|
|
|
|
2012-01-05 22:27:08 +01:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
FilePath::FilePath()
|
2011-12-23 11:59:09 +01:00
|
|
|
{
|
2015-05-12 22:20:42 +02:00
|
|
|
const QString appDirPath = QCoreApplication::applicationDirPath();
|
|
|
|
bool isDataDirAbsolute = QDir::isAbsolutePath(KEEPASSX_DATA_DIR);
|
2015-07-16 19:49:41 +02:00
|
|
|
Q_UNUSED(isDataDirAbsolute);
|
2015-05-12 22:20:42 +02:00
|
|
|
|
2011-12-23 11:59:09 +01:00
|
|
|
if (false) {
|
|
|
|
}
|
|
|
|
#ifdef QT_DEBUG
|
|
|
|
else if (testSetDir(QString(KEEPASSX_SOURCE_DIR) + "/share")) {
|
|
|
|
}
|
|
|
|
#endif
|
2018-10-26 15:19:04 +02:00
|
|
|
#if defined(Q_OS_UNIX) && !(defined(Q_OS_MACOS) && defined(WITH_APP_BUNDLE))
|
2015-05-12 22:20:42 +02:00
|
|
|
else if (isDataDirAbsolute && testSetDir(KEEPASSX_DATA_DIR)) {
|
2018-03-31 16:01:30 -04:00
|
|
|
} else if (!isDataDirAbsolute && testSetDir(QString("%1/../%2").arg(appDirPath, KEEPASSX_DATA_DIR))) {
|
|
|
|
} else if (!isDataDirAbsolute && testSetDir(QString("%1/%2").arg(KEEPASSX_PREFIX_DIR, KEEPASSX_DATA_DIR))) {
|
2015-04-08 18:07:53 +02:00
|
|
|
}
|
2011-12-23 11:59:09 +01:00
|
|
|
#endif
|
2018-10-26 15:19:04 +02:00
|
|
|
#if defined(Q_OS_MACOS) && defined(WITH_APP_BUNDLE)
|
2015-05-12 22:20:42 +02:00
|
|
|
else if (testSetDir(appDirPath + "/../Resources")) {
|
2011-12-23 11:59:09 +01:00
|
|
|
}
|
|
|
|
#endif
|
2012-07-12 13:58:40 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2015-05-12 22:20:42 +02:00
|
|
|
else if (testSetDir(appDirPath + "/share")) {
|
2011-12-23 11:59:09 +01:00
|
|
|
}
|
|
|
|
#endif
|
2017-01-14 21:41:18 -05:00
|
|
|
// Last ditch test when running in the build directory (mainly for travis tests)
|
|
|
|
else if (testSetDir(QString(KEEPASSX_SOURCE_DIR) + "/share")) {
|
|
|
|
}
|
2011-12-23 11:59:09 +01:00
|
|
|
|
2012-07-18 21:04:47 +02:00
|
|
|
if (m_dataPath.isEmpty()) {
|
|
|
|
qWarning("FilePath::DataPath: can't find data dir");
|
2018-03-31 16:01:30 -04:00
|
|
|
} else {
|
2012-07-18 21:04:47 +02:00
|
|
|
m_dataPath = QDir::cleanPath(m_dataPath);
|
2011-12-23 11:59:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
bool FilePath::testSetDir(const QString& dir)
|
2011-12-23 11:59:09 +01:00
|
|
|
{
|
|
|
|
if (QFile::exists(dir + "/icons/database/C00_Password.png")) {
|
2012-07-18 21:04:47 +02:00
|
|
|
m_dataPath = dir;
|
2011-12-23 11:59:09 +01:00
|
|
|
return true;
|
2018-03-31 16:01:30 -04:00
|
|
|
} else {
|
2011-12-23 11:59:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 22:36:06 +01:00
|
|
|
|
2017-12-17 16:52:13 +02:00
|
|
|
bool FilePath::useDarkIcon()
|
|
|
|
{
|
|
|
|
return config()->get("GUI/DarkTrayIcon").toBool();
|
|
|
|
}
|
|
|
|
|
2012-07-18 20:44:28 +02:00
|
|
|
FilePath* FilePath::instance()
|
2012-01-05 22:36:06 +01:00
|
|
|
{
|
2012-05-31 14:51:44 +02:00
|
|
|
if (!m_instance) {
|
2012-07-18 20:44:28 +02:00
|
|
|
m_instance = new FilePath();
|
2012-01-05 22:36:06 +01:00
|
|
|
}
|
|
|
|
|
2012-05-31 14:51:44 +02:00
|
|
|
return m_instance;
|
2012-01-05 22:36:06 +01:00
|
|
|
}
|