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

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 namespace RocketChatRestApi
0012 {
0013 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT ChannelAddLeaderJob : public ChannelGroupBaseJob
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit ChannelAddLeaderJob(QObject *parent = nullptr);
0018     ~ChannelAddLeaderJob() override;
0019 
0020     [[nodiscard]] bool start() override;
0021     [[nodiscard]] bool requireHttpAuthentication() const override;
0022     [[nodiscard]] bool canStart() const override;
0023 
0024     [[nodiscard]] QNetworkRequest request() const override;
0025 
0026     [[nodiscard]] QJsonDocument json() const;
0027 
0028     [[nodiscard]] QString addLeaderUserId() const;
0029     void setAddLeaderUserId(const QString &addLeaderUserId);
0030 
0031 Q_SIGNALS:
0032     void addLeaderDone();
0033 
0034 private:
0035     Q_DISABLE_COPY(ChannelAddLeaderJob)
0036     void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0037     QString mAddLeaderUserId;
0038 };
0039 }