/plugins/sftp/sftpplugin-win.cpp
https://github.com/KDE/kdeconnect-kde · C++ · 78 lines · 61 code · 12 blank · 5 comment · 7 complexity · 49dc47a2bfd815651457de9c2249c06d MD5 · raw file
- /**
- * 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 <QDir>
- #include <QDebug>
- #include <QProcess>
- #include <QMessageBox>
- #include <QDesktopServices>
- #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)
- {
- if (!(expectedFields - np.body().keys().toSet()).isEmpty()) {
- qCWarning(KDECONNECT_PLUGIN_SFTP) << "Invalid packet received.";
- for (QString missingField: (expectedFields - np.body().keys().toSet()).toList()) {
- 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"