2015-02-24 06:12:45 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2014 Yuri Samoilenko <kinnalru@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-02-24 06:12:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QApplication>
|
2015-05-04 23:41:39 +01:00
|
|
|
#include <QNetworkAccessManager>
|
2017-01-03 21:13:02 +00:00
|
|
|
#include <QTimer>
|
2015-02-24 06:12:45 +00:00
|
|
|
|
2019-01-25 21:32:34 +00:00
|
|
|
#include <KAboutData>
|
2015-02-24 06:12:45 +00:00
|
|
|
#include <KDBusService>
|
2015-03-24 11:26:37 +00:00
|
|
|
#include <KNotification>
|
|
|
|
#include <KLocalizedString>
|
2015-05-04 23:41:39 +01:00
|
|
|
#include <KIO/AccessManager>
|
2015-02-24 06:12:45 +00:00
|
|
|
|
|
|
|
#include "core/daemon.h"
|
2015-03-24 11:26:37 +00:00
|
|
|
#include "core/device.h"
|
2015-12-01 18:45:14 +00:00
|
|
|
#include "core/backends/pairinghandler.h"
|
2015-03-10 04:59:36 +00:00
|
|
|
#include "kdeconnect-version.h"
|
2015-02-24 06:12:45 +00:00
|
|
|
|
2015-03-24 11:26:37 +00:00
|
|
|
class DesktopDaemon : public Daemon
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2015-04-29 01:25:49 +01:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.daemon")
|
2015-03-24 11:26:37 +00:00
|
|
|
public:
|
2019-05-05 14:45:50 +01:00
|
|
|
DesktopDaemon(QObject* parent = nullptr)
|
2015-03-24 11:26:37 +00:00
|
|
|
: Daemon(parent)
|
2019-05-05 14:45:50 +01:00
|
|
|
, m_nam(nullptr)
|
2015-03-24 11:26:37 +00:00
|
|
|
{}
|
|
|
|
|
2017-01-24 23:22:22 +00:00
|
|
|
void askPairingConfirmation(Device* device) override
|
2015-03-24 11:26:37 +00:00
|
|
|
{
|
2017-01-25 00:20:43 +00:00
|
|
|
KNotification* notification = new KNotification(QStringLiteral("pairingRequest"));
|
2015-03-24 11:26:37 +00:00
|
|
|
notification->setIconName(QStringLiteral("dialog-information"));
|
2016-11-26 14:38:08 +00:00
|
|
|
notification->setComponentName(QStringLiteral("kdeconnect"));
|
2017-07-12 10:37:41 +01:00
|
|
|
notification->setText(i18n("Pairing request from %1", device->name().toHtmlEscaped()));
|
2015-03-24 11:26:37 +00:00
|
|
|
notification->setActions(QStringList() << i18n("Accept") << i18n("Reject"));
|
2017-01-24 23:22:22 +00:00
|
|
|
// notification->setTimeout(PairingHandler::pairingTimeoutMsec());
|
|
|
|
connect(notification, &KNotification::action1Activated, device, &Device::acceptPairing);
|
|
|
|
connect(notification, &KNotification::action2Activated, device, &Device::rejectPairing);
|
2015-03-24 11:26:37 +00:00
|
|
|
notification->sendEvent();
|
|
|
|
}
|
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
void reportError(const QString & title, const QString & description) override
|
2015-03-24 11:26:37 +00:00
|
|
|
{
|
|
|
|
KNotification::event(KNotification::Error, title, description);
|
|
|
|
}
|
2015-05-04 23:41:39 +01:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
QNetworkAccessManager* networkAccessManager() override
|
2015-05-04 23:41:39 +01:00
|
|
|
{
|
|
|
|
if (!m_nam) {
|
|
|
|
m_nam = new KIO::AccessManager(this);
|
|
|
|
}
|
|
|
|
return m_nam;
|
|
|
|
}
|
|
|
|
|
2018-03-18 11:42:15 +00:00
|
|
|
Q_SCRIPTABLE void sendSimpleNotification(const QString &eventId, const QString &title, const QString &text, const QString &iconName) override
|
|
|
|
{
|
|
|
|
KNotification* notification = new KNotification(eventId); //KNotification::Persistent
|
|
|
|
notification->setIconName(iconName);
|
|
|
|
notification->setComponentName(QStringLiteral("kdeconnect"));
|
|
|
|
notification->setTitle(title);
|
|
|
|
notification->setText(text);
|
|
|
|
notification->sendEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-04 23:41:39 +01:00
|
|
|
private:
|
|
|
|
QNetworkAccessManager* m_nam;
|
2015-03-24 11:26:37 +00:00
|
|
|
};
|
|
|
|
|
2015-02-24 06:12:45 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2019-01-25 21:32:34 +00:00
|
|
|
KAboutData aboutData(
|
|
|
|
QStringLiteral("kdeconnectd"),
|
|
|
|
i18n("KDE Connect Daemon"),
|
|
|
|
QStringLiteral(KDECONNECT_VERSION_STRING),
|
|
|
|
i18n("KDE Connect Daemon"),
|
|
|
|
KAboutLicense::GPL
|
|
|
|
);
|
|
|
|
KAboutData::setApplicationData(aboutData);
|
2015-02-24 06:12:45 +00:00
|
|
|
app.setQuitOnLastWindowClosed(false);
|
|
|
|
|
|
|
|
KDBusService dbusService(KDBusService::Unique);
|
|
|
|
|
2019-05-05 13:58:11 +01:00
|
|
|
DesktopDaemon daemon;
|
2016-06-15 19:37:42 +01:00
|
|
|
|
2015-02-24 06:12:45 +00:00
|
|
|
return app.exec();
|
|
|
|
}
|
2015-03-24 11:26:37 +00:00
|
|
|
|
|
|
|
#include "kdeconnectd.moc"
|