kdeconnect-kde/plugins/share/shareplugin.cpp

228 lines
8.1 KiB
C++
Raw Normal View History

2013-08-13 23:09:46 +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
2019-03-23 16:29:26 +00:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2013-08-13 23:09:46 +01:00
*/
#include "shareplugin.h"
2014-09-21 23:46:19 +01:00
#include "share_debug.h"
2013-08-13 23:09:46 +01:00
#include <QStandardPaths>
2015-03-10 04:59:36 +00:00
#include <QProcess>
#include <QDir>
#include <QDesktopServices>
#include <QDBusConnection>
2016-07-05 13:27:53 +01:00
#include <QTemporaryFile>
#include <QDateTime>
2015-03-10 04:59:36 +00:00
#include <KLocalizedString>
#include <KJobTrackerInterface>
#include <KPluginFactory>
#include <KIO/MkpathJob>
#include <KMimeTypeTrader>
2016-07-05 13:27:53 +01:00
#include "core/filetransferjob.h"
2019-06-12 21:16:54 +01:00
K_PLUGIN_CLASS_WITH_JSON(SharePlugin, "kdeconnect_share.json")
2013-08-13 23:09:46 +01:00
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_SHARE, "kdeconnect.plugin.share")
2014-09-21 23:46:19 +01:00
SharePlugin::SharePlugin(QObject* parent, const QVariantList& args)
2013-08-13 23:09:46 +01:00
: KdeConnectPlugin(parent, args)
2019-06-02 15:02:21 +01:00
, m_compositeJob()
2013-08-13 23:09:46 +01:00
{
}
QUrl SharePlugin::destinationDir() const
{
const QString defaultDownloadPath = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
QUrl dir = QUrl::fromLocalFile(config()->get<QString>(QStringLiteral("incoming_path"), defaultDownloadPath));
if (dir.path().contains(QLatin1String("%1"))) {
dir.setPath(dir.path().arg(device()->name()));
}
KJob* job = KIO::mkpath(dir);
bool ret = job->exec();
if (!ret) {
qWarning() << "couldn't create" << dir;
}
return dir;
2013-08-13 23:09:46 +01:00
}
QUrl SharePlugin::getFileDestination(const QString filename) const
{
const QUrl dir = destinationDir().adjusted(QUrl::StripTrailingSlash);
QUrl destination(dir);
destination.setPath(dir.path() + QStringLiteral("/") + filename, QUrl::DecodedMode);
if (destination.isLocalFile() && QFile::exists(destination.toLocalFile())) {
destination.setPath(dir.path() + QStringLiteral("/") + KIO::suggestName(dir, filename), QUrl::DecodedMode);
}
return destination;
}
static QString cleanFilename(const QString &filename)
{
int idx = filename.lastIndexOf(QLatin1Char('/'));
return idx>=0 ? filename.mid(idx + 1) : filename;
}
void SharePlugin::setDateModified(const QUrl& destination, const qint64 timestamp)
{
QFile receivedFile(destination.toLocalFile());
2019-05-19 18:13:07 +01:00
if (!receivedFile.exists() || !receivedFile.open(QIODevice::ReadWrite | QIODevice::Text)) {
return;
}
receivedFile.setFileTime(QDateTime::fromMSecsSinceEpoch(timestamp), QFileDevice::FileTime(QFileDevice::FileModificationTime));
}
bool SharePlugin::receivePacket(const NetworkPacket& np)
2013-08-13 23:09:46 +01:00
{
/*
2014-10-10 19:47:35 +01:00
//TODO: Write a test like this
if (np.type() == PACKET_TYPE_PING) {
2014-09-21 23:46:19 +01:00
qCDebug(KDECONNECT_PLUGIN_SHARE) << "sending file" << (QDesktopServices::storageLocation(QDesktopServices::HomeLocation) + "/.bashrc");
2013-09-16 14:21:22 +01:00
NetworkPacket out(PACKET_TYPE_SHARE_REQUEST);
out.set("filename", mDestinationDir + "itworks.txt");
2013-09-16 14:21:22 +01:00
AutoClosingQFile* file = new AutoClosingQFile(QDesktopServices::storageLocation(QDesktopServices::HomeLocation) + "/.bashrc"); //Test file to transfer
out.setPayload(file, file->size());
device()->sendPacket(out);
return true;
2013-09-16 14:21:22 +01:00
}
*/
2014-09-21 23:46:19 +01:00
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer";
2013-09-16 14:21:22 +01:00
if (np.hasPayload() || np.has(QStringLiteral("filename"))) {
// qCDebug(KDECONNECT_PLUGIN_SHARE) << "receiving file" << filename << "in" << dir << "into" << destination;
const QString filename = cleanFilename(np.get<QString>(QStringLiteral("filename"), QString::number(QDateTime::currentMSecsSinceEpoch())));
QUrl destination = getFileDestination(filename);
if (np.hasPayload()) {
qint64 dateModified = np.get<qint64>(QStringLiteral("lastModified"), QDateTime::currentMSecsSinceEpoch());
2019-06-02 15:02:21 +01:00
if (!m_compositeJob) {
m_compositeJob = new CompositeFileTransferJob(device()->id());
KIO::getJobTracker()->registerJob(m_compositeJob);
}
FileTransferJob* job = np.createPayloadTransferJob(destination);
job->setOriginName(device()->name() + QStringLiteral(": ") + filename);
connect(job, &KJob::result, this, [this, dateModified] (KJob* job) -> void { finished(job, dateModified); });
2019-06-02 15:02:21 +01:00
m_compositeJob->addSubjob(job);
if (!m_compositeJob->isRunning()) {
m_compositeJob->start();
}
} else {
QFile file(destination.toLocalFile());
file.open(QIODevice::WriteOnly);
file.close();
}
} else if (np.has(QStringLiteral("text"))) {
QString text = np.get<QString>(QStringLiteral("text"));
KService::Ptr service = KMimeTypeTrader::self()->preferredService(QStringLiteral("text/plain"));
const QString defaultApp = service ? service->desktopEntryName() : QString();
if (defaultApp == QLatin1String("org.kde.kate") || defaultApp == QLatin1String("org.kde.kwrite")) {
QProcess* proc = new QProcess();
connect(proc, SIGNAL(finished(int)), proc, SLOT(deleteLater()));
proc->start(defaultApp.section(QStringLiteral("."), 2,2), QStringList(QStringLiteral("--stdin")));
proc->write(text.toUtf8());
proc->closeWriteChannel();
} else {
QTemporaryFile tmpFile;
tmpFile.setFileTemplate(QStringLiteral("kdeconnect-XXXXXX.txt"));
tmpFile.setAutoRemove(false);
tmpFile.open();
tmpFile.write(text.toUtf8());
tmpFile.close();
const QString fileName = tmpFile.fileName();
Q_EMIT shareReceived(fileName);
QDesktopServices::openUrl(QUrl::fromLocalFile(fileName));
}
} else if (np.has(QStringLiteral("url"))) {
QUrl url = QUrl::fromEncoded(np.get<QByteArray>(QStringLiteral("url")));
QDesktopServices::openUrl(url);
Q_EMIT shareReceived(url.toString());
} else {
2014-09-21 23:46:19 +01:00
qCDebug(KDECONNECT_PLUGIN_SHARE) << "Error: Nothing attached!";
}
return true;
}
void SharePlugin::finished(KJob* job, const qint64 dateModified)
{
FileTransferJob* ftjob = qobject_cast<FileTransferJob*>(job);
if (ftjob && !job->error()) {
Q_EMIT shareReceived(ftjob->destination().toString());
setDateModified(ftjob->destination(), dateModified);
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer finished." << ftjob->destination();
} else {
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer failed." << (ftjob ? ftjob->destination() : QUrl());
}
}
2013-08-13 23:09:46 +01:00
void SharePlugin::openDestinationFolder()
{
QDesktopServices::openUrl(destinationDir());
2013-08-13 23:09:46 +01:00
}
void SharePlugin::shareUrl(const QUrl& url, bool open)
{
NetworkPacket packet(PACKET_TYPE_SHARE_REQUEST);
if (url.isLocalFile()) {
QSharedPointer<QIODevice> ioFile(new QFile(url.toLocalFile()));
packet.setPayload(ioFile, ioFile->size());
packet.set<QString>(QStringLiteral("filename"), QUrl(url).fileName());
packet.set<bool>(QStringLiteral("open"), open);
} else {
packet.set<QString>(QStringLiteral("url"), url.toString());
}
sendPacket(packet);
}
void SharePlugin::shareUrls(const QStringList& urls) {
2019-02-28 13:21:29 +00:00
for(const QString& url : urls) {
shareUrl(QUrl(url), false);
}
}
void SharePlugin::shareText(const QString& text)
{
NetworkPacket packet(PACKET_TYPE_SHARE_REQUEST);
packet.set<QString>(QStringLiteral("text"), text);
sendPacket(packet);
}
QString SharePlugin::dbusPath() const
{
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/share");
}
#include "shareplugin.moc"