mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 20:28:57 +03:00
565a5f0999
ran run-clang-tidy-14.py -header-filter='.*' -checks='-*,modernize-use-nodiscard' -fix under linux with most part of our code covered Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) by Oleksandr Zolotov <alex@nextcloud.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QNetworkReply>
|
|
|
|
#include "syncfileitem.h"
|
|
|
|
namespace OCC {
|
|
|
|
class OwncloudPropagator;
|
|
/**
|
|
* @brief The AbstractPropagateRemoteDeleteEncrypted class is the base class for Propagate Remote Delete Encrypted jobs
|
|
* @ingroup libsync
|
|
*/
|
|
class AbstractPropagateRemoteDeleteEncrypted : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
AbstractPropagateRemoteDeleteEncrypted(OwncloudPropagator *propagator, SyncFileItemPtr item, QObject *parent);
|
|
~AbstractPropagateRemoteDeleteEncrypted() override = default;
|
|
|
|
[[nodiscard]] QNetworkReply::NetworkError networkError() const;
|
|
[[nodiscard]] QString errorString() const;
|
|
|
|
virtual void start() = 0;
|
|
|
|
signals:
|
|
void finished(bool success);
|
|
|
|
protected:
|
|
void storeFirstError(QNetworkReply::NetworkError err);
|
|
void storeFirstErrorString(const QString &errString);
|
|
|
|
void startLsColJob(const QString &path);
|
|
void slotFolderEncryptedIdReceived(const QStringList &list);
|
|
void slotTryLock(const QByteArray &folderId);
|
|
void slotFolderLockedSuccessfully(const QByteArray &folderId, const QByteArray &token);
|
|
virtual void slotFolderUnLockedSuccessfully(const QByteArray &folderId);
|
|
virtual void slotFolderEncryptedMetadataReceived(const QJsonDocument &json, int statusCode) = 0;
|
|
void slotDeleteRemoteItemFinished();
|
|
|
|
void deleteRemoteItem(const QString &filename);
|
|
void unlockFolder();
|
|
void taskFailed();
|
|
|
|
protected:
|
|
OwncloudPropagator *_propagator = nullptr;
|
|
SyncFileItemPtr _item;
|
|
QByteArray _folderToken;
|
|
QByteArray _folderId;
|
|
bool _folderLocked = false;
|
|
bool _isTaskFailed = false;
|
|
QNetworkReply::NetworkError _networkError = QNetworkReply::NoError;
|
|
QString _errorString;
|
|
};
|
|
|
|
}
|