File indexing completed on 2025-02-02 04:51:45
0001 /* 0002 SPDX-FileCopyrightText: 2022-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 namespace RocketChatRestApi 0012 { 0013 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT RoomsDeleteJob : public RestApiAbstractJob 0014 { 0015 Q_OBJECT 0016 0017 // Since rocketchat 0.64 0018 public: 0019 explicit RoomsDeleteJob(QObject *parent = nullptr); 0020 ~RoomsDeleteJob() override; 0021 0022 [[nodiscard]] bool start() override; 0023 [[nodiscard]] bool requireHttpAuthentication() const override; 0024 [[nodiscard]] bool canStart() const override; 0025 [[nodiscard]] QNetworkRequest request() const override; 0026 0027 [[nodiscard]] QJsonDocument json() const; 0028 0029 [[nodiscard]] QString roomId() const; 0030 void setRoomId(const QString &roomId); 0031 0032 Q_SIGNALS: 0033 void roomDeleteDone(); 0034 0035 private: 0036 Q_DISABLE_COPY(RoomsDeleteJob) 0037 void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override; 0038 QString mRoomId; 0039 }; 0040 }