File indexing completed on 2025-02-02 04:51:45

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 "librestapi_private_export.h"
0010 #include "restapiabstractjob.h"
0011 
0012 namespace RocketChatRestApi
0013 {
0014 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT GetRoomsJob : public RestApiAbstractJob
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit GetRoomsJob(QObject *parent = nullptr);
0019     ~GetRoomsJob() override;
0020 
0021     [[nodiscard]] bool requireHttpAuthentication() const override;
0022 
0023     [[nodiscard]] bool start() override;
0024 
0025     [[nodiscard]] QNetworkRequest request() const override;
0026 
0027 Q_SIGNALS:
0028     void getRoomsDone(const QJsonObject &obj);
0029 
0030 private:
0031     Q_DISABLE_COPY(GetRoomsJob)
0032     LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0033     // TODO add updatedSince
0034 };
0035 }