29f56dcc29
Fixes variable is assigned in constructor body. Consider performing initialization in initialization list. (CWE-398)
82 lines
2.7 KiB
C++
82 lines
2.7 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2019 Piyush Aggarwal <piyushaggarwal002@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
#include "sftpplugin-win.h"
|
|
|
|
#include <QDebug>
|
|
#include <QDesktopServices>
|
|
#include <QDir>
|
|
#include <QMessageBox>
|
|
#include <QProcess>
|
|
#include <QRegularExpression>
|
|
|
|
#include <KLocalizedString>
|
|
#include <KPluginFactory>
|
|
|
|
#include "plugin_sftp_debug.h"
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(SftpPlugin, "kdeconnect_sftp.json")
|
|
|
|
SftpPlugin::SftpPlugin(QObject *parent, const QVariantList &args)
|
|
: KdeConnectPlugin(parent, args)
|
|
, deviceId(device()->id())
|
|
{
|
|
}
|
|
|
|
SftpPlugin::~SftpPlugin()
|
|
{
|
|
}
|
|
|
|
bool SftpPlugin::startBrowsing()
|
|
{
|
|
NetworkPacket np(PACKET_TYPE_SFTP_REQUEST, {{QStringLiteral("startBrowsing"), true}});
|
|
sendPacket(np);
|
|
return false;
|
|
}
|
|
|
|
bool SftpPlugin::receivePacket(const NetworkPacket &np)
|
|
{
|
|
QSet<QString> receivedFields(np.body().keys().begin(), np.body().keys().end());
|
|
if (!(expectedFields - receivedFields).isEmpty()) {
|
|
qCWarning(KDECONNECT_PLUGIN_SFTP) << "Invalid packet received.";
|
|
for (QString missingField : (expectedFields - receivedFields)) {
|
|
qCWarning(KDECONNECT_PLUGIN_SFTP) << "Field" << missingField << "missing from packet.";
|
|
}
|
|
return false;
|
|
}
|
|
if (np.has(QStringLiteral("errorMessage"))) {
|
|
qCWarning(KDECONNECT_PLUGIN_SFTP) << np.get<QString>(QStringLiteral("errorMessage"));
|
|
return false;
|
|
}
|
|
|
|
QString path;
|
|
if (np.has(QStringLiteral("multiPaths"))) {
|
|
path = QStringLiteral("/");
|
|
} else {
|
|
path = np.get<QString>(QStringLiteral("path"));
|
|
}
|
|
|
|
QString url_string = QStringLiteral("sftp://%1:%2@%3:%4%5")
|
|
.arg(np.get<QString>(QStringLiteral("user")),
|
|
np.get<QString>(QStringLiteral("password")),
|
|
np.get<QString>(QStringLiteral("ip")),
|
|
np.get<QString>(QStringLiteral("port")),
|
|
path);
|
|
static QRegularExpression uriRegex(QStringLiteral("^sftp://kdeconnect:\\w+@\\d+.\\d+.\\d+.\\d+:17[3-6][0-9]/$"));
|
|
if (!uriRegex.match(url_string).hasMatch()) {
|
|
qCWarning(KDECONNECT_PLUGIN_SFTP) << "Invalid URL invoked. If the problem persists, contact the developers.";
|
|
}
|
|
|
|
if (!QDesktopServices::openUrl(QUrl(url_string))) {
|
|
QMessageBox::critical(nullptr,
|
|
i18n("KDE Connect"),
|
|
i18n("Cannot handle SFTP protocol. Apologies for the inconvenience"),
|
|
QMessageBox::Abort,
|
|
QMessageBox::Abort);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
#include "sftpplugin-win.moc"
|