12f0d51c0c
- convert qt connect calls to use function pointers instead of the signal/slot macros wherever practical (UI classes were mostly left alone, target was tasks and processes) - give signals an explicit receivers to use the static method over the instance method wherever practical - ensure networks tasks are using the `errorOccured` signal added in Qt5.15 over the deprecated `error` signal - ensure all networks tasks have an sslErrors signal connected - add seemingly missing `MinecraftAccount::authSucceeded` connection for `MSAInteractive` login flow Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
132 lines
4.6 KiB
C++
132 lines
4.6 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* PolyMC - Minecraft Launcher
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* This file incorporates work covered by the following copyright and
|
|
* permission notice:
|
|
*
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ImgurAlbumCreation.h"
|
|
|
|
#include <QNetworkRequest>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QUrl>
|
|
#include <QStringList>
|
|
#include <QDebug>
|
|
|
|
#include "BuildConfig.h"
|
|
#include "Application.h"
|
|
|
|
ImgurAlbumCreation::ImgurAlbumCreation(QList<ScreenShot::Ptr> screenshots) : NetAction(), m_screenshots(screenshots)
|
|
{
|
|
m_url = BuildConfig.IMGUR_BASE_URL + "album.json";
|
|
m_state = State::Inactive;
|
|
}
|
|
|
|
void ImgurAlbumCreation::executeTask()
|
|
{
|
|
m_state = State::Running;
|
|
QNetworkRequest request(m_url);
|
|
request.setHeader(QNetworkRequest::UserAgentHeader, APPLICATION->getUserAgentUncached().toUtf8());
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
|
request.setRawHeader("Authorization", QString("Client-ID %1").arg(BuildConfig.IMGUR_CLIENT_ID).toStdString().c_str());
|
|
request.setRawHeader("Accept", "application/json");
|
|
|
|
QStringList hashes;
|
|
for (auto shot : m_screenshots)
|
|
{
|
|
hashes.append(shot->m_imgurDeleteHash);
|
|
}
|
|
|
|
const QByteArray data = "deletehashes=" + hashes.join(',').toUtf8() + "&title=Minecraft%20Screenshots&privacy=hidden";
|
|
|
|
QNetworkReply *rep = APPLICATION->network()->post(request, data);
|
|
|
|
m_reply.reset(rep);
|
|
connect(rep, &QNetworkReply::uploadProgress, this, &ImgurAlbumCreation::downloadProgress);
|
|
connect(rep, &QNetworkReply::finished, this, &ImgurAlbumCreation::downloadFinished);
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) // QNetworkReply::errorOccurred added in 5.15
|
|
connect(rep, &QNetworkReply::errorOccurred, this, &ImgurAlbumCreation::downloadError);
|
|
#else
|
|
connect(rep, QOverload<QNetworkReply::NetworkError>::of(&QNetworkReply::error), this, &ImgurAlbumCreation::downloadError);
|
|
#endif
|
|
connect(rep, &QNetworkReply::sslErrors, this, &ImgurAlbumCreation::sslErrors);
|
|
}
|
|
|
|
void ImgurAlbumCreation::downloadError(QNetworkReply::NetworkError error)
|
|
{
|
|
qDebug() << m_reply->errorString();
|
|
m_state = State::Failed;
|
|
}
|
|
|
|
void ImgurAlbumCreation::downloadFinished()
|
|
{
|
|
if (m_state != State::Failed)
|
|
{
|
|
QByteArray data = m_reply->readAll();
|
|
m_reply.reset();
|
|
QJsonParseError jsonError;
|
|
QJsonDocument doc = QJsonDocument::fromJson(data, &jsonError);
|
|
if (jsonError.error != QJsonParseError::NoError)
|
|
{
|
|
qDebug() << jsonError.errorString();
|
|
emitFailed();
|
|
return;
|
|
}
|
|
auto object = doc.object();
|
|
if (!object.value("success").toBool())
|
|
{
|
|
qDebug() << doc.toJson();
|
|
emitFailed();
|
|
return;
|
|
}
|
|
m_deleteHash = object.value("data").toObject().value("deletehash").toString();
|
|
m_id = object.value("data").toObject().value("id").toString();
|
|
m_state = State::Succeeded;
|
|
emit succeeded();
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
qDebug() << m_reply->readAll();
|
|
m_reply.reset();
|
|
emitFailed();
|
|
return;
|
|
}
|
|
}
|
|
|
|
void ImgurAlbumCreation::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
|
|
{
|
|
setProgress(bytesReceived, bytesTotal);
|
|
emit progress(bytesReceived, bytesTotal);
|
|
}
|