kdeconnect-kde/plugins/sftp/sftpplugin-win.h
2020-08-17 09:48:10 +00:00

44 lines
1.4 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
*/
#ifndef SFTPPLUGIN_WIN_H
#define SFTPPLUGIN_WIN_H
#include <core/kdeconnectplugin.h>
#include <core/device.h>
#define PACKET_TYPE_SFTP_REQUEST QStringLiteral("kdeconnect.sftp.request")
static const QSet<QString> expectedFields = QSet<QString>() << QStringLiteral("ip")
<< QStringLiteral("port")
<< QStringLiteral("user")
<< QStringLiteral("password")
<< QStringLiteral("path");
;
class SftpPlugin
: public KdeConnectPlugin
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.sftp")
public:
explicit SftpPlugin(QObject* parent, const QVariantList& args);
~SftpPlugin() override;
bool receivePacket(const NetworkPacket& np) override;
void connected() override {}
QString dbusPath() const override { return QStringLiteral("/modules/kdeconnect/devices/") + deviceId + QStringLiteral("/sftp"); }
public Q_SLOTS:
Q_SCRIPTABLE bool startBrowsing();
private:
QString deviceId; //Storing it to avoid accessing device() from the destructor which could cause a crash
};
#endif