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

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 #include "librestapi_private_export.h"
0009 #include "restapiabstractjob.h"
0010 namespace RocketChatRestApi
0011 {
0012 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT ReactOnMessageJob : public RestApiAbstractJob
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit ReactOnMessageJob(QObject *parent = nullptr);
0017     ~ReactOnMessageJob() override;
0018 
0019     [[nodiscard]] bool start() override;
0020     [[nodiscard]] bool requireHttpAuthentication() const override;
0021     [[nodiscard]] bool canStart() const override;
0022 
0023     [[nodiscard]] QString messageId() const;
0024     void setMessageId(const QString &msgId);
0025 
0026     [[nodiscard]] QNetworkRequest request() const override;
0027 
0028     [[nodiscard]] QJsonDocument json() const;
0029 
0030     [[nodiscard]] QString emoji() const;
0031     void setEmoji(const QString &emoji);
0032 
0033     void setShouldReact(bool added);
0034     [[nodiscard]] bool shouldReact() const;
0035 
0036 protected:
0037     [[nodiscard]] QString errorMessage(const QString &str, const QJsonObject &details) override;
0038 
0039 Q_SIGNALS:
0040     void reactOnMessageDone();
0041 
0042 private:
0043     Q_DISABLE_COPY(ReactOnMessageJob)
0044     void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0045     QString mMessageId;
0046     QString mEmoji;
0047     bool mAddReact = true;
0048 };
0049 }