File indexing completed on 2024-06-02 05:07:15

0001 /*
0002    SPDX-FileCopyrightText: 2018-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "librocketchatrestapi-qt_export.h"
0010 #include "restapiabstractjob.h"
0011 
0012 #include <QDateTime>
0013 namespace RocketChatRestApi
0014 {
0015 class LIBROCKETCHATRESTAPI_QT_EXPORT PermissionsListAllJob : public RestApiAbstractJob
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit PermissionsListAllJob(QObject *parent = nullptr);
0020     ~PermissionsListAllJob() override;
0021 
0022     [[nodiscard]] bool requireHttpAuthentication() const override;
0023 
0024     [[nodiscard]] bool start() override;
0025 
0026     [[nodiscard]] QNetworkRequest request() const override;
0027 
0028     [[nodiscard]] const QDateTime &updatedSince() const;
0029     void setUpdatedSince(const QDateTime &newUpdatedSince);
0030 
0031 Q_SIGNALS:
0032     void permissionListAllDone(const QJsonObject &obj);
0033 
0034 private:
0035     Q_DISABLE_COPY(PermissionsListAllJob)
0036     LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0037     QDateTime mUpdatedSince;
0038 };
0039 }