File indexing completed on 2024-12-22 04:45:14
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 "librestapi_private_export.h" 0010 #include "restapiabstractjob.h" 0011 class QNetworkRequest; 0012 namespace RocketChatRestApi 0013 { 0014 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT ChannelGetAllUserMentionsJob : public RestApiAbstractJob 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit ChannelGetAllUserMentionsJob(QObject *parent = nullptr); 0019 ~ChannelGetAllUserMentionsJob() override; 0020 0021 [[nodiscard]] bool start() override; 0022 0023 [[nodiscard]] bool canStart() const override; 0024 0025 [[nodiscard]] QNetworkRequest request() const override; 0026 0027 [[nodiscard]] bool requireHttpAuthentication() const override; 0028 0029 [[nodiscard]] QString roomId() const; 0030 void setRoomId(const QString &roomId); 0031 0032 [[nodiscard]] bool hasQueryParameterSupport() const override; 0033 0034 Q_SIGNALS: 0035 void channelGetAllUserMentionsDone(const QJsonObject &obj, const QString &roomId); 0036 0037 private: 0038 Q_DISABLE_COPY(ChannelGetAllUserMentionsJob) 0039 void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override; 0040 QString mRoomId; 0041 }; 0042 }