File indexing completed on 2024-12-22 04:45:19

0001 /*
0002    SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "deletedmjob.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 DeleteDmJob::DeleteDmJob(QObject *parent)
0016     : ChannelGroupBaseJob(parent)
0017 {
0018 }
0019 
0020 DeleteDmJob::~DeleteDmJob() = default;
0021 
0022 bool DeleteDmJob::start()
0023 {
0024     if (!canStart()) {
0025         deleteLater();
0026         return false;
0027     }
0028     addStartRestApiInfo("DeleteDmJob::start");
0029     submitPostRequest(json());
0030 
0031     return true;
0032 }
0033 
0034 void DeleteDmJob::onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson)
0035 {
0036     const QJsonObject replyObject = replyJson.object();
0037 
0038     if (replyObject[QLatin1String("success")].toBool()) {
0039         addLoggerInfo(QByteArrayLiteral("DeleteDmJob success: ") + replyJson.toJson(QJsonDocument::Indented));
0040         qDebug() << " replyObject " << replyObject;
0041         Q_EMIT deleteDirectMessagesDone(channelGroupInfo().identifier);
0042     } else {
0043         emitFailedMessage(replyErrorString, replyObject);
0044         addLoggerWarning(QByteArrayLiteral("DeleteDmJob problem: ") + replyJson.toJson(QJsonDocument::Indented));
0045     }
0046 }
0047 
0048 bool DeleteDmJob::requireHttpAuthentication() const
0049 {
0050     return true;
0051 }
0052 
0053 bool DeleteDmJob::canStart() const
0054 {
0055     if (!hasIdentifier()) {
0056         qCWarning(ROCKETCHATQTRESTAPI_LOG) << "DeleteDmJob: RoomId and RoomName are empty";
0057         return false;
0058     }
0059     if (!RestApiAbstractJob::canStart()) {
0060         return false;
0061     }
0062     return true;
0063 }
0064 
0065 QJsonDocument DeleteDmJob::json() const
0066 {
0067     QJsonObject jsonObj;
0068     generateJson(jsonObj);
0069 
0070     const QJsonDocument postData = QJsonDocument(jsonObj);
0071     return postData;
0072 }
0073 
0074 QNetworkRequest DeleteDmJob::request() const
0075 {
0076     const QUrl url = mRestApiMethod->generateUrl(RestApiUtil::RestApiUrlType::ImDelete);
0077     QNetworkRequest request(url);
0078     addAuthRawHeader(request);
0079     addRequestAttribute(request);
0080     return request;
0081 }
0082 
0083 #include "moc_deletedmjob.cpp"