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

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 "librocketchatrestapi-qt_export.h"
0010 #include "restapiabstractjob.h"
0011 
0012 #include "createchannelteaminfo.h"
0013 namespace RocketChatRestApi
0014 {
0015 class LIBROCKETCHATRESTAPI_QT_EXPORT CreateGroupsJob : public RestApiAbstractJob
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit CreateGroupsJob(QObject *parent = nullptr);
0020     ~CreateGroupsJob() override;
0021 
0022     [[nodiscard]] bool start() override;
0023     [[nodiscard]] bool requireHttpAuthentication() const override;
0024     [[nodiscard]] bool canStart() const override;
0025 
0026     [[nodiscard]] QNetworkRequest request() const override;
0027 
0028     [[nodiscard]] QJsonDocument json() const;
0029 
0030     [[nodiscard]] CreateChannelTeamInfo createGroupsInfo() const;
0031     void setCreateGroupsInfo(const CreateChannelTeamInfo &createGroupsInfo);
0032 
0033 Q_SIGNALS:
0034     void createGroupsDone(const QJsonObject &reply);
0035 
0036 private:
0037     Q_DISABLE_COPY(CreateGroupsJob)
0038     LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0039     CreateChannelTeamInfo mCreateGroupInfo;
0040     // {"name":"teams-test-room2","members":[],"readOnly":false,"extraData":{"description":"","broadcast":false,"encrypted":false,"teamId":"607fb34ee8da65ad4f476487"}
0041     // TODO add extraData
0042 };
0043 }