2013-07-03 02:52:44 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-27 01:13:16 +01: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
|
2013-06-27 01:13:16 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-21 17:25:44 +01:00
|
|
|
#ifndef DBUSINTERFACES_H
|
|
|
|
#define DBUSINTERFACES_H
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "kdeconnectinterfaces_export.h"
|
2013-08-21 17:25:44 +01:00
|
|
|
|
2019-04-30 18:03:24 +01:00
|
|
|
#include "daemoninterface.h"
|
|
|
|
#include "deviceinterface.h"
|
|
|
|
#include "devicebatteryinterface.h"
|
|
|
|
#include "devicesftpinterface.h"
|
|
|
|
#include "devicefindmyphoneinterface.h"
|
|
|
|
#include "devicenotificationsinterface.h"
|
|
|
|
#include "notificationinterface.h"
|
|
|
|
#include "mprisremoteinterface.h"
|
|
|
|
#include "remotecontrolinterface.h"
|
|
|
|
#include "lockdeviceinterface.h"
|
|
|
|
#include "remotecommandsinterface.h"
|
|
|
|
#include "remotekeyboardinterface.h"
|
|
|
|
#include "smsinterface.h"
|
|
|
|
#include "conversationsinterface.h"
|
|
|
|
#include "shareinterface.h"
|
|
|
|
#include "remotesystemvolumeinterface.h"
|
2020-05-05 12:53:41 +01:00
|
|
|
#include "bigscreeninterface.h"
|
2013-06-27 01:13:16 +01:00
|
|
|
|
2013-07-26 15:21:19 +01:00
|
|
|
/**
|
|
|
|
* Using these "proxy" classes just in case we need to rename the
|
|
|
|
* interface, so we can change the class name in a single place.
|
|
|
|
*/
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DaemonDbusInterface
|
2013-07-26 15:21:19 +01:00
|
|
|
: public OrgKdeKdeconnectDaemonInterface
|
2013-07-24 17:42:33 +01:00
|
|
|
{
|
2013-06-27 01:13:16 +01:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit DaemonDbusInterface(QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~DaemonDbusInterface() override;
|
2015-06-25 20:19:23 +01:00
|
|
|
|
|
|
|
static QString activatedService();
|
2015-09-12 21:12:18 +01:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
2017-09-03 20:39:44 +01:00
|
|
|
void deviceAdded(const QString& id);
|
2017-01-25 00:18:14 +00:00
|
|
|
void pairingRequestsChangedProxy();
|
2013-06-27 01:13:16 +01:00
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DeviceDbusInterface
|
2013-07-26 15:21:19 +01:00
|
|
|
: public OrgKdeKdeconnectDeviceInterface
|
|
|
|
{
|
2013-07-03 02:52:44 +01:00
|
|
|
Q_OBJECT
|
2015-06-18 03:01:01 +01:00
|
|
|
// TODO: Workaround because OrgKdeKdeconnectDeviceInterface is not generating
|
2015-06-13 00:28:36 +01:00
|
|
|
// the signals for the properties
|
2016-11-23 16:24:03 +00:00
|
|
|
Q_PROPERTY(bool isReachable READ isReachable NOTIFY reachableChangedProxy)
|
2015-12-01 18:45:14 +00:00
|
|
|
Q_PROPERTY(bool isTrusted READ isTrusted NOTIFY trustedChangedProxy)
|
2016-08-21 12:53:40 +01:00
|
|
|
Q_PROPERTY(QString name READ name NOTIFY nameChangedProxy)
|
2017-01-25 00:18:14 +00:00
|
|
|
Q_PROPERTY(bool hasPairingRequests READ hasPairingRequests NOTIFY hasPairingRequestsChangedProxy)
|
2015-06-24 19:57:02 +01:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit DeviceDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~DeviceDbusInterface() override;
|
2015-06-13 00:28:36 +01:00
|
|
|
|
2015-06-25 03:08:00 +01:00
|
|
|
Q_SCRIPTABLE QString id() const;
|
2017-09-03 20:39:44 +01:00
|
|
|
Q_SCRIPTABLE void pluginCall(const QString& plugin, const QString& method);
|
2015-06-13 00:28:36 +01:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
2017-09-03 20:39:44 +01:00
|
|
|
void nameChangedProxy(const QString& name);
|
2015-12-01 18:45:14 +00:00
|
|
|
void trustedChangedProxy(bool paired);
|
2016-11-23 16:24:03 +00:00
|
|
|
void reachableChangedProxy(bool reachable);
|
2017-02-20 20:00:26 +00:00
|
|
|
void hasPairingRequestsChangedProxy(bool);
|
2015-06-24 19:57:02 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
const QString m_id;
|
2013-07-03 02:52:44 +01:00
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DeviceBatteryDbusInterface
|
2013-08-21 17:25:44 +01:00
|
|
|
: public OrgKdeKdeconnectDeviceBatteryInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit DeviceBatteryDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~DeviceBatteryDbusInterface() override;
|
2013-08-21 17:25:44 +01:00
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DeviceNotificationsDbusInterface
|
2013-08-21 17:25:44 +01:00
|
|
|
: public OrgKdeKdeconnectDeviceNotificationsInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit DeviceNotificationsDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~DeviceNotificationsDbusInterface() override;
|
2013-08-21 17:25:44 +01:00
|
|
|
};
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT NotificationDbusInterface
|
2013-08-21 17:25:44 +01:00
|
|
|
: public OrgKdeKdeconnectDeviceNotificationsNotificationInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
NotificationDbusInterface(const QString& deviceId, const QString& notificationId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~NotificationDbusInterface() override;
|
2016-04-03 15:48:28 +01:00
|
|
|
|
|
|
|
QString notificationId() { return id; }
|
|
|
|
private:
|
|
|
|
const QString id;
|
2013-08-21 17:25:44 +01:00
|
|
|
};
|
|
|
|
|
(WIP) Upgrade Telephony plugin to read SMS history (KDE side)
Summary:
For real usecases of SMS support, we will almost always need access to the message history in some way
Specifically resolve T8338
Incidentally resolve T6651 since Telephony shall no longer create a notification
Test Plan:
Setup:
- Build corresponding Android-side diff (D11698)
- Build this diff
Step 1: Does anything at all work?
- Put a breakpoint in the handleBatchMessages method of the telephony plugin, ideally after constructing a Message object
- Use DBus to poke /modules/kdeconnect/devices/<deviceID>/telephony.requestAllConversations()
- Verify that the constructed Message is one you sent or received and that it is the most recent in the corresponding conversation
Step 2: DBus
- Open the Interface org.kde.kdeconnect.device.conversations of /modules/kdeconnect/devices/<deviceId>
- Poke activeConversations and verify an empty array is returned
- Poke requestAllConversationThreads
- Poke activeConversations and verify that a list of numbers has been returned. These are conversationIds
- Use a conversationId to call getFirstFromConversation
- Verify that the returned Message object is one which you recognize
- Note that if the message is an MMS it will be blank and meaningless. Try a different conversationId. MMS support "coming soon!"
Step 3: SMS App
- Use ccmake (or similar) to set SMSAPP_ENABLE to ON
- Build the project
- Run ./bin/kdeconnect-sms
- Verify that the app shows a list of everyone you have an SMS conversation with (MMS messages are stripped out)
- If you have the Contacts plugin working, verify that most contacts have their name and photo instead of their phone number
Reviewers: #kde_connect, nicolasfella, apol
Reviewed By: #kde_connect, nicolasfella, apol
Subscribers: andyholmes, apol, nicolasfella, #kde_connect
Tags: #kde_connect
Maniphest Tasks: T8338, T6651
Differential Revision: https://phabricator.kde.org/D11854
2018-05-25 15:21:56 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT DeviceConversationsDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceConversationsInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit DeviceConversationsDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~DeviceConversationsDbusInterface() override;
|
|
|
|
};
|
2015-09-11 16:51:50 +01:00
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT SftpDbusInterface
|
2014-01-06 20:56:51 +00:00
|
|
|
: public OrgKdeKdeconnectDeviceSftpInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit SftpDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~SftpDbusInterface() override;
|
2014-01-06 20:56:51 +00:00
|
|
|
};
|
|
|
|
|
2015-06-18 03:01:01 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT MprisDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceMprisremoteInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
// TODO: Workaround because qdbusxml2cpp is not generating
|
|
|
|
// the signals for the properties
|
|
|
|
Q_PROPERTY(bool isPlaying READ isPlaying NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(int length READ length NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(QString nowPlaying READ nowPlaying NOTIFY propertiesChangedProxy)
|
2018-04-27 23:22:45 +01:00
|
|
|
Q_PROPERTY(QString title READ title NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(QString artist READ artist NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(QString album READ album NOTIFY propertiesChangedProxy)
|
|
|
|
|
2015-06-18 03:01:01 +01:00
|
|
|
Q_PROPERTY(QStringList playerList READ playerList NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(int volume READ volume WRITE setVolume NOTIFY propertiesChangedProxy)
|
|
|
|
Q_PROPERTY(int position READ position WRITE setPosition NOTIFY propertiesChangedProxy)
|
2019-07-17 22:19:53 +01:00
|
|
|
Q_PROPERTY(bool canSeek READ canSeek NOTIFY propertiesChangedProxy)
|
2015-06-18 03:01:01 +01:00
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit MprisDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~MprisDbusInterface() override;
|
2015-06-18 03:01:01 +01:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void propertiesChangedProxy();
|
|
|
|
};
|
|
|
|
|
2015-07-22 02:19:29 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT RemoteControlDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceRemotecontrolInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit RemoteControlDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2015-07-22 02:19:29 +01:00
|
|
|
~RemoteControlDbusInterface() override;
|
|
|
|
};
|
|
|
|
|
2015-07-22 02:37:34 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT LockDeviceDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceLockdeviceInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool isLocked READ isLocked WRITE setIsLocked NOTIFY lockedChangedProxy)
|
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit LockDeviceDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~LockDeviceDbusInterface() override;
|
2015-07-22 02:37:34 +01:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void lockedChangedProxy(bool isLocked);
|
|
|
|
};
|
|
|
|
|
2015-09-11 16:51:50 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT FindMyPhoneDeviceDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceFindmyphoneInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit FindMyPhoneDeviceDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~FindMyPhoneDeviceDbusInterface() override;
|
2015-09-11 16:51:50 +01:00
|
|
|
};
|
|
|
|
|
2016-06-12 19:15:40 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT RemoteCommandsDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceRemotecommandsInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit RemoteCommandsDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~RemoteCommandsDbusInterface() override;
|
|
|
|
};
|
|
|
|
|
2017-01-23 08:08:27 +00:00
|
|
|
class KDECONNECTINTERFACES_EXPORT RemoteKeyboardDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceRemotekeyboardInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool remoteState READ remoteState NOTIFY remoteStateChanged)
|
|
|
|
public:
|
|
|
|
explicit RemoteKeyboardDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~RemoteKeyboardDbusInterface() override;
|
|
|
|
Q_SIGNALS:
|
|
|
|
void remoteStateChanged(bool state);
|
|
|
|
};
|
|
|
|
|
2018-09-10 10:28:54 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT SmsDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceSmsInterface
|
2018-03-25 19:40:59 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-09-10 10:28:54 +01:00
|
|
|
explicit SmsDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~SmsDbusInterface() override;
|
2018-03-25 19:40:59 +01:00
|
|
|
};
|
|
|
|
|
2018-10-31 18:20:20 +00:00
|
|
|
class KDECONNECTINTERFACES_EXPORT ShareDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceShareInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ShareDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~ShareDbusInterface() override;
|
|
|
|
};
|
|
|
|
|
2018-11-07 19:54:00 +00:00
|
|
|
class KDECONNECTINTERFACES_EXPORT RemoteSystemVolumeDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceRemotesystemvolumeInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit RemoteSystemVolumeDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~RemoteSystemVolumeDbusInterface() = default;
|
|
|
|
};
|
|
|
|
|
2020-05-05 12:53:41 +01:00
|
|
|
class KDECONNECTINTERFACES_EXPORT BigscreenDbusInterface
|
|
|
|
: public OrgKdeKdeconnectDeviceBigscreenInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit BigscreenDbusInterface(const QString& deviceId, QObject* parent = nullptr);
|
|
|
|
~BigscreenDbusInterface() override;
|
|
|
|
};
|
|
|
|
|
2017-01-13 13:21:37 +00:00
|
|
|
template <typename T, typename W>
|
2017-09-03 20:39:44 +01:00
|
|
|
static void setWhenAvailable(const QDBusPendingReply<T>& pending, W func, QObject* parent)
|
2017-01-13 13:21:37 +00:00
|
|
|
{
|
2017-09-03 20:39:44 +01:00
|
|
|
QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher(pending, parent);
|
2017-01-13 13:21:37 +00:00
|
|
|
QObject::connect(watcher, &QDBusPendingCallWatcher::finished,
|
|
|
|
parent, [func](QDBusPendingCallWatcher* watcher) {
|
|
|
|
watcher->deleteLater();
|
|
|
|
QDBusPendingReply<T> reply = *watcher;
|
|
|
|
func(reply.value());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-02-24 06:12:45 +00:00
|
|
|
#endif
|