2022-05-26 23:18:54 +02:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 19:41:47 +02:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-26 23:18:54 +02:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2023-09-05 00:18:36 +03:00
|
|
|
* Copyright (c) 2023 Trial97 <alexandru.tripon97@gmail.com>
|
2022-05-26 23:18:54 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-05-12 16:51:25 -04:00
|
|
|
#include "SkinUpload.h"
|
2021-11-21 23:21:12 +01:00
|
|
|
|
2016-05-12 16:51:25 -04:00
|
|
|
#include <QHttpMultiPart>
|
2021-11-21 23:21:12 +01:00
|
|
|
|
2023-09-05 00:18:36 +03:00
|
|
|
#include "FileSystem.h"
|
2023-09-01 21:23:51 +03:00
|
|
|
#include "net/ByteArraySink.h"
|
|
|
|
#include "net/StaticHeaderProxy.h"
|
2016-05-12 16:51:25 -04:00
|
|
|
|
2023-09-05 00:18:36 +03:00
|
|
|
SkinUpload::SkinUpload(QString token, SkinModel* skin) : NetRequest(), m_skin(skin), m_token(token)
|
2023-08-02 18:35:35 +02:00
|
|
|
{
|
2023-09-05 00:18:36 +03:00
|
|
|
logCat = taskUploadLogC;
|
2023-09-01 21:23:51 +03:00
|
|
|
};
|
2016-05-12 16:51:25 -04:00
|
|
|
|
2023-09-01 21:23:51 +03:00
|
|
|
QNetworkReply* SkinUpload::getReply(QNetworkRequest& request)
|
2016-05-12 16:51:25 -04:00
|
|
|
{
|
2023-08-02 18:35:35 +02:00
|
|
|
QHttpMultiPart* multiPart = new QHttpMultiPart(QHttpMultiPart::FormDataType);
|
2016-05-12 16:51:25 -04:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
QHttpPart skin;
|
|
|
|
skin.setHeader(QNetworkRequest::ContentTypeHeader, QVariant("image/png"));
|
2021-02-10 03:32:17 +01:00
|
|
|
skin.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"file\"; filename=\"skin.png\""));
|
2023-09-05 00:18:36 +03:00
|
|
|
|
|
|
|
skin.setBody(FS::read(m_skin->getPath()));
|
2016-05-12 16:51:25 -04:00
|
|
|
|
2021-02-10 03:32:17 +01:00
|
|
|
QHttpPart model;
|
|
|
|
model.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"variant\""));
|
2023-09-05 00:18:36 +03:00
|
|
|
model.setBody(m_skin->getModelString().toUtf8());
|
2021-02-10 03:32:17 +01:00
|
|
|
|
2018-07-15 14:51:05 +02:00
|
|
|
multiPart->append(skin);
|
2021-02-10 03:32:17 +01:00
|
|
|
multiPart->append(model);
|
2018-07-15 14:51:05 +02:00
|
|
|
setStatus(tr("Uploading skin"));
|
2023-09-01 21:23:51 +03:00
|
|
|
return m_network->post(request, multiPart);
|
2016-05-12 16:51:25 -04:00
|
|
|
}
|
|
|
|
|
2023-09-01 21:23:51 +03:00
|
|
|
void SkinUpload::init()
|
2016-05-12 16:51:25 -04:00
|
|
|
{
|
2023-09-01 21:23:51 +03:00
|
|
|
addHeaderProxy(new Net::StaticHeaderProxy(QList<Net::HeaderPair>{
|
|
|
|
{ "Authorization", QString("Bearer %1").arg(m_token).toLocal8Bit() },
|
|
|
|
}));
|
2016-05-12 16:51:25 -04:00
|
|
|
}
|
|
|
|
|
2023-09-05 00:18:36 +03:00
|
|
|
SkinUpload::Ptr SkinUpload::make(QString token, SkinModel* skin)
|
2023-04-17 17:51:34 -07:00
|
|
|
{
|
2023-09-05 00:18:36 +03:00
|
|
|
auto up = makeShared<SkinUpload>(token, skin);
|
2023-09-01 21:23:51 +03:00
|
|
|
up->m_url = QUrl("https://api.minecraftservices.com/minecraft/profile/skins");
|
2023-09-05 00:18:36 +03:00
|
|
|
up->setObjectName(QString("BYTES:") + up->m_url.toString());
|
2023-09-01 21:23:51 +03:00
|
|
|
up->m_sink.reset(new Net::ByteArraySink(std::make_shared<QByteArray>()));
|
|
|
|
return up;
|
2016-05-12 16:51:25 -04:00
|
|
|
}
|