File indexing completed on 2024-05-05 17:00:22

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 class QNetworkRequest;
0012 namespace RocketChatRestApi
0013 {
0014 class LIBROCKETCHATRESTAPI_QT_EXPORT ServerInfoJob : public RestApiAbstractJob
0015 {
0016     Q_OBJECT
0017 public:
0018     explicit ServerInfoJob(QObject *parent = nullptr);
0019     ~ServerInfoJob() override;
0020 
0021     [[nodiscard]] bool start() override;
0022 
0023     [[nodiscard]] QNetworkRequest request() const override;
0024 
0025     [[nodiscard]] bool requireHttpAuthentication() const override;
0026 
0027     [[nodiscard]] bool useDeprecatedVersion() const;
0028 
0029     void setUseDeprecatedVersion(bool useDeprecatedVersion);
0030 
0031     [[nodiscard]] bool forceRequiresAuthentication() const;
0032     void setForceRequiresAuthentication(bool forceRequiresAuthentication);
0033 
0034 Q_SIGNALS:
0035     void serverInfoDone(const QString &versionInfo, const QJsonObject &obj);
0036     void serverInfoFailed(bool useDeprectedVersion);
0037 
0038 private:
0039     Q_DISABLE_COPY(ServerInfoJob)
0040     LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override;
0041     bool mUseDeprecatedVersion = true;
0042     bool mForceRequiresAuthentication = false;
0043 };
0044 }