2018-09-10 10:28:54 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
* SPDX-FileCopyrightText: 2018 Simon Redman <simon@ergotech.com>
|
2018-09-10 10:28:54 +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
|
2018-09-10 10:28:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "smsplugin.h"
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
|
|
#include <QDBusConnection>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QDebug>
|
2020-08-31 11:05:25 +01:00
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QMimeDatabase>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QProcess>
|
2018-09-10 10:28:54 +01:00
|
|
|
|
|
|
|
#include <core/daemon.h>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <core/device.h>
|
2020-08-13 19:23:02 +01:00
|
|
|
#include <core/filetransferjob.h>
|
2018-09-10 10:28:54 +01:00
|
|
|
|
2020-05-26 17:55:47 +01:00
|
|
|
#include "plugin_sms_debug.h"
|
2018-09-10 10:28:54 +01:00
|
|
|
|
2019-06-12 21:16:54 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(SmsPlugin, "kdeconnect_sms.json")
|
2018-09-10 10:28:54 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
SmsPlugin::SmsPlugin(QObject *parent, const QVariantList &args)
|
2018-09-10 10:28:54 +01:00
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
, m_conversationInterface(new ConversationsDbusInterface(this))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SmsPlugin::~SmsPlugin()
|
|
|
|
{
|
2019-03-22 00:55:44 +00:00
|
|
|
// m_conversationInterface is self-deleting, see ~ConversationsDbusInterface for more information
|
2018-09-10 10:28:54 +01:00
|
|
|
}
|
|
|
|
|
2023-07-31 08:25:45 +01:00
|
|
|
void SmsPlugin::receivePacket(const NetworkPacket &np)
|
2018-09-10 10:28:54 +01:00
|
|
|
{
|
2018-09-16 23:03:31 +01:00
|
|
|
if (np.type() == PACKET_TYPE_SMS_MESSAGES) {
|
2023-07-31 08:25:45 +01:00
|
|
|
handleBatchMessages(np);
|
2018-09-10 10:28:54 +01:00
|
|
|
}
|
|
|
|
|
2020-08-13 19:23:02 +01:00
|
|
|
if (np.type() == PACKET_TYPE_SMS_ATTACHMENT_FILE && np.hasPayload()) {
|
2023-07-31 08:25:45 +01:00
|
|
|
handleSmsAttachmentFile(np);
|
2020-08-13 19:23:02 +01:00
|
|
|
}
|
2018-09-10 10:28:54 +01:00
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void SmsPlugin::sendSms(const QVariantList &addresses, const QString &textMessage, const QVariantList &attachmentUrls, const qint64 subID)
|
2018-09-10 10:28:54 +01:00
|
|
|
{
|
2020-07-08 09:16:56 +01:00
|
|
|
QVariantList addressMapList;
|
2022-09-10 22:23:52 +01:00
|
|
|
for (const QVariant &address : addresses) {
|
2020-07-29 16:18:19 +01:00
|
|
|
QVariantMap addressMap({{QStringLiteral("address"), qdbus_cast<ConversationAddress>(address).address()}});
|
2020-07-08 09:16:56 +01:00
|
|
|
addressMapList.append(addressMap);
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariantMap packetMap({{QStringLiteral("version"), SMS_REQUEST_PACKET_VERSION}, {QStringLiteral("addresses"), addressMapList}});
|
2020-08-31 11:05:25 +01:00
|
|
|
|
|
|
|
// If there is any text message add it to the network packet
|
|
|
|
if (textMessage != QStringLiteral("")) {
|
2020-09-12 22:41:37 +01:00
|
|
|
packetMap[QStringLiteral("messageBody")] = textMessage;
|
2020-08-31 11:05:25 +01:00
|
|
|
}
|
|
|
|
|
2020-03-20 02:16:55 +00:00
|
|
|
if (subID != -1) {
|
|
|
|
packetMap[QStringLiteral("subID")] = subID;
|
|
|
|
}
|
2020-08-31 11:05:25 +01:00
|
|
|
|
|
|
|
QVariantList attachmentMapList;
|
2022-09-10 22:23:52 +01:00
|
|
|
for (const QVariant &attachmentUrl : attachmentUrls) {
|
2020-08-31 11:05:25 +01:00
|
|
|
const Attachment attachment = createAttachmentFromUrl(attachmentUrl.toString());
|
2022-09-10 22:23:52 +01:00
|
|
|
QVariantMap attachmentMap({{QStringLiteral("fileName"), attachment.uniqueIdentifier()},
|
|
|
|
{QStringLiteral("base64EncodedFile"), attachment.base64EncodedFile()},
|
|
|
|
{QStringLiteral("mimeType"), attachment.mimeType()}});
|
2020-08-31 11:05:25 +01:00
|
|
|
attachmentMapList.append(attachmentMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is any attachment add it to the network packet
|
|
|
|
if (!attachmentMapList.isEmpty()) {
|
|
|
|
packetMap[QStringLiteral("attachments")] = attachmentMapList;
|
|
|
|
}
|
|
|
|
|
2020-03-20 02:16:55 +00:00
|
|
|
NetworkPacket np(PACKET_TYPE_SMS_REQUEST, packetMap);
|
2018-11-01 15:36:32 +00:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_SMS) << "Dispatching SMS send request to remote";
|
2018-09-10 10:28:54 +01:00
|
|
|
sendPacket(np);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SmsPlugin::requestAllConversations()
|
|
|
|
{
|
2018-09-16 23:03:31 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_SMS_REQUEST_CONVERSATIONS);
|
2018-09-10 10:28:54 +01:00
|
|
|
|
|
|
|
sendPacket(np);
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void SmsPlugin::requestConversation(const qint64 conversationID, const qint64 rangeStartTimestamp, const qint64 numberToRequest) const
|
2018-09-10 10:28:54 +01:00
|
|
|
{
|
2018-09-16 23:03:31 +01:00
|
|
|
NetworkPacket np(PACKET_TYPE_SMS_REQUEST_CONVERSATION);
|
2019-06-10 15:40:28 +01:00
|
|
|
np.set(QStringLiteral("threadID"), conversationID);
|
2020-11-02 16:40:58 +00:00
|
|
|
np.set(QStringLiteral("rangeStartTimestamp"), rangeStartTimestamp);
|
|
|
|
np.set(QStringLiteral("numberToRequest"), numberToRequest);
|
2018-09-10 10:28:54 +01:00
|
|
|
|
|
|
|
sendPacket(np);
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void SmsPlugin::requestAttachment(const qint64 &partID, const QString &uniqueIdentifier)
|
2020-08-13 19:23:02 +01:00
|
|
|
{
|
2022-09-10 22:23:52 +01:00
|
|
|
const QVariantMap packetMap({{QStringLiteral("part_id"), partID}, {QStringLiteral("unique_identifier"), uniqueIdentifier}});
|
2020-08-13 19:23:02 +01:00
|
|
|
|
|
|
|
NetworkPacket np(PACKET_TYPE_SMS_REQUEST_ATTACHMENT, packetMap);
|
|
|
|
|
|
|
|
sendPacket(np);
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool SmsPlugin::handleBatchMessages(const NetworkPacket &np)
|
2018-09-10 10:28:54 +01:00
|
|
|
{
|
2019-06-10 15:40:28 +01:00
|
|
|
const auto messages = np.get<QVariantList>(QStringLiteral("messages"));
|
[SMS App] Make requestMoreMessages asynchronous, blocking, and caching
Summary:
The most serious change from this patch is to move the asynchronous replying to a request from the app for more messages to a newly-spawned, self-destructing thread. Within that thread, we block until the remote device replies with the requested messages.
All gotten messages are cached in the ConversationDbusInterface, so all future requests are fast and don't hit the remote device.
Test Plan: After applying this diff, the messaging app should show 10 messages every time it is opened
Reviewers: #kde_connect, nicolasfella, albertvaka
Reviewed By: #kde_connect, albertvaka
Subscribers: albertvaka, apol, nicolasfella, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D16475
2018-12-13 05:42:45 +00:00
|
|
|
QList<ConversationMessage> messagesList;
|
|
|
|
messagesList.reserve(messages.count());
|
2018-09-10 10:28:54 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
for (const QVariant &body : messages) {
|
2018-09-10 10:28:54 +01:00
|
|
|
ConversationMessage message(body.toMap());
|
2019-07-19 16:29:28 +01:00
|
|
|
messagesList.append(message);
|
2018-09-10 10:28:54 +01:00
|
|
|
}
|
|
|
|
|
[SMS App] Make requestMoreMessages asynchronous, blocking, and caching
Summary:
The most serious change from this patch is to move the asynchronous replying to a request from the app for more messages to a newly-spawned, self-destructing thread. Within that thread, we block until the remote device replies with the requested messages.
All gotten messages are cached in the ConversationDbusInterface, so all future requests are fast and don't hit the remote device.
Test Plan: After applying this diff, the messaging app should show 10 messages every time it is opened
Reviewers: #kde_connect, nicolasfella, albertvaka
Reviewed By: #kde_connect, albertvaka
Subscribers: albertvaka, apol, nicolasfella, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D16475
2018-12-13 05:42:45 +00:00
|
|
|
m_conversationInterface->addMessages(messagesList);
|
|
|
|
|
2018-09-10 10:28:54 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool SmsPlugin::handleSmsAttachmentFile(const NetworkPacket &np)
|
|
|
|
{
|
2020-08-13 19:23:02 +01:00
|
|
|
const QString fileName = np.get<QString>(QStringLiteral("filename"));
|
|
|
|
|
|
|
|
QString cacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
|
|
|
cacheDir.append(QStringLiteral("/") + device()->name() + QStringLiteral("/"));
|
|
|
|
QDir attachmentsCacheDir(cacheDir);
|
|
|
|
|
|
|
|
if (!attachmentsCacheDir.exists()) {
|
|
|
|
qDebug() << attachmentsCacheDir.absolutePath() << " directory doesn't exist.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QUrl fileUrl = QUrl::fromLocalFile(attachmentsCacheDir.absolutePath());
|
|
|
|
fileUrl = fileUrl.adjusted(QUrl::StripTrailingSlash);
|
|
|
|
fileUrl.setPath(fileUrl.path() + QStringLiteral("/") + fileName, QUrl::DecodedMode);
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
FileTransferJob *job = np.createPayloadTransferJob(fileUrl);
|
|
|
|
connect(job, &FileTransferJob::result, this, [this, fileName](KJob *job) -> void {
|
|
|
|
FileTransferJob *ftjob = qobject_cast<FileTransferJob *>(job);
|
2020-08-13 19:23:02 +01:00
|
|
|
if (ftjob && !job->error()) {
|
|
|
|
// Notify SMS app about the newly downloaded attachment
|
|
|
|
m_conversationInterface->attachmentDownloaded(ftjob->destination().path(), fileName);
|
|
|
|
} else {
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_SMS) << ftjob->errorString() << (ftjob ? ftjob->destination() : QUrl());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
job->start();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
void SmsPlugin::getAttachment(const qint64 &partID, const QString &uniqueIdentifier)
|
2020-08-13 19:23:02 +01:00
|
|
|
{
|
|
|
|
QString cacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
|
|
|
|
cacheDir.append(QStringLiteral("/") + device()->name() + QStringLiteral("/"));
|
|
|
|
QDir fileDirectory(cacheDir);
|
|
|
|
|
|
|
|
bool fileFound = false;
|
|
|
|
if (fileDirectory.exists()) {
|
|
|
|
// Search for the attachment file locally before sending request to remote device
|
|
|
|
fileFound = fileDirectory.exists(uniqueIdentifier);
|
|
|
|
} else {
|
|
|
|
bool ret = fileDirectory.mkpath(QStringLiteral("."));
|
|
|
|
if (!ret) {
|
|
|
|
qWarning() << "couldn't create directorty " << fileDirectory.absolutePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!fileFound) {
|
|
|
|
// If the file is not present in the local dir request the remote device for the file
|
|
|
|
requestAttachment(partID, uniqueIdentifier);
|
|
|
|
} else {
|
|
|
|
const QString fileDestination = fileDirectory.absoluteFilePath(uniqueIdentifier);
|
|
|
|
m_conversationInterface->attachmentDownloaded(fileDestination, uniqueIdentifier);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Attachment SmsPlugin::createAttachmentFromUrl(const QString &url)
|
2020-08-31 11:05:25 +01:00
|
|
|
{
|
|
|
|
QFile file(url);
|
|
|
|
file.open(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
return Attachment();
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo fileInfo(file);
|
|
|
|
QString fileName(fileInfo.fileName());
|
|
|
|
|
2024-03-07 16:29:29 +00:00
|
|
|
QString base64EncodedFile = QString::fromLatin1(file.readAll().toBase64());
|
2020-08-31 11:05:25 +01:00
|
|
|
file.close();
|
|
|
|
|
|
|
|
QMimeDatabase mimeDatabase;
|
|
|
|
QString mimeType = mimeDatabase.mimeTypeForFile(url).name();
|
|
|
|
|
|
|
|
Attachment attachment(-1, mimeType, base64EncodedFile, fileName);
|
|
|
|
return attachment;
|
|
|
|
}
|
|
|
|
|
2018-09-10 10:28:54 +01:00
|
|
|
QString SmsPlugin::dbusPath() const
|
|
|
|
{
|
2023-08-12 12:26:05 +01:00
|
|
|
return QLatin1String("/modules/kdeconnect/devices/%1/sms").arg(device()->id());
|
2018-09-10 10:28:54 +01:00
|
|
|
}
|
|
|
|
|
2019-07-20 15:02:38 +01:00
|
|
|
void SmsPlugin::launchApp()
|
|
|
|
{
|
2022-09-10 22:23:52 +01:00
|
|
|
QProcess::startDetached(QLatin1String("kdeconnect-sms"), {QStringLiteral("--device"), device()->id()});
|
2019-07-20 15:02:38 +01:00
|
|
|
}
|
|
|
|
|
2023-07-26 09:15:11 +01:00
|
|
|
#include "moc_smsplugin.cpp"
|
2018-09-10 10:28:54 +01:00
|
|
|
#include "smsplugin.moc"
|