2011-12-23 05:59:09 -05:00
|
|
|
/*
|
2017-12-27 10:46:56 -05:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2011-12-23 05:59:09 -05: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 14:44:28 -04:00
|
|
|
#include "FilePath.h"
|
2011-12-23 05:59:09 -05:00
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QLibrary>
|
2011-12-23 05:59:09 -05:00
|
|
|
|
|
|
|
#include "config-keepassx.h"
|
2016-09-02 13:51:51 -04:00
|
|
|
#include "core/Global.h"
|
2017-12-17 09:52:13 -05:00
|
|
|
#include "core/Config.h"
|
2011-12-23 05:59:09 -05:00
|
|
|
|
2015-07-24 12:28:12 -04:00
|
|
|
FilePath* FilePath::m_instance(nullptr);
|
2012-05-31 08:51:44 -04:00
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
QString FilePath::dataPath(const QString& name)
|
2011-12-23 05:59:09 -05:00
|
|
|
{
|
2012-07-18 15:04:47 -04:00
|
|
|
if (name.isEmpty() || name.startsWith('/')) {
|
|
|
|
return m_dataPath + name;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return m_dataPath + "/" + name;
|
|
|
|
}
|
2011-12-23 05:59:09 -05:00
|
|
|
}
|
|
|
|
|
2012-07-18 14:54:26 -04:00
|
|
|
QString FilePath::pluginPath(const QString& name)
|
|
|
|
{
|
|
|
|
QStringList pluginPaths;
|
2012-10-28 10:31:57 -04:00
|
|
|
|
2012-07-18 14:54:26 -04:00
|
|
|
QDir buildDir(QCoreApplication::applicationDirPath() + "/autotype");
|
2016-09-02 13:51:51 -04:00
|
|
|
const QStringList buildDirEntryList = buildDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
|
|
|
|
for (const QString& dir : buildDirEntryList) {
|
2012-07-18 14:54:26 -04:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/autotype/" + dir;
|
|
|
|
}
|
2012-10-28 10:31:57 -04:00
|
|
|
|
|
|
|
// for TestAutoType
|
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../src/autotype/test";
|
|
|
|
|
2017-05-05 13:49:52 -04:00
|
|
|
#if defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE)
|
2016-11-08 16:13:57 -05:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath() + "/../PlugIns";
|
|
|
|
#endif
|
|
|
|
|
2012-07-18 14:54:26 -04:00
|
|
|
pluginPaths << QCoreApplication::applicationDirPath();
|
2013-04-29 16:17:31 -04:00
|
|
|
|
2015-05-12 16:20:42 -04:00
|
|
|
QString configuredPluginDir = KEEPASSX_PLUGIN_DIR;
|
|
|
|
if (configuredPluginDir != ".") {
|
|
|
|
if (QDir(configuredPluginDir).isAbsolute()) {
|
|
|
|
pluginPaths << configuredPluginDir;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QString relativePluginDir = QString("%1/../%2")
|
|
|
|
.arg(QCoreApplication::applicationDirPath(), configuredPluginDir);
|
|
|
|
pluginPaths << QDir(relativePluginDir).canonicalPath();
|
|
|
|
|
|
|
|
QString absolutePluginDir = QString("%1/%2")
|
|
|
|
.arg(KEEPASSX_PREFIX_DIR, configuredPluginDir);
|
|
|
|
pluginPaths << QDir(absolutePluginDir).canonicalPath();
|
2013-04-29 16:17:31 -04:00
|
|
|
}
|
|
|
|
}
|
2012-07-18 14:54:26 -04:00
|
|
|
|
|
|
|
QStringList dirFilter;
|
|
|
|
dirFilter << QString("*%1*").arg(name);
|
|
|
|
|
2016-09-02 13:51:51 -04:00
|
|
|
for (const QString& path : asConst(pluginPaths)) {
|
|
|
|
const QStringList fileCandidates = QDir(path).entryList(dirFilter, QDir::Files);
|
2012-07-18 14:54:26 -04:00
|
|
|
|
2016-09-02 13:51:51 -04:00
|
|
|
for (const QString& file : fileCandidates) {
|
2012-07-18 14:54:26 -04:00
|
|
|
QString filePath = path + "/" + file;
|
|
|
|
|
|
|
|
if (QLibrary::isLibrary(filePath)) {
|
|
|
|
return filePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
QIcon FilePath::applicationIcon()
|
2012-01-05 16:27:08 -05:00
|
|
|
{
|
2017-12-17 09:52:13 -05:00
|
|
|
bool darkIcon = useDarkIcon();
|
2012-05-02 17:48:17 -04:00
|
|
|
|
2017-10-21 08:16:52 -04:00
|
|
|
#ifdef KEEPASSXC_DIST_SNAP
|
2017-12-17 09:52:13 -05:00
|
|
|
return (darkIcon) ? icon("apps", "keepassxc-dark", false) : icon("apps", "keepassxc", false);
|
2017-10-21 08:16:52 -04:00
|
|
|
#else
|
2017-12-17 09:52:13 -05:00
|
|
|
return (darkIcon) ? icon("apps", "keepassxc-dark") : icon("apps", "keepassxc");
|
2017-10-21 08:16:52 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-12-17 09:52:13 -05:00
|
|
|
|
2016-10-08 12:55:05 -04:00
|
|
|
QIcon FilePath::trayIconLocked()
|
|
|
|
{
|
2017-10-17 06:56:42 -04:00
|
|
|
#ifdef KEEPASSXC_DIST_SNAP
|
2017-10-03 12:29:39 -04:00
|
|
|
return icon("apps", "keepassxc-locked", false);
|
|
|
|
#else
|
2016-11-03 00:05:30 -04:00
|
|
|
return icon("apps", "keepassxc-locked");
|
2017-10-03 12:29:39 -04:00
|
|
|
#endif
|
2016-10-08 12:55:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QIcon FilePath::trayIconUnlocked()
|
|
|
|
{
|
2017-12-17 09:52:13 -05:00
|
|
|
bool darkIcon = useDarkIcon();
|
2016-10-08 12:55:05 -04:00
|
|
|
|
2017-10-21 08:16:52 -04:00
|
|
|
#ifdef KEEPASSXC_DIST_SNAP
|
2017-12-27 10:46:56 -05:00
|
|
|
return darkIcon ? icon("apps", "keepassxc-dark", false) : icon("apps", "keepassxc-unlocked", false);
|
2017-10-21 08:16:52 -04:00
|
|
|
#else
|
2017-12-27 10:46:56 -05:00
|
|
|
return darkIcon ? icon("apps", "keepassxc-dark") : icon("apps", "keepassxc-unlocked");
|
2017-10-21 08:16:52 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
QIcon FilePath::icon(const QString& category, const QString& name, bool fromTheme)
|
2012-05-02 17:48:17 -04:00
|
|
|
{
|
2012-07-18 15:06:46 -04:00
|
|
|
QString combinedName = category + "/" + name;
|
|
|
|
|
|
|
|
QIcon icon = m_iconCache.value(combinedName);
|
|
|
|
|
|
|
|
if (!icon.isNull()) {
|
|
|
|
return icon;
|
|
|
|
}
|
2012-05-27 06:43:58 -04:00
|
|
|
|
|
|
|
if (fromTheme) {
|
|
|
|
icon = QIcon::fromTheme(name);
|
|
|
|
}
|
2012-01-05 16:27:08 -05:00
|
|
|
|
|
|
|
if (icon.isNull()) {
|
2016-09-02 13:51:51 -04:00
|
|
|
const QList<int> pngSizes = { 16, 22, 24, 32, 48, 64, 128 };
|
2012-05-02 17:48:17 -04:00
|
|
|
QString filename;
|
2016-09-02 13:51:51 -04:00
|
|
|
for (int size : pngSizes) {
|
2012-07-18 15:06:46 -04:00
|
|
|
filename = QString("%1/icons/application/%2x%2/%3.png").arg(m_dataPath, QString::number(size),
|
|
|
|
combinedName);
|
2012-05-02 17:48:17 -04:00
|
|
|
if (QFile::exists(filename)) {
|
2012-07-18 15:06:46 -04:00
|
|
|
icon.addFile(filename, QSize(size, size));
|
2012-05-02 17:48:17 -04:00
|
|
|
}
|
|
|
|
}
|
2015-12-06 08:31:23 -05:00
|
|
|
filename = QString("%1/icons/application/scalable/%2.svgz").arg(m_dataPath, combinedName);
|
2012-05-02 17:48:17 -04:00
|
|
|
if (QFile::exists(filename)) {
|
|
|
|
icon.addFile(filename);
|
2012-01-05 16:27:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 15:06:46 -04:00
|
|
|
m_iconCache.insert(combinedName, icon);
|
|
|
|
|
2014-01-12 10:57:29 -05:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon FilePath::onOffIcon(const QString& category, const QString& name)
|
|
|
|
{
|
|
|
|
QString combinedName = category + "/" + name;
|
|
|
|
QString cacheName = "onoff/" + combinedName;
|
|
|
|
|
|
|
|
QIcon icon = m_iconCache.value(cacheName);
|
|
|
|
|
|
|
|
if (!icon.isNull()) {
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
QIcon::State state;
|
|
|
|
QString stateName;
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
state = QIcon::Off;
|
|
|
|
stateName = "off";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
state = QIcon::On;
|
|
|
|
stateName = "on";
|
|
|
|
}
|
|
|
|
|
2016-09-02 13:51:51 -04:00
|
|
|
const QList<int> pngSizes = { 16, 22, 24, 32, 48, 64, 128 };
|
2014-01-12 10:57:29 -05:00
|
|
|
QString filename;
|
2016-09-02 13:51:51 -04:00
|
|
|
for (int size : pngSizes) {
|
2014-01-12 10:57:29 -05:00
|
|
|
filename = QString("%1/icons/application/%2x%2/%3-%4.png").arg(m_dataPath, QString::number(size),
|
|
|
|
combinedName, stateName);
|
|
|
|
if (QFile::exists(filename)) {
|
|
|
|
icon.addFile(filename, QSize(size, size), QIcon::Normal, state);
|
|
|
|
}
|
|
|
|
}
|
2015-12-06 08:31:23 -05:00
|
|
|
filename = QString("%1/icons/application/scalable/%2-%3.svgz").arg(m_dataPath, combinedName, stateName);
|
2014-01-12 10:57:29 -05:00
|
|
|
if (QFile::exists(filename)) {
|
|
|
|
icon.addFile(filename, QSize(), QIcon::Normal, state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_iconCache.insert(cacheName, icon);
|
|
|
|
|
2012-01-05 16:27:08 -05:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
FilePath::FilePath()
|
2011-12-23 05:59:09 -05:00
|
|
|
{
|
2015-05-12 16:20:42 -04:00
|
|
|
const QString appDirPath = QCoreApplication::applicationDirPath();
|
|
|
|
bool isDataDirAbsolute = QDir::isAbsolutePath(KEEPASSX_DATA_DIR);
|
2015-07-16 13:49:41 -04:00
|
|
|
Q_UNUSED(isDataDirAbsolute);
|
2015-05-12 16:20:42 -04:00
|
|
|
|
2011-12-23 05:59:09 -05:00
|
|
|
if (false) {
|
|
|
|
}
|
|
|
|
#ifdef QT_DEBUG
|
|
|
|
else if (testSetDir(QString(KEEPASSX_SOURCE_DIR) + "/share")) {
|
|
|
|
}
|
|
|
|
#endif
|
2017-05-05 13:49:52 -04:00
|
|
|
#if defined(Q_OS_UNIX) && !(defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE))
|
2015-05-12 16:20:42 -04:00
|
|
|
else if (isDataDirAbsolute && testSetDir(KEEPASSX_DATA_DIR)) {
|
|
|
|
}
|
|
|
|
else if (!isDataDirAbsolute && testSetDir(QString("%1/../%2").arg(appDirPath, KEEPASSX_DATA_DIR))) {
|
2011-12-23 05:59:09 -05:00
|
|
|
}
|
2015-05-12 16:20:42 -04:00
|
|
|
else if (!isDataDirAbsolute && testSetDir(QString("%1/%2").arg(KEEPASSX_PREFIX_DIR, KEEPASSX_DATA_DIR))) {
|
2015-04-08 12:07:53 -04:00
|
|
|
}
|
2011-12-23 05:59:09 -05:00
|
|
|
#endif
|
2017-05-05 13:49:52 -04:00
|
|
|
#if defined(Q_OS_MAC) && defined(WITH_APP_BUNDLE)
|
2015-05-12 16:20:42 -04:00
|
|
|
else if (testSetDir(appDirPath + "/../Resources")) {
|
2011-12-23 05:59:09 -05:00
|
|
|
}
|
|
|
|
#endif
|
2012-07-12 07:58:40 -04:00
|
|
|
#ifdef Q_OS_WIN
|
2015-05-12 16:20:42 -04:00
|
|
|
else if (testSetDir(appDirPath + "/share")) {
|
2011-12-23 05:59:09 -05: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 05:59:09 -05:00
|
|
|
|
2012-07-18 15:04:47 -04:00
|
|
|
if (m_dataPath.isEmpty()) {
|
|
|
|
qWarning("FilePath::DataPath: can't find data dir");
|
2011-12-23 05:59:09 -05:00
|
|
|
}
|
|
|
|
else {
|
2012-07-18 15:04:47 -04:00
|
|
|
m_dataPath = QDir::cleanPath(m_dataPath);
|
2011-12-23 05:59:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
bool FilePath::testSetDir(const QString& dir)
|
2011-12-23 05:59:09 -05:00
|
|
|
{
|
|
|
|
if (QFile::exists(dir + "/icons/database/C00_Password.png")) {
|
2012-07-18 15:04:47 -04:00
|
|
|
m_dataPath = dir;
|
2011-12-23 05:59:09 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 16:36:06 -05:00
|
|
|
|
2017-12-17 09:52:13 -05:00
|
|
|
bool FilePath::useDarkIcon()
|
|
|
|
{
|
|
|
|
return config()->get("GUI/DarkTrayIcon").toBool();
|
|
|
|
}
|
|
|
|
|
2012-07-18 14:44:28 -04:00
|
|
|
FilePath* FilePath::instance()
|
2012-01-05 16:36:06 -05:00
|
|
|
{
|
2012-05-31 08:51:44 -04:00
|
|
|
if (!m_instance) {
|
2012-07-18 14:44:28 -04:00
|
|
|
m_instance = new FilePath();
|
2012-01-05 16:36:06 -05:00
|
|
|
}
|
|
|
|
|
2012-05-31 08:51:44 -04:00
|
|
|
return m_instance;
|
2012-01-05 16:36:06 -05:00
|
|
|
}
|