mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#ifndef PROPAGATEDOWNLOADENCRYPTED_H
|
|
#define PROPAGATEDOWNLOADENCRYPTED_H
|
|
|
|
#include <QObject>
|
|
#include <QFileInfo>
|
|
|
|
#include "syncfileitem.h"
|
|
#include "owncloudpropagator.h"
|
|
#include "clientsideencryption.h"
|
|
#include "foldermetadata.h"
|
|
|
|
class QJsonDocument;
|
|
|
|
namespace OCC {
|
|
class EncryptedFolderMetadataHandler;
|
|
class PropagateDownloadEncrypted : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
PropagateDownloadEncrypted(OwncloudPropagator *propagator, const QString &localParentPath, SyncFileItemPtr item, QObject *parent = nullptr);
|
|
void start();
|
|
bool decryptFile(QFile& tmpFile);
|
|
[[nodiscard]] QString errorString() const;
|
|
|
|
private slots:
|
|
void slotFetchMetadataJobFinished(int statusCode, const QString &message);
|
|
|
|
signals:
|
|
void fileMetadataFound();
|
|
void failed();
|
|
|
|
void decryptionFinished();
|
|
|
|
private:
|
|
OwncloudPropagator *_propagator;
|
|
QString _localParentPath;
|
|
SyncFileItemPtr _item;
|
|
QFileInfo _info;
|
|
FolderMetadata::EncryptedFile _encryptedInfo;
|
|
QString _errorString;
|
|
QString _remoteParentPath;
|
|
QString _parentPathInDb;
|
|
|
|
QScopedPointer<EncryptedFolderMetadataHandler> _encryptedFolderMetadataHandler;
|
|
};
|
|
|
|
}
|
|
#endif
|