2023-03-02 19:48:41 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* Prism Launcher - Minecraft Launcher
|
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-05-02 14:23:27 +01:00
|
|
|
#include <QFuture>
|
|
|
|
#include <QFutureWatcher>
|
2023-03-02 19:48:41 +00:00
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "MMCZip.h"
|
2023-04-06 19:24:19 +01:00
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2023-03-04 10:24:25 +00:00
|
|
|
#include "modplatform/modrinth/ModrinthAPI.h"
|
2023-03-02 19:48:41 +00:00
|
|
|
#include "tasks/Task.h"
|
|
|
|
|
|
|
|
class ModrinthPackExportTask : public Task {
|
|
|
|
public:
|
|
|
|
ModrinthPackExportTask(const QString& name,
|
|
|
|
const QString& version,
|
|
|
|
const QString& summary,
|
|
|
|
InstancePtr instance,
|
|
|
|
const QString& output,
|
|
|
|
MMCZip::FilterFunction filter);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void executeTask() override;
|
2023-03-04 10:37:52 +00:00
|
|
|
bool abort() override;
|
2023-03-02 19:48:41 +00:00
|
|
|
|
|
|
|
private:
|
2023-03-04 19:55:38 +00:00
|
|
|
struct ResolvedFile {
|
|
|
|
QString sha1, sha512, url;
|
2023-04-06 19:18:36 +01:00
|
|
|
qint64 size;
|
2023-03-04 19:55:38 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 10:24:25 +00:00
|
|
|
static const QStringList PREFIXES;
|
2023-04-17 13:18:25 +01:00
|
|
|
static const QStringList FILE_EXTENSIONS;
|
2023-03-04 10:24:25 +00:00
|
|
|
|
|
|
|
// inputs
|
2023-03-02 19:48:41 +00:00
|
|
|
const QString name, version, summary;
|
|
|
|
const InstancePtr instance;
|
2023-06-03 13:44:09 +01:00
|
|
|
MinecraftInstance* mcInstance;
|
2023-04-17 13:18:25 +01:00
|
|
|
const QDir gameRoot;
|
2023-03-02 19:48:41 +00:00
|
|
|
const QString output;
|
|
|
|
const MMCZip::FilterFunction filter;
|
|
|
|
|
2023-03-04 10:24:25 +00:00
|
|
|
ModrinthAPI api;
|
|
|
|
QFileInfoList files;
|
2023-03-04 19:55:38 +00:00
|
|
|
QMap<QString, QString> pendingHashes;
|
|
|
|
QMap<QString, ResolvedFile> resolvedFiles;
|
2023-03-04 10:37:52 +00:00
|
|
|
Task::Ptr task;
|
2023-03-04 10:24:25 +00:00
|
|
|
|
|
|
|
void collectFiles();
|
2023-04-06 19:18:36 +01:00
|
|
|
void collectHashes();
|
|
|
|
void makeApiRequest();
|
2023-06-15 20:59:41 +01:00
|
|
|
void parseApiResponse(const std::shared_ptr<QByteArray> response);
|
2023-03-04 19:55:38 +00:00
|
|
|
void buildZip();
|
2023-03-04 10:24:25 +00:00
|
|
|
|
2023-03-04 19:55:38 +00:00
|
|
|
QByteArray generateIndex();
|
2023-04-17 10:16:03 +01:00
|
|
|
};
|