File indexing completed on 2024-12-22 04:45:21

0001 /*
0002    SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "channelgroupbasejob.h"
0010 #include "librestapi_private_export.h"
0011 
0012 namespace RocketChatRestApi
0013 {
0014 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT GroupRemoveOwnerJob : public ChannelGroupBaseJob
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit GroupRemoveOwnerJob(QObject *parent = nullptr);
0019     ~GroupRemoveOwnerJob() override;
0020 
0021     [[nodiscard]] bool start() override;
0022     [[nodiscard]] bool requireHttpAuthentication() const override;
0023     [[nodiscard]] bool canStart() const override;
0024 
0025     [[nodiscard]] QNetworkRequest request() const override;
0026 
0027     [[nodiscard]] QJsonDocument json() const;
0028 
0029     [[nodiscard]] QString removeUserId() const;
0030     void setRemoveUserId(const QString &removeUserId);
0031 
0032 Q_SIGNALS:
0033     void groupRemoveOwnerDone();
0034 
0035 private:
0036     Q_DISABLE_COPY(GroupRemoveOwnerJob)
0037     void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0038     QString mRemoveUserId;
0039 };
0040 }