File indexing completed on 2024-12-22 04:45:15
0001 /* 0002 SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "channelinfojob.h" 0008 0009 #include "restapimethod.h" 0010 #include "rocketchatqtrestapi_debug.h" 0011 #include <QJsonDocument> 0012 #include <QJsonObject> 0013 #include <QNetworkReply> 0014 using namespace RocketChatRestApi; 0015 ChannelInfoJob::ChannelInfoJob(QObject *parent) 0016 : ChannelGroupBaseJob(parent) 0017 { 0018 } 0019 0020 ChannelInfoJob::~ChannelInfoJob() = default; 0021 0022 bool ChannelInfoJob::start() 0023 { 0024 if (!canStart()) { 0025 deleteLater(); 0026 return false; 0027 } 0028 addStartRestApiInfo("ChannelInfoJob::start: "); 0029 submitGetRequest(); 0030 0031 return true; 0032 } 0033 0034 void ChannelInfoJob::onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) 0035 { 0036 const QJsonObject replyObject = replyJson.object(); 0037 0038 if (replyObject[QLatin1String("success")].toBool()) { 0039 addLoggerInfo(QByteArrayLiteral("channelInfoDone success: ") + replyJson.toJson(QJsonDocument::Indented)); 0040 Q_EMIT channelInfoDone(replyObject, channelGroupInfo()); 0041 } else { 0042 emitFailedMessage(replyErrorString, replyObject); 0043 addLoggerWarning(QByteArrayLiteral("channelInfoDone problem: ") + replyJson.toJson(QJsonDocument::Indented)); 0044 } 0045 } 0046 0047 bool ChannelInfoJob::requireHttpAuthentication() const 0048 { 0049 return true; 0050 } 0051 0052 bool ChannelInfoJob::canStart() const 0053 { 0054 if (!hasIdentifier()) { 0055 qCWarning(ROCKETCHATQTRESTAPI_LOG) << "ChannelInfoJob: RoomId and RoomName are empty"; 0056 return false; 0057 } 0058 if (!RestApiAbstractJob::canStart()) { 0059 return false; 0060 } 0061 return true; 0062 } 0063 0064 QNetworkRequest ChannelInfoJob::request() const 0065 { 0066 QUrl url = mRestApiMethod->generateUrl(RestApiUtil::RestApiUrlType::ChannelsInfo); 0067 addQueryItem(url); 0068 QNetworkRequest request(url); 0069 addAuthRawHeader(request); 0070 addRequestAttribute(request, false); 0071 0072 return request; 0073 } 0074 0075 #include "moc_channelinfojob.cpp"