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

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 "channelgroupbasejob.h"
0010 #include "librestapi_private_export.h"
0011 namespace RocketChatRestApi
0012 {
0013 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT SetChannelTypeJob : public ChannelGroupBaseJob
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit SetChannelTypeJob(QObject *parent = nullptr);
0018     ~SetChannelTypeJob() override;
0019 
0020     enum GroupType {
0021         Unknown = 0,
0022         Private,
0023         Public,
0024     };
0025 
0026     [[nodiscard]] bool start() override;
0027     [[nodiscard]] bool requireHttpAuthentication() const override;
0028     [[nodiscard]] bool canStart() const override;
0029 
0030     [[nodiscard]] QNetworkRequest request() const override;
0031 
0032     [[nodiscard]] QJsonDocument json() const;
0033 
0034     [[nodiscard]] GroupType type() const;
0035     void setType(GroupType type);
0036 
0037 Q_SIGNALS:
0038     void setGroupTypeDone();
0039 
0040 private:
0041     Q_DISABLE_COPY(SetChannelTypeJob)
0042     void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0043     GroupType mType = Unknown;
0044 };
0045 }