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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
#include "shareplugin.h"
|
2014-09-21 23:46:19 +01:00
|
|
|
#include "share_debug.h"
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2014-09-22 00:25:15 +01:00
|
|
|
#include <QStandardPaths>
|
2015-03-10 04:59:36 +00:00
|
|
|
#include <QProcess>
|
2013-11-23 00:39:10 +00:00
|
|
|
#include <QDir>
|
2013-09-10 18:01:46 +01:00
|
|
|
#include <QDesktopServices>
|
2014-03-03 03:53:11 +00:00
|
|
|
#include <QDBusConnection>
|
2014-09-21 23:46:19 +01:00
|
|
|
#include <QDebug>
|
2016-07-05 13:27:53 +01:00
|
|
|
#include <QTemporaryFile>
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2015-03-10 04:59:36 +00:00
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KJobTrackerInterface>
|
|
|
|
#include <KPluginFactory>
|
2015-04-01 15:06:12 +01:00
|
|
|
#include <KIO/MkpathJob>
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2016-07-05 13:27:53 +01:00
|
|
|
#include "core/filetransferjob.h"
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2015-03-19 15:36:53 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_share.json", registerPlugin< SharePlugin >(); )
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2015-04-15 16:45:54 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_SHARE, "kdeconnect.plugin.share")
|
2014-09-21 23:46:19 +01:00
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
SharePlugin::SharePlugin(QObject* parent, const QVariantList& args)
|
2013-08-13 23:09:46 +01:00
|
|
|
: KdeConnectPlugin(parent, args)
|
|
|
|
{
|
2013-11-23 00:39:10 +00:00
|
|
|
}
|
|
|
|
|
2014-09-21 21:24:37 +01:00
|
|
|
QUrl SharePlugin::destinationDir() const
|
2013-11-23 00:39:10 +00:00
|
|
|
{
|
2015-04-15 16:45:54 +01:00
|
|
|
const QString defaultDownloadPath = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
|
2016-11-26 14:38:08 +00:00
|
|
|
QUrl dir = QUrl::fromLocalFile(config()->get<QString>(QStringLiteral("incoming_path"), defaultDownloadPath));
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2016-11-26 14:38:08 +00:00
|
|
|
if (dir.path().contains(QLatin1String("%1"))) {
|
2015-04-01 15:06:12 +01:00
|
|
|
dir.setPath(dir.path().arg(device()->name()));
|
2014-09-21 21:24:37 +01:00
|
|
|
}
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2015-04-01 15:06:12 +01:00
|
|
|
KJob* job = KIO::mkpath(dir);
|
|
|
|
bool ret = job->exec();
|
|
|
|
if (!ret) {
|
|
|
|
qWarning() << "couldn't create" << dir;
|
|
|
|
}
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2015-04-01 15:06:12 +01:00
|
|
|
return dir;
|
2013-08-13 23:09:46 +01:00
|
|
|
}
|
|
|
|
|
2017-10-02 12:21:41 +01:00
|
|
|
static QString cleanFilename(const QString &filename)
|
|
|
|
{
|
|
|
|
int idx = filename.lastIndexOf(QLatin1Char('/'));
|
|
|
|
return idx>=0 ? filename.mid(idx + 1) : filename;
|
|
|
|
}
|
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool SharePlugin::receivePacket(const NetworkPacket& np)
|
2013-08-13 23:09:46 +01:00
|
|
|
{
|
2013-09-27 02:01:13 +01:00
|
|
|
/*
|
2014-10-10 19:47:35 +01:00
|
|
|
//TODO: Write a test like this
|
2018-03-04 19:48:51 +00:00
|
|
|
if (np.type() == PACKET_TYPE_PING) {
|
2013-09-10 18:01:46 +01:00
|
|
|
|
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
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
NetworkPacket out(PACKET_TYPE_SHARE_REQUEST);
|
2013-09-20 14:54:30 +01:00
|
|
|
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
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2013-09-20 14:54:30 +01:00
|
|
|
out.setPayload(file, file->size());
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
device()->sendPacket(out);
|
2013-09-10 18:01:46 +01:00
|
|
|
|
|
|
|
return true;
|
2013-09-16 14:21:22 +01:00
|
|
|
|
2013-09-20 14:54:30 +01:00
|
|
|
}
|
2013-09-27 02:01:13 +01:00
|
|
|
*/
|
2013-10-01 01:44:49 +01:00
|
|
|
|
2014-09-21 23:46:19 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer";
|
2013-09-16 14:21:22 +01:00
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
if (np.hasPayload()) {
|
2017-10-02 12:21:41 +01:00
|
|
|
const QString filename = cleanFilename(np.get<QString>(QStringLiteral("filename"), QString::number(QDateTime::currentMSecsSinceEpoch())));
|
2015-04-01 22:32:35 +01:00
|
|
|
const QUrl dir = destinationDir().adjusted(QUrl::StripTrailingSlash);
|
2017-08-10 00:23:47 +01:00
|
|
|
QUrl destination(dir);
|
|
|
|
destination.setPath(dir.path() + '/' + filename, QUrl::DecodedMode);
|
2015-04-02 13:48:50 +01:00
|
|
|
if (destination.isLocalFile() && QFile::exists(destination.toLocalFile())) {
|
2017-08-10 00:23:47 +01:00
|
|
|
destination.setPath(dir.path() + '/' + KIO::suggestName(dir, filename), QUrl::DecodedMode);
|
2015-04-02 13:48:50 +01:00
|
|
|
}
|
2017-08-10 00:23:47 +01:00
|
|
|
// qCDebug(KDECONNECT_PLUGIN_SHARE) << "receiving file" << filename << "in" << dir << "into" << destination;
|
2015-03-09 12:22:10 +00:00
|
|
|
|
2014-03-01 23:50:11 +00:00
|
|
|
FileTransferJob* job = np.createPayloadTransferJob(destination);
|
2015-10-17 21:32:57 +01:00
|
|
|
job->setOriginName(device()->name() + ": " + filename);
|
2016-11-26 14:12:38 +00:00
|
|
|
connect(job, &KJob::result, this, &SharePlugin::finished);
|
2014-03-03 20:03:56 +00:00
|
|
|
KIO::getJobTracker()->registerJob(job);
|
2013-09-10 18:01:46 +01:00
|
|
|
job->start();
|
2016-11-26 14:38:08 +00:00
|
|
|
} else if (np.has(QStringLiteral("text"))) {
|
|
|
|
QString text = np.get<QString>(QStringLiteral("text"));
|
|
|
|
if (!QStandardPaths::findExecutable(QStringLiteral("kate")).isEmpty()) {
|
2013-09-27 02:01:13 +01:00
|
|
|
QProcess* proc = new QProcess();
|
|
|
|
connect(proc, SIGNAL(finished(int)), proc, SLOT(deleteLater()));
|
2016-11-26 14:38:08 +00:00
|
|
|
proc->start(QStringLiteral("kate"), QStringList(QStringLiteral("--stdin")));
|
2013-09-27 02:01:13 +01:00
|
|
|
proc->write(text.toUtf8());
|
|
|
|
proc->closeWriteChannel();
|
|
|
|
} else {
|
|
|
|
QTemporaryFile tmpFile;
|
|
|
|
tmpFile.setAutoRemove(false);
|
|
|
|
tmpFile.open();
|
|
|
|
tmpFile.write(text.toUtf8());
|
|
|
|
tmpFile.close();
|
2015-12-07 02:27:40 +00:00
|
|
|
|
2017-08-01 22:57:50 +01:00
|
|
|
const QString fileName = tmpFile.fileName();
|
|
|
|
Q_EMIT shareReceived(fileName);
|
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(fileName));
|
2013-09-27 02:01:13 +01:00
|
|
|
}
|
2016-11-26 14:38:08 +00:00
|
|
|
} else if (np.has(QStringLiteral("url"))) {
|
|
|
|
QUrl url = QUrl::fromEncoded(np.get<QByteArray>(QStringLiteral("url")));
|
2013-09-27 02:01:13 +01:00
|
|
|
QDesktopServices::openUrl(url);
|
2017-08-01 22:57:50 +01:00
|
|
|
Q_EMIT shareReceived(url.toString());
|
2013-09-27 02:01:13 +01:00
|
|
|
} else {
|
2014-09-21 23:46:19 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_SHARE) << "Error: Nothing attached!";
|
2013-09-10 18:01:46 +01:00
|
|
|
}
|
2013-09-20 14:54:30 +01:00
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
void SharePlugin::finished(KJob* job)
|
2013-09-10 18:01:46 +01:00
|
|
|
{
|
2015-09-07 13:54:33 +01:00
|
|
|
FileTransferJob* ftjob = qobject_cast<FileTransferJob*>(job);
|
2017-08-01 22:57:50 +01:00
|
|
|
if (ftjob && !job->error()) {
|
|
|
|
Q_EMIT shareReceived(ftjob->destination().toString());
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer finished." << ftjob->destination();
|
|
|
|
} else {
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_SHARE) << "File transfer failed." << (ftjob ? ftjob->destination() : QUrl());
|
|
|
|
}
|
2013-10-01 01:44:49 +01:00
|
|
|
}
|
2013-08-13 23:09:46 +01:00
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
void SharePlugin::openDestinationFolder()
|
2013-10-01 01:44:49 +01:00
|
|
|
{
|
2013-11-23 00:39:10 +00:00
|
|
|
QDesktopServices::openUrl(destinationDir());
|
2013-08-13 23:09:46 +01:00
|
|
|
}
|
2014-03-03 03:53:11 +00:00
|
|
|
|
|
|
|
void SharePlugin::shareUrl(const QUrl& url)
|
|
|
|
{
|
2018-03-04 19:48:51 +00:00
|
|
|
NetworkPacket packet(PACKET_TYPE_SHARE_REQUEST);
|
2014-03-03 03:53:11 +00:00
|
|
|
if(url.isLocalFile()) {
|
|
|
|
QSharedPointer<QIODevice> ioFile(new QFile(url.toLocalFile()));
|
2018-03-04 19:48:51 +00:00
|
|
|
packet.setPayload(ioFile, ioFile->size());
|
|
|
|
packet.set<QString>(QStringLiteral("filename"), QUrl(url).fileName());
|
2014-03-03 03:53:11 +00:00
|
|
|
} else {
|
2018-03-04 19:48:51 +00:00
|
|
|
packet.set<QString>(QStringLiteral("url"), url.toString());
|
2014-03-03 03:53:11 +00:00
|
|
|
}
|
2018-03-04 19:48:51 +00:00
|
|
|
sendPacket(packet);
|
2014-03-03 03:53:11 +00:00
|
|
|
}
|
|
|
|
|
2018-11-03 21:16:07 +00:00
|
|
|
void SharePlugin::shareText(const QString& text)
|
|
|
|
{
|
|
|
|
NetworkPacket packet(PACKET_TYPE_SHARE_REQUEST);
|
|
|
|
packet.set<QString>(QStringLiteral("text"), text);
|
|
|
|
sendPacket(packet);
|
|
|
|
}
|
|
|
|
|
2018-11-04 18:52:51 +00:00
|
|
|
void SharePlugin::openFile(const QUrl& url)
|
|
|
|
{
|
|
|
|
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"), true);
|
|
|
|
}
|
|
|
|
sendPacket(packet);
|
|
|
|
}
|
|
|
|
|
2014-03-03 03:53:11 +00:00
|
|
|
QString SharePlugin::dbusPath() const
|
|
|
|
{
|
|
|
|
return "/modules/kdeconnect/devices/" + device()->id() + "/share";
|
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
|
|
|
#include "shareplugin.moc"
|