2013-06-06 04:57:06 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@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 "networkpackage.h"
|
2014-09-21 23:59:34 +01:00
|
|
|
#include "core_debug.h"
|
2013-08-31 12:04:00 +01:00
|
|
|
|
2014-09-12 23:49:56 +01:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QMetaProperty>
|
2013-08-31 12:04:00 +01:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <QDataStream>
|
|
|
|
#include <QDateTime>
|
2015-03-02 04:16:07 +00:00
|
|
|
#include <QJsonDocument>
|
2014-09-21 23:59:34 +01:00
|
|
|
#include <QDebug>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2014-10-10 19:26:50 +01:00
|
|
|
#include "dbushelper.h"
|
2013-09-24 13:10:25 +01:00
|
|
|
#include "filetransferjob.h"
|
2014-07-11 00:54:19 +01:00
|
|
|
#include "pluginloader.h"
|
2015-03-02 04:16:07 +00:00
|
|
|
#include "kdeconnectconfig.h"
|
2013-09-24 13:10:25 +01:00
|
|
|
|
2016-06-03 14:50:46 +01:00
|
|
|
QDebug operator<<(QDebug s, const NetworkPackage& pkg)
|
|
|
|
{
|
|
|
|
s.nospace() << "NetworkPackage(" << pkg.type() << ':' << pkg.body();
|
|
|
|
if (pkg.hasPayload()) {
|
|
|
|
s.nospace() << ":withpayload";
|
|
|
|
}
|
|
|
|
s.nospace() << ')';
|
|
|
|
return s.space();
|
|
|
|
}
|
|
|
|
|
2016-06-17 01:40:20 +01:00
|
|
|
const int NetworkPackage::ProtocolVersion = 7;
|
2013-09-03 01:13:13 +01:00
|
|
|
|
2016-06-21 19:07:12 +01:00
|
|
|
NetworkPackage::NetworkPackage(const QString& type, const QVariantMap &body)
|
|
|
|
: mId(QString::number(QDateTime::currentMSecsSinceEpoch()))
|
|
|
|
, mType(type)
|
|
|
|
, mBody(body)
|
|
|
|
, mPayload()
|
|
|
|
, mPayloadSize(0)
|
2013-07-04 00:09:49 +01:00
|
|
|
{
|
2013-09-09 17:30:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetworkPackage::createIdentityPackage(NetworkPackage* np)
|
|
|
|
{
|
2015-03-02 04:16:07 +00:00
|
|
|
KdeConnectConfig* config = KdeConnectConfig::instance();
|
|
|
|
const QString id = config->deviceId();
|
2013-09-09 17:30:44 +01:00
|
|
|
np->mId = QString::number(QDateTime::currentMSecsSinceEpoch());
|
|
|
|
np->mType = PACKAGE_TYPE_IDENTITY;
|
2013-09-24 13:13:02 +01:00
|
|
|
np->mPayload = QSharedPointer<QIODevice>();
|
2013-09-20 14:54:30 +01:00
|
|
|
np->mPayloadSize = 0;
|
2013-09-09 17:30:44 +01:00
|
|
|
np->set("deviceId", id);
|
2015-03-02 04:16:07 +00:00
|
|
|
np->set("deviceName", config->name());
|
|
|
|
np->set("deviceType", config->deviceType());
|
2013-09-09 17:30:44 +01:00
|
|
|
np->set("protocolVersion", NetworkPackage::ProtocolVersion);
|
2016-07-06 16:37:22 +01:00
|
|
|
np->set("incomingCapabilities", PluginLoader::instance()->incomingCapabilities());
|
|
|
|
np->set("outgoingCapabilities", PluginLoader::instance()->outgoingCapabilities());
|
2013-09-09 17:30:44 +01:00
|
|
|
|
2015-03-16 02:14:30 +00:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "createIdentityPackage" << np->serialize();
|
2013-07-03 02:52:44 +01:00
|
|
|
}
|
|
|
|
|
2015-06-24 19:04:33 +01:00
|
|
|
template<class T>
|
|
|
|
QVariantMap qobject2qvariant(const T* object)
|
2014-09-12 23:49:56 +01:00
|
|
|
{
|
|
|
|
QVariantMap map;
|
2015-06-24 19:04:33 +01:00
|
|
|
auto metaObject = T::staticMetaObject;
|
|
|
|
for(int i = metaObject.propertyOffset(); i < metaObject.propertyCount(); ++i) {
|
|
|
|
QMetaProperty prop = metaObject.property(i);
|
|
|
|
map.insert(QString::fromLatin1(prop.name()), prop.readOnGadget(object));
|
2014-09-12 23:49:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2013-07-04 00:09:49 +01:00
|
|
|
QByteArray NetworkPackage::serialize() const
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
2013-07-04 00:09:49 +01:00
|
|
|
//Object -> QVariant
|
|
|
|
//QVariantMap variant;
|
|
|
|
//variant["id"] = mId;
|
|
|
|
//variant["type"] = mType;
|
|
|
|
//variant["body"] = mBody;
|
2015-04-01 23:02:09 +01:00
|
|
|
QVariantMap variant = qobject2qvariant(this);
|
2013-07-04 00:09:49 +01:00
|
|
|
|
2013-09-09 17:30:44 +01:00
|
|
|
if (hasPayload()) {
|
2015-03-16 02:14:30 +00:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "Serializing payloadTransferInfo";
|
2014-03-03 03:50:53 +00:00
|
|
|
variant["payloadSize"] = payloadSize();
|
2013-09-09 17:30:44 +01:00
|
|
|
variant["payloadTransferInfo"] = mPayloadTransferInfo;
|
|
|
|
}
|
|
|
|
|
2013-07-04 00:09:49 +01:00
|
|
|
//QVariant -> json
|
2014-09-12 23:49:56 +01:00
|
|
|
auto jsonDocument = QJsonDocument::fromVariant(variant);
|
|
|
|
QByteArray json = jsonDocument.toJson(QJsonDocument::Compact);
|
|
|
|
if (json.isEmpty()) {
|
2014-09-21 22:54:27 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Serialization error:";
|
2013-07-24 22:51:06 +01:00
|
|
|
} else {
|
2015-12-11 01:12:08 +00:00
|
|
|
/*if (!isEncrypted()) {
|
2015-03-16 02:14:30 +00:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "Serialized package:" << json;
|
2015-12-11 01:12:08 +00:00
|
|
|
}*/
|
2013-07-24 22:51:06 +01:00
|
|
|
json.append('\n');
|
|
|
|
}
|
2013-07-04 00:09:49 +01:00
|
|
|
|
|
|
|
return json;
|
2013-06-06 04:57:06 +01:00
|
|
|
}
|
|
|
|
|
2015-06-24 19:04:33 +01:00
|
|
|
template <class T>
|
|
|
|
void qvariant2qobject(const QVariantMap& variant, T* object)
|
2014-09-12 23:49:56 +01:00
|
|
|
{
|
|
|
|
for ( QVariantMap::const_iterator iter = variant.begin(); iter != variant.end(); ++iter )
|
|
|
|
{
|
2015-06-24 19:04:33 +01:00
|
|
|
const int propertyIndex = T::staticMetaObject.indexOfProperty(iter.key().toLatin1());
|
2015-04-01 22:38:32 +01:00
|
|
|
if (propertyIndex < 0) {
|
|
|
|
qCWarning(KDECONNECT_CORE) << "missing property" << object << iter.key();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-06-24 19:04:33 +01:00
|
|
|
QMetaProperty property = T::staticMetaObject.property(propertyIndex);
|
|
|
|
bool ret = property.writeOnGadget(object, *iter);
|
2015-04-01 22:38:32 +01:00
|
|
|
if (!ret) {
|
|
|
|
qCWarning(KDECONNECT_CORE) << "couldn't set" << object << "->" << property.name() << '=' << *iter;
|
2014-09-12 23:49:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 12:26:26 +01:00
|
|
|
bool NetworkPackage::unserialize(const QByteArray& a, NetworkPackage* np)
|
2013-06-17 11:23:08 +01:00
|
|
|
{
|
2013-07-04 00:09:49 +01:00
|
|
|
//Json -> QVariant
|
2014-09-12 23:49:56 +01:00
|
|
|
QJsonParseError parseError;
|
|
|
|
auto parser = QJsonDocument::fromJson(a, &parseError);
|
|
|
|
if (parser.isNull()) {
|
2014-09-21 22:54:27 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Unserialization error:" << parseError.errorString();
|
2013-09-03 15:01:28 +01:00
|
|
|
return false;
|
2013-07-04 02:34:35 +01:00
|
|
|
}
|
2013-07-04 00:09:49 +01:00
|
|
|
|
2014-09-12 23:49:56 +01:00
|
|
|
auto variant = parser.toVariant().toMap();
|
|
|
|
qvariant2qobject(variant, np);
|
2013-09-09 17:28:52 +01:00
|
|
|
|
2013-09-20 14:54:30 +01:00
|
|
|
np->mPayloadSize = variant["payloadSize"].toInt(); //Will return 0 if was not present, which is ok
|
2014-03-03 20:08:34 +00:00
|
|
|
if (np->mPayloadSize == -1) {
|
|
|
|
np->mPayloadSize = np->get<int>("size", -1);
|
|
|
|
}
|
2013-09-20 14:54:30 +01:00
|
|
|
np->mPayloadTransferInfo = variant["payloadTransferInfo"].toMap(); //Will return an empty qvariantmap if was not present, which is ok
|
2013-09-09 17:30:44 +01:00
|
|
|
|
2014-10-10 19:26:50 +01:00
|
|
|
//Ids containing characters that are not allowed as dbus paths would make app crash
|
|
|
|
if (np->mBody.contains("deviceId"))
|
|
|
|
{
|
|
|
|
QString deviceId = np->get<QString>("deviceId");
|
|
|
|
DbusHelper::filterNonExportableCharacters(deviceId);
|
|
|
|
np->set("deviceId", deviceId);
|
|
|
|
}
|
2014-08-01 11:29:34 +01:00
|
|
|
|
2013-09-03 15:01:28 +01:00
|
|
|
return true;
|
2013-07-23 19:22:38 +01:00
|
|
|
|
2013-06-17 11:23:08 +01:00
|
|
|
}
|
2013-09-02 02:17:23 +01:00
|
|
|
|
2014-09-21 21:22:06 +01:00
|
|
|
FileTransferJob* NetworkPackage::createPayloadTransferJob(const QUrl &destination) const
|
2013-09-24 13:10:25 +01:00
|
|
|
{
|
|
|
|
return new FileTransferJob(payload(), payloadSize(), destination);
|
|
|
|
}
|
|
|
|
|