2019-12-11 15:00:39 +00:00
|
|
|
/*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2019 Weixuan XIAO <veyx.shaw@gmail.com>
|
2019-12-11 15:00:39 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2019-12-11 15:00:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QApplication>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QDebug>
|
2019-12-11 15:00:39 +00:00
|
|
|
#include <QFile>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QThread>
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
|
|
|
#include <dbushelper.h>
|
|
|
|
|
|
|
|
#include "indicatorhelper.h"
|
|
|
|
|
2020-05-19 14:41:02 +01:00
|
|
|
#include "serviceregister_mac.h"
|
2019-12-11 15:00:39 +00:00
|
|
|
|
2022-04-12 06:40:03 +01:00
|
|
|
#include <kdeconnectconfig.h>
|
|
|
|
|
2019-12-11 15:00:39 +00:00
|
|
|
IndicatorHelper::IndicatorHelper()
|
|
|
|
{
|
2020-05-19 14:41:02 +01:00
|
|
|
registerServices();
|
|
|
|
|
2019-12-11 15:00:39 +00:00
|
|
|
QIcon kdeconnectIcon = QIcon::fromTheme(QStringLiteral("kdeconnect"));
|
|
|
|
QPixmap splashPixmap(kdeconnectIcon.pixmap(256, 256));
|
|
|
|
|
|
|
|
m_splashScreen = new QSplashScreen(splashPixmap);
|
|
|
|
|
|
|
|
m_splashScreen->showMessage(i18n("Launching") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
|
|
|
m_splashScreen->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
IndicatorHelper::~IndicatorHelper()
|
|
|
|
{
|
|
|
|
if (m_splashScreen != nullptr) {
|
|
|
|
delete m_splashScreen;
|
|
|
|
m_splashScreen = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void IndicatorHelper::preInit()
|
|
|
|
{
|
|
|
|
}
|
2019-12-11 15:00:39 +00:00
|
|
|
|
|
|
|
void IndicatorHelper::postInit()
|
|
|
|
{
|
|
|
|
m_splashScreen->finish(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IndicatorHelper::iconPathHook()
|
|
|
|
{
|
2020-04-16 23:05:48 +01:00
|
|
|
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("kdeconnect-icons"), QStandardPaths::LocateDirectory);
|
2019-12-11 15:00:39 +00:00
|
|
|
if (!iconPath.isNull()) {
|
|
|
|
QStringList themeSearchPaths = QIcon::themeSearchPaths();
|
|
|
|
themeSearchPaths << iconPath;
|
|
|
|
QIcon::setThemeSearchPaths(themeSearchPaths);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int IndicatorHelper::daemonHook(QProcess &kdeconnectd)
|
|
|
|
{
|
2022-04-12 06:40:03 +01:00
|
|
|
// This flag marks whether a session DBus daemon is installed and run
|
|
|
|
bool hasUsableSessionBus = true;
|
|
|
|
// Use another bus instance for detecting, avoid session bus cache in Qt
|
2022-09-10 22:23:52 +01:00
|
|
|
if (!QDBusConnection::connectToBus(QDBusConnection::SessionBus, QStringLiteral("kdeconnect-test-client")).isConnected()) {
|
2022-04-12 06:40:03 +01:00
|
|
|
qDebug() << "Default session bus not detected, will use private D-Bus.";
|
|
|
|
|
|
|
|
// Unset launchctl env and private dbus addr file, avoid block
|
|
|
|
DBusHelper::macosUnsetLaunchctlEnv();
|
|
|
|
QFile privateDBusAddressFile(KdeConnectConfig::instance().privateDBusAddressPath());
|
2022-09-10 22:23:52 +01:00
|
|
|
if (privateDBusAddressFile.exists())
|
|
|
|
privateDBusAddressFile.resize(0);
|
2022-04-12 06:40:03 +01:00
|
|
|
|
|
|
|
// Update session bus usability state
|
|
|
|
hasUsableSessionBus = false;
|
|
|
|
}
|
2019-12-11 15:00:39 +00:00
|
|
|
|
2022-04-12 06:40:03 +01:00
|
|
|
// Start daemon
|
2019-12-11 15:00:39 +00:00
|
|
|
m_splashScreen->showMessage(i18n("Launching daemon") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
|
|
|
|
2022-04-12 06:40:03 +01:00
|
|
|
// Here we will try to bring our private session D-Bus
|
|
|
|
if (!hasUsableSessionBus) {
|
|
|
|
qDebug() << "Launching private session D-Bus.";
|
2022-06-26 19:16:55 +01:00
|
|
|
DBusHelper::macosUnsetLaunchctlEnv();
|
2022-04-12 06:40:03 +01:00
|
|
|
DBusHelper::launchDBusDaemon();
|
|
|
|
// Wait for dbus daemon env
|
|
|
|
QProcess getLaunchdDBusEnv;
|
|
|
|
m_splashScreen->showMessage(i18n("Waiting D-Bus") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
|
|
|
int retry = 0;
|
2019-12-11 15:00:39 +00:00
|
|
|
getLaunchdDBusEnv.setProgram(QStringLiteral("launchctl"));
|
2022-09-10 22:23:52 +01:00
|
|
|
getLaunchdDBusEnv.setArguments({QStringLiteral("getenv"), QStringLiteral(KDECONNECT_SESSION_DBUS_LAUNCHD_ENV)});
|
2019-12-11 15:00:39 +00:00
|
|
|
getLaunchdDBusEnv.start();
|
|
|
|
getLaunchdDBusEnv.waitForFinished();
|
|
|
|
|
|
|
|
QString launchdDBusEnv = QString::fromLocal8Bit(getLaunchdDBusEnv.readAllStandardOutput());
|
|
|
|
|
2022-06-26 19:16:55 +01:00
|
|
|
if (!launchdDBusEnv.isEmpty() && QDBusConnection::sessionBus().isConnected()) {
|
2022-04-12 06:40:03 +01:00
|
|
|
qDebug() << "Private D-Bus daemon launched and connected.";
|
|
|
|
hasUsableSessionBus = true;
|
2022-06-26 19:16:55 +01:00
|
|
|
} else if (!launchdDBusEnv.isEmpty()) {
|
|
|
|
// Show a warning and exit
|
2022-09-10 22:23:52 +01:00
|
|
|
qCritical() << "Invalid " << KDECONNECT_SESSION_DBUS_LAUNCHD_ENV << "env: \"" << launchdDBusEnv << "\"";
|
2022-06-26 19:16:55 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QMessageBox::critical(nullptr,
|
|
|
|
i18n("KDE Connect"),
|
2022-06-26 19:16:55 +01:00
|
|
|
i18n("Cannot connect to DBus\n"
|
2022-09-10 22:23:52 +01:00
|
|
|
"KDE Connect will quit"),
|
2022-06-26 19:16:55 +01:00
|
|
|
QMessageBox::Abort,
|
|
|
|
QMessageBox::Abort);
|
2022-04-12 06:40:03 +01:00
|
|
|
} else {
|
2019-12-11 15:00:39 +00:00
|
|
|
// Show a warning and exit
|
|
|
|
qCritical() << "Fail to get launchctl" << KDECONNECT_SESSION_DBUS_LAUNCHD_ENV << "env";
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QMessageBox::critical(nullptr,
|
|
|
|
i18n("KDE Connect"),
|
2019-12-11 15:00:39 +00:00
|
|
|
i18n("Cannot connect to DBus\n"
|
2022-09-10 22:23:52 +01:00
|
|
|
"KDE Connect will quit"),
|
2019-12-11 15:00:39 +00:00
|
|
|
QMessageBox::Abort,
|
|
|
|
QMessageBox::Abort);
|
|
|
|
return -2;
|
|
|
|
}
|
2022-04-12 06:40:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start kdeconnectd, the daemon will not duplicate when there is already one
|
|
|
|
if (QFile::exists(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"))) {
|
|
|
|
kdeconnectd.setProgram(QCoreApplication::applicationDirPath() + QStringLiteral("/kdeconnectd"));
|
|
|
|
} else if (QFile::exists(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"))) {
|
|
|
|
kdeconnectd.setProgram(QString::fromLatin1(qgetenv("craftRoot")) + QStringLiteral("/../lib/libexec/kdeconnectd"));
|
|
|
|
} else {
|
2022-09-10 22:23:52 +01:00
|
|
|
QMessageBox::critical(nullptr, i18n("KDE Connect"), i18n("Cannot find kdeconnectd"), QMessageBox::Abort, QMessageBox::Abort);
|
2022-04-12 06:40:03 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
kdeconnectd.startDetached();
|
2019-12-11 15:00:39 +00:00
|
|
|
|
|
|
|
m_splashScreen->showMessage(i18n("Loading modules") + QStringLiteral("\n"), Qt::AlignHCenter | Qt::AlignBottom, Qt::white);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IndicatorHelper::systrayIconHook(KStatusNotifierItem &systray)
|
|
|
|
{
|
2020-04-16 23:05:48 +01:00
|
|
|
const QString iconPath = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("kdeconnect-icons"), QStandardPaths::LocateDirectory);
|
2019-12-11 15:00:39 +00:00
|
|
|
if (!iconPath.isNull()) {
|
2022-03-02 12:06:36 +00:00
|
|
|
auto icon = QIcon::fromTheme(QStringLiteral("kdeconnectindicator"));
|
|
|
|
icon.setIsMask(true); // Make icon adapt to menu bar color
|
|
|
|
systray.setIconByPixmap(icon);
|
2019-12-11 15:00:39 +00:00
|
|
|
} else {
|
|
|
|
// We are in macOS dev env, just continue
|
|
|
|
qWarning() << "Fail to find indicator icon, continue anyway";
|
|
|
|
}
|
|
|
|
}
|