pollymc/launcher/screenshots/ImgurAlbumCreation.cpp

132 lines
4.6 KiB
C++
Raw Normal View History

// 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.
*/
2014-02-24 16:00:27 +05:30
#include "ImgurAlbumCreation.h"
#include <QNetworkRequest>
#include <QJsonDocument>
#include <QJsonObject>
#include <QUrl>
2014-06-28 20:45:53 +05:30
#include <QStringList>
#include <QDebug>
2014-02-24 16:00:27 +05:30
#include "BuildConfig.h"
#include "Application.h"
2014-02-24 16:00:27 +05:30
ImgurAlbumCreation::ImgurAlbumCreation(QList<ScreenShot::Ptr> screenshots) : NetAction(), m_screenshots(screenshots)
2014-02-24 16:00:27 +05:30
{
m_url = BuildConfig.IMGUR_BASE_URL + "album.json";
m_state = State::Inactive;
2014-02-24 16:00:27 +05:30
}
void ImgurAlbumCreation::executeTask()
2014-02-24 16:00:27 +05:30
{
m_state = State::Running;
2018-07-15 18:21:05 +05:30
QNetworkRequest request(m_url);
2022-06-04 13:03:17 +05:30
request.setHeader(QNetworkRequest::UserAgentHeader, APPLICATION->getUserAgentUncached().toUtf8());
2018-07-15 18:21:05 +05:30
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
request.setRawHeader("Authorization", QString("Client-ID %1").arg(BuildConfig.IMGUR_CLIENT_ID).toStdString().c_str());
2018-07-15 18:21:05 +05:30
request.setRawHeader("Accept", "application/json");
2014-02-24 16:00:27 +05:30
2018-07-15 18:21:05 +05:30
QStringList hashes;
for (auto shot : m_screenshots)
{
hashes.append(shot->m_imgurDeleteHash);
}
2014-02-24 16:00:27 +05:30
2018-07-15 18:21:05 +05:30
const QByteArray data = "deletehashes=" + hashes.join(',').toUtf8() + "&title=Minecraft%20Screenshots&privacy=hidden";
2014-02-24 16:00:27 +05:30
QNetworkReply *rep = APPLICATION->network()->post(request, data);
2014-02-24 16:00:27 +05:30
2018-07-15 18:21:05 +05:30
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);
2014-02-24 16:00:27 +05:30
}
2014-02-24 16:00:27 +05:30
void ImgurAlbumCreation::downloadError(QNetworkReply::NetworkError error)
{
2018-07-15 18:21:05 +05:30
qDebug() << m_reply->errorString();
m_state = State::Failed;
2014-02-24 16:00:27 +05:30
}
2014-02-24 16:00:27 +05:30
void ImgurAlbumCreation::downloadFinished()
{
if (m_state != State::Failed)
2018-07-15 18:21:05 +05:30
{
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();
2018-07-15 18:21:05 +05:30
return;
}
auto object = doc.object();
if (!object.value("success").toBool())
{
qDebug() << doc.toJson();
emitFailed();
2018-07-15 18:21:05 +05:30
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();
2018-07-15 18:21:05 +05:30
return;
}
else
{
qDebug() << m_reply->readAll();
m_reply.reset();
emitFailed();
2018-07-15 18:21:05 +05:30
return;
}
2014-02-24 16:00:27 +05:30
}
2014-02-24 16:00:27 +05:30
void ImgurAlbumCreation::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
{
setProgress(bytesReceived, bytesTotal);
emit progress(bytesReceived, bytesTotal);
2014-02-24 16:00:27 +05:30
}