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
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# 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
# 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 :
DesktopDaemon ( QObject * parent = Q_NULLPTR )
: Daemon ( parent )
2015-05-04 23:41:39 +01:00
, m_nam ( Q_NULLPTR )
2015-03-24 11:26:37 +00:00
{ }
2016-06-20 08:05:02 +01:00
void askPairingConfirmation ( PairingHandler * d ) override
2015-03-24 11:26:37 +00:00
{
2017-01-03 21:13:02 +00:00
KNotification * notification = new KNotification ( QStringLiteral ( " pairingRequest " ) ,
KNotification : : Persistent ) ;
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 " ) ) ;
2016-02-12 16:00:05 +00:00
notification - > setText ( i18n ( " Pairing request from %1 " , getDevice ( d - > deviceLink ( ) - > deviceId ( ) ) - > name ( ) ) ) ;
2015-03-24 11:26:37 +00:00
notification - > setActions ( QStringList ( ) < < i18n ( " Accept " ) < < i18n ( " Reject " ) ) ;
2015-12-01 18:45:14 +00:00
connect ( notification , & KNotification : : ignored , d , & PairingHandler : : rejectPairing ) ;
connect ( notification , & KNotification : : action1Activated , d , & PairingHandler : : acceptPairing ) ;
connect ( notification , & KNotification : : action2Activated , d , & PairingHandler : : rejectPairing ) ;
2017-01-03 21:13:02 +00:00
QTimer : : singleShot ( d - > pairingTimeoutMsec ( ) , notification , & KNotification : : close ) ; // close after pairing timeout, assuming that the peer uses the same timeout value
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 ;
}
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 ) ;
2016-11-26 14:38:08 +00:00
app . setApplicationName ( QStringLiteral ( " kdeconnectd " ) ) ;
app . setApplicationVersion ( QStringLiteral ( KDECONNECT_VERSION_STRING ) ) ;
app . setOrganizationDomain ( QStringLiteral ( " kde.org " ) ) ;
2015-02-24 06:12:45 +00:00
app . setQuitOnLastWindowClosed ( false ) ;
KDBusService dbusService ( KDBusService : : Unique ) ;
2015-03-24 11:26:37 +00:00
Daemon * daemon = new DesktopDaemon ;
2015-02-24 06:12:45 +00:00
QObject : : connect ( daemon , SIGNAL ( destroyed ( QObject * ) ) , & app , SLOT ( quit ( ) ) ) ;
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"