File indexing completed on 2024-12-22 04:45:13
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 namespace RocketChatRestApi 0012 { 0013 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT TranslateMessageJob : public RestApiAbstractJob 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit TranslateMessageJob(QObject *parent = nullptr); 0018 ~TranslateMessageJob() override; 0019 0020 [[nodiscard]] bool start() override; 0021 [[nodiscard]] bool requireHttpAuthentication() const override; 0022 [[nodiscard]] bool canStart() const override; 0023 [[nodiscard]] QNetworkRequest request() const override; 0024 0025 [[nodiscard]] QJsonDocument json() const; 0026 0027 [[nodiscard]] QString messageId() const; 0028 void setMessageId(const QString &messageId); 0029 0030 [[nodiscard]] QString targetLanguage() const; 0031 void setTargetLanguage(const QString &targetLanguage); 0032 0033 Q_SIGNALS: 0034 void translateMessageDone(); 0035 0036 private: 0037 Q_DISABLE_COPY(TranslateMessageJob) 0038 void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override; 0039 QString mMessageId; 0040 QString mTargetLanguage; 0041 }; 0042 }