kdeconnect-kde/plugins/sftp/sftpplugin-win.h

37 lines
1.1 KiB
C
Raw Normal View History

2019-08-22 03:21:32 +01:00
/**
* SPDX-FileCopyrightText: 2019 Piyush Aggarwal <piyushaggarwal002@gmail.com>
2019-08-22 03:21:32 +01:00
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2019-08-22 03:21:32 +01:00
*/
#pragma once
2019-08-22 03:21:32 +01:00
#include <core/device.h>
#include <core/kdeconnectplugin.h>
2019-08-22 03:21:32 +01:00
#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");
2019-08-22 03:21:32 +01:00
;
class SftpPlugin : public KdeConnectPlugin
2019-08-22 03:21:32 +01:00
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.sftp")
public:
explicit SftpPlugin(QObject *parent, const QVariantList &args);
2019-08-22 03:21:32 +01:00
bool receivePacket(const NetworkPacket &np) override;
QString dbusPath() const override
{
return QStringLiteral("/modules/kdeconnect/devices/") + deviceId + QStringLiteral("/sftp");
}
2019-08-22 03:21:32 +01:00
public Q_SLOTS:
Q_SCRIPTABLE bool startBrowsing();
private:
QString deviceId; // Storing it to avoid accessing device() from the destructor which could cause a crash
2019-08-22 03:21:32 +01:00
};