2022-05-02 16:56:24 +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>
|
2022-06-01 21:03:51 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
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-05-02 16:56:24 +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-05-02 16:56:24 +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-05-02 16:56:24 +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");
|
2023-03-30 19:22:55 +01:00
|
|
|
|
2022-05-02 16:56:24 +01:00
|
|
|
* 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 "HttpMetaCache.h"
|
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "QObjectPtr.h"
|
2023-06-26 23:01:02 +01:00
|
|
|
#include "net/NetRequest.h"
|
2021-11-21 22:21:12 +00:00
|
|
|
|
2016-05-28 18:54:17 +01:00
|
|
|
namespace Net {
|
2023-06-26 23:01:02 +01:00
|
|
|
class Download : public NetRequest {
|
2013-09-08 01:15:20 +01:00
|
|
|
Q_OBJECT
|
2022-04-27 22:36:11 +01:00
|
|
|
public:
|
|
|
|
using Ptr = shared_qobject_ptr<class Download>;
|
2023-08-02 02:53:51 +01:00
|
|
|
explicit Download() : NetRequest() { logCat = taskDownloadLogC; }
|
2022-04-27 22:36:11 +01:00
|
|
|
|
2023-06-25 22:25:07 +01:00
|
|
|
#if defined(LAUNCHER_APPLICATION)
|
2022-04-27 22:36:11 +01:00
|
|
|
static auto makeCached(QUrl url, MetaEntryPtr entry, Options options = Option::NoOptions) -> Download::Ptr;
|
2023-06-25 22:25:07 +01:00
|
|
|
#endif
|
|
|
|
|
2023-06-15 20:59:41 +01:00
|
|
|
static auto makeByteArray(QUrl url, std::shared_ptr<QByteArray> output, Options options = Option::NoOptions) -> Download::Ptr;
|
2022-04-27 22:36:11 +01:00
|
|
|
static auto makeFile(QUrl url, QString path, Options options = Option::NoOptions) -> Download::Ptr;
|
|
|
|
|
2023-06-02 04:15:39 +01:00
|
|
|
protected:
|
2023-06-26 23:01:02 +01:00
|
|
|
virtual QNetworkReply* getReply(QNetworkRequest&) override;
|
2013-09-08 01:15:20 +01:00
|
|
|
};
|
2022-04-27 22:36:11 +01:00
|
|
|
} // namespace Net
|