File indexing completed on 2025-01-12 04:33:55
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 namespace RocketChatRestApi 0013 { 0014 class LIBROCKETCHATRESTAPI_QT_EXPORT SearchMessageJob : public RestApiAbstractJob 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit SearchMessageJob(QObject *parent = nullptr); 0019 ~SearchMessageJob() override; 0020 0021 [[nodiscard]] bool requireHttpAuthentication() const override; 0022 0023 [[nodiscard]] bool start() override; 0024 0025 [[nodiscard]] QNetworkRequest request() const override; 0026 0027 [[nodiscard]] QString roomId() const; 0028 void setRoomId(const QString &roomId); 0029 0030 [[nodiscard]] QString searchText() const; 0031 void setSearchText(const QString &searchText); 0032 0033 [[nodiscard]] bool canStart() const override; 0034 0035 [[nodiscard]] int count() const; 0036 void setCount(int count); 0037 0038 [[nodiscard]] bool useRegularExpression() const; 0039 void setUseRegularExpression(bool useRegularExpression); 0040 0041 Q_SIGNALS: 0042 void searchMessageDone(const QJsonObject &obj); 0043 0044 private: 0045 Q_DISABLE_COPY(SearchMessageJob) 0046 LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override; 0047 [[nodiscard]] LIBROCKETCHATRESTAPI_QT_NO_EXPORT QString convertSearchText() const; 0048 QString mRoomId; 0049 QString mSearchText; 0050 bool mUseRegularExpression = false; 0051 int mCount = -1; 0052 }; 0053 }