2022-04-22 02:12:14 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-04-03 03:40:32 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-02 16:56:24 +01:00
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
2023-04-03 03:40:32 +01:00
|
|
|
* Copyright (C) 2023 Rachel Powers <508861+Ryex@users.noreply.github.com>
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01: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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01:00
|
|
|
* 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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01:00
|
|
|
* 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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-08 01:15:20 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QNetworkReply>
|
2022-04-22 02:12:14 +01:00
|
|
|
#include <QUrl>
|
2013-09-08 01:15:20 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
#include "QObjectPtr.h"
|
|
|
|
#include "tasks/Task.h"
|
2017-05-03 22:11:52 +01:00
|
|
|
|
2023-06-02 00:39:04 +01:00
|
|
|
#include "HeaderProxy.h"
|
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
class NetAction : public Task {
|
2013-09-08 01:15:20 +01:00
|
|
|
Q_OBJECT
|
2022-04-22 02:12:14 +01:00
|
|
|
protected:
|
2023-08-14 17:16:53 +01:00
|
|
|
explicit NetAction() : Task() {}
|
2013-10-06 00:13:40 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
public:
|
2021-11-21 22:21:12 +00:00
|
|
|
using Ptr = shared_qobject_ptr<NetAction>;
|
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
virtual ~NetAction() = default;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
QUrl url() { return m_url; }
|
2013-09-08 01:15:20 +01:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
void setNetwork(shared_qobject_ptr<QNetworkAccessManager> network) { m_network = network; }
|
|
|
|
|
2023-06-02 00:39:04 +01:00
|
|
|
void addHeaderProxy(Net::HeaderProxy* proxy) { m_headerProxies.push_back(std::shared_ptr<Net::HeaderProxy>(proxy)); }
|
2023-06-02 04:15:39 +01:00
|
|
|
virtual void init() = 0;
|
2023-06-02 00:39:04 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
protected slots:
|
2013-09-08 01:15:20 +01:00
|
|
|
virtual void downloadProgress(qint64 bytesReceived, qint64 bytesTotal) = 0;
|
|
|
|
virtual void downloadError(QNetworkReply::NetworkError error) = 0;
|
|
|
|
virtual void downloadFinished() = 0;
|
|
|
|
virtual void downloadReadyRead() = 0;
|
2017-05-03 22:11:52 +01:00
|
|
|
|
2023-06-02 00:39:04 +01:00
|
|
|
virtual void sslErrors(const QList<QSslError>& errors)
|
|
|
|
{
|
2023-04-18 01:51:34 +01:00
|
|
|
int i = 1;
|
|
|
|
for (auto error : errors) {
|
|
|
|
qCritical() << "Network SSL Error #" << i << " : " << error.errorString();
|
|
|
|
auto cert = error.certificate();
|
|
|
|
qCritical() << "Certificate in question:\n" << cert.toText();
|
|
|
|
i++;
|
|
|
|
}
|
2023-06-04 22:59:37 +01:00
|
|
|
}
|
2023-04-18 01:51:34 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
public slots:
|
|
|
|
void startAction(shared_qobject_ptr<QNetworkAccessManager> network)
|
|
|
|
{
|
2021-11-21 22:21:12 +00:00
|
|
|
m_network = network;
|
2022-04-22 02:12:14 +01:00
|
|
|
executeTask();
|
2021-11-21 22:21:12 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
protected:
|
2023-08-14 17:16:53 +01:00
|
|
|
void executeTask() override {}
|
2017-06-26 00:14:32 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
public:
|
2021-11-21 22:21:12 +00:00
|
|
|
shared_qobject_ptr<QNetworkAccessManager> m_network;
|
|
|
|
|
2017-06-26 00:14:32 +01:00
|
|
|
/// the network reply
|
|
|
|
unique_qobject_ptr<QNetworkReply> m_reply;
|
|
|
|
|
|
|
|
/// source URL
|
|
|
|
QUrl m_url;
|
2023-06-02 00:39:04 +01:00
|
|
|
std::vector<std::shared_ptr<Net::HeaderProxy>> m_headerProxies;
|
2013-09-08 01:15:20 +01:00
|
|
|
};
|