2023-06-22 18:03:44 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* Prism Launcher - Minecraft Launcher
|
2023-06-24 13:11:15 +01:00
|
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
2023-06-22 18:03:44 +01:00
|
|
|
* Copyright (c) 2023 Trial97 <alexandru.tripon97@gmail.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "FlamePackExportTask.h"
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QtConcurrentRun>
|
2023-06-23 23:05:49 +01:00
|
|
|
#include <algorithm>
|
2023-06-23 17:35:41 +01:00
|
|
|
#include <memory>
|
2023-06-22 18:03:44 +01:00
|
|
|
#include "Json.h"
|
|
|
|
#include "MMCZip.h"
|
|
|
|
#include "minecraft/PackProfile.h"
|
|
|
|
#include "minecraft/mod/ModFolderModel.h"
|
2023-06-22 19:06:01 +01:00
|
|
|
#include "modplatform/ModIndex.h"
|
2023-06-23 23:05:49 +01:00
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
2023-06-23 17:35:41 +01:00
|
|
|
#include "modplatform/helpers/HashUtils.h"
|
2023-06-23 20:41:01 +01:00
|
|
|
#include "tasks/Task.h"
|
2023-06-22 18:03:44 +01:00
|
|
|
|
2023-06-24 18:43:45 +01:00
|
|
|
const QString FlamePackExportTask::TEMPLATE = "<li><a href={url}>{name}{authors}</a></li>\n";
|
2023-06-25 12:43:11 +01:00
|
|
|
const QStringList FlamePackExportTask::FILE_EXTENSIONS({ "jar", "zip" });
|
2023-06-22 18:03:44 +01:00
|
|
|
|
|
|
|
FlamePackExportTask::FlamePackExportTask(const QString& name,
|
|
|
|
const QString& version,
|
2023-06-22 19:06:01 +01:00
|
|
|
const QString& author,
|
2023-06-22 18:03:44 +01:00
|
|
|
InstancePtr instance,
|
|
|
|
const QString& output,
|
|
|
|
MMCZip::FilterFunction filter)
|
|
|
|
: name(name)
|
|
|
|
, version(version)
|
2023-06-22 19:06:01 +01:00
|
|
|
, author(author)
|
2023-06-22 18:03:44 +01:00
|
|
|
, instance(instance)
|
|
|
|
, mcInstance(dynamic_cast<MinecraftInstance*>(instance.get()))
|
|
|
|
, gameRoot(instance->gameRoot())
|
|
|
|
, output(output)
|
|
|
|
, filter(filter)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void FlamePackExportTask::executeTask()
|
|
|
|
{
|
|
|
|
setStatus(tr("Searching for files..."));
|
2023-06-25 17:44:18 +01:00
|
|
|
setProgress(0, 5);
|
2023-06-22 18:03:44 +01:00
|
|
|
collectFiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FlamePackExportTask::abort()
|
|
|
|
{
|
|
|
|
if (task != nullptr) {
|
|
|
|
task->abort();
|
|
|
|
task = nullptr;
|
|
|
|
emitAborted();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buildZipFuture.isRunning()) {
|
|
|
|
buildZipFuture.cancel();
|
|
|
|
// NOTE: Here we don't do `emitAborted()` because it will be done when `buildZipFuture` actually cancels, which may not occur
|
|
|
|
// immediately.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlamePackExportTask::collectFiles()
|
|
|
|
{
|
|
|
|
setAbortable(false);
|
|
|
|
QCoreApplication::processEvents();
|
|
|
|
|
|
|
|
files.clear();
|
|
|
|
if (!MMCZip::collectFileListRecursively(instance->gameRoot(), nullptr, &files, filter)) {
|
|
|
|
emitFailed(tr("Could not search for files"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-23 17:35:41 +01:00
|
|
|
pendingHashes.clear();
|
2023-06-22 18:03:44 +01:00
|
|
|
resolvedFiles.clear();
|
|
|
|
|
2023-06-23 20:41:01 +01:00
|
|
|
if (mcInstance != nullptr) {
|
2023-06-23 17:35:41 +01:00
|
|
|
mcInstance->loaderModList()->update();
|
2023-06-24 21:48:18 +01:00
|
|
|
connect(mcInstance->loaderModList().get(), &ModFolderModel::updateFinished, this, &FlamePackExportTask::collectHashes);
|
2023-06-23 17:35:41 +01:00
|
|
|
} else
|
|
|
|
collectHashes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlamePackExportTask::collectHashes()
|
|
|
|
{
|
2023-06-23 20:41:01 +01:00
|
|
|
setAbortable(true);
|
|
|
|
setStatus(tr("Find file hashes..."));
|
2023-06-25 17:44:18 +01:00
|
|
|
setProgress(1, 5);
|
2023-06-25 12:43:11 +01:00
|
|
|
auto allMods = mcInstance->loaderModList()->allMods();
|
2023-06-23 17:35:41 +01:00
|
|
|
ConcurrentTask::Ptr hashing_task(new ConcurrentTask(this, "MakeHashesTask", 10));
|
2023-06-23 20:41:01 +01:00
|
|
|
task.reset(hashing_task);
|
2023-06-25 12:43:11 +01:00
|
|
|
for (const QFileInfo& file : files) {
|
|
|
|
const QString relative = gameRoot.relativeFilePath(file.absoluteFilePath());
|
|
|
|
// require sensible file types
|
|
|
|
if (!std::any_of(FILE_EXTENSIONS.begin(), FILE_EXTENSIONS.end(), [&relative](const QString& extension) {
|
|
|
|
return relative.endsWith('.' + extension) || relative.endsWith('.' + extension + ".disabled");
|
|
|
|
}))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (relative.startsWith("resourcepacks/") &&
|
|
|
|
(relative.endsWith(".zip") || relative.endsWith(".zip.disabled"))) { // is resourcepack
|
|
|
|
auto hash_task = Hashing::createFlameHasher(file.absoluteFilePath());
|
2023-06-25 17:44:18 +01:00
|
|
|
connect(hash_task.get(), &Hashing::Hasher::resultsReady, [this, relative, file](QString hash) {
|
2023-06-25 12:43:11 +01:00
|
|
|
if (m_state == Task::State::Running) {
|
|
|
|
pendingHashes.insert(hash, { relative, file.absoluteFilePath(), relative.endsWith(".zip") });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(hash_task.get(), &Task::failed, this, &FlamePackExportTask::emitFailed);
|
|
|
|
hashing_task->addTask(hash_task);
|
2023-06-23 17:35:41 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-06-25 12:43:11 +01:00
|
|
|
if (auto modIter = std::find_if(allMods.begin(), allMods.end(), [&file](Mod* mod) { return mod->fileinfo() == file; });
|
|
|
|
modIter != allMods.end()) {
|
|
|
|
const Mod* mod = *modIter;
|
|
|
|
if (!mod || mod->type() == ResourceType::FOLDER) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (mod->metadata() && mod->metadata()->provider == ModPlatform::ResourceProvider::FLAME) {
|
|
|
|
resolvedFiles.insert(mod->fileinfo().absoluteFilePath(),
|
|
|
|
{ mod->metadata()->project_id.toInt(), mod->metadata()->file_id.toInt(), mod->enabled(), true,
|
|
|
|
mod->metadata()->name, mod->metadata()->slug, mod->authors().join(", ") });
|
|
|
|
continue;
|
2023-06-24 12:37:02 +01:00
|
|
|
}
|
2023-06-25 12:43:11 +01:00
|
|
|
|
|
|
|
auto hash_task = Hashing::createFlameHasher(mod->fileinfo().absoluteFilePath());
|
2023-06-25 17:44:18 +01:00
|
|
|
connect(hash_task.get(), &Hashing::Hasher::resultsReady, [this, mod](QString hash) {
|
2023-06-25 12:43:11 +01:00
|
|
|
if (m_state == Task::State::Running) {
|
|
|
|
pendingHashes.insert(hash, { mod->name(), mod->fileinfo().absoluteFilePath(), mod->enabled(), true });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(hash_task.get(), &Task::failed, this, &FlamePackExportTask::emitFailed);
|
|
|
|
hashing_task->addTask(hash_task);
|
|
|
|
}
|
2023-06-24 12:37:02 +01:00
|
|
|
}
|
2023-06-25 17:44:18 +01:00
|
|
|
auto step_progress = std::make_shared<TaskStepProgress>();
|
|
|
|
connect(hashing_task.get(), &Task::finished, this, [this, step_progress] {
|
|
|
|
step_progress->state = TaskStepState::Succeeded;
|
|
|
|
stepProgress(*step_progress);
|
|
|
|
});
|
2023-06-24 12:37:02 +01:00
|
|
|
|
2023-06-23 17:35:41 +01:00
|
|
|
connect(hashing_task.get(), &Task::succeeded, this, &FlamePackExportTask::makeApiRequest);
|
2023-06-25 17:44:18 +01:00
|
|
|
connect(hashing_task.get(), &Task::failed, this, [this, step_progress](QString reason) {
|
|
|
|
step_progress->state = TaskStepState::Failed;
|
|
|
|
stepProgress(*step_progress);
|
|
|
|
emitFailed(reason);
|
|
|
|
});
|
|
|
|
connect(hashing_task.get(), &Task::stepProgress, this, &FlamePackExportTask::propogateStepProgress);
|
|
|
|
|
|
|
|
connect(hashing_task.get(), &Task::progress, this, [this, step_progress](qint64 current, qint64 total) {
|
|
|
|
step_progress->update(current, total);
|
|
|
|
stepProgress(*step_progress);
|
|
|
|
});
|
|
|
|
connect(hashing_task.get(), &Task::status, this, [this, step_progress](QString status) {
|
|
|
|
step_progress->status = status;
|
|
|
|
stepProgress(*step_progress);
|
|
|
|
});
|
2023-06-23 17:35:41 +01:00
|
|
|
hashing_task->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlamePackExportTask::makeApiRequest()
|
|
|
|
{
|
|
|
|
if (pendingHashes.isEmpty()) {
|
|
|
|
buildZip();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-24 13:04:18 +01:00
|
|
|
setStatus(tr("Find versions for hashes..."));
|
2023-06-25 17:44:18 +01:00
|
|
|
setProgress(2, 5);
|
2023-06-23 17:35:41 +01:00
|
|
|
auto response = std::make_shared<QByteArray>();
|
|
|
|
|
|
|
|
QList<uint> fingerprints;
|
|
|
|
for (auto& murmur : pendingHashes.keys()) {
|
|
|
|
fingerprints.push_back(murmur.toUInt());
|
|
|
|
}
|
|
|
|
|
2023-06-23 20:41:01 +01:00
|
|
|
task.reset(api.matchFingerprints(fingerprints, response));
|
2023-06-23 17:35:41 +01:00
|
|
|
|
|
|
|
connect(task.get(), &Task::succeeded, this, [this, response] {
|
|
|
|
QJsonParseError parse_error{};
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(*response, &parse_error);
|
|
|
|
if (parse_error.error != QJsonParseError::NoError) {
|
2023-06-25 17:44:18 +01:00
|
|
|
qWarning() << "Error while parsing JSON response from CurseForge::CurrentVersions at " << parse_error.offset
|
2023-06-23 17:35:41 +01:00
|
|
|
<< " reason: " << parse_error.errorString();
|
|
|
|
qWarning() << *response;
|
|
|
|
|
|
|
|
failed(parse_error.errorString());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
auto doc_obj = Json::requireObject(doc);
|
|
|
|
auto data_obj = Json::requireObject(doc_obj, "data");
|
|
|
|
auto data_arr = Json::requireArray(data_obj, "exactMatches");
|
|
|
|
|
|
|
|
if (data_arr.isEmpty()) {
|
|
|
|
qWarning() << "No matches found for fingerprint search!";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (auto match : data_arr) {
|
|
|
|
auto match_obj = Json::ensureObject(match, {});
|
|
|
|
auto file_obj = Json::ensureObject(match_obj, "file", {});
|
|
|
|
|
|
|
|
if (match_obj.isEmpty() || file_obj.isEmpty()) {
|
|
|
|
qWarning() << "Fingerprint match is empty!";
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto fingerprint = QString::number(Json::ensureVariant(file_obj, "fileFingerprint").toUInt());
|
|
|
|
auto mod = pendingHashes.find(fingerprint);
|
|
|
|
if (mod == pendingHashes.end()) {
|
|
|
|
qWarning() << "Invalid fingerprint from the API response.";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-06-24 12:37:02 +01:00
|
|
|
setStatus(tr("Parsing API response from CurseForge for '%1'...").arg(mod->name));
|
2023-06-24 11:24:40 +01:00
|
|
|
if (Json::ensureBoolean(file_obj, "isAvailable", false, "isAvailable"))
|
2023-06-24 13:02:00 +01:00
|
|
|
resolvedFiles.insert(mod->path, { Json::requireInteger(file_obj, "modId"), Json::requireInteger(file_obj, "id"),
|
|
|
|
mod->enabled, mod->isMod });
|
2023-06-23 17:35:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (Json::JsonException& e) {
|
|
|
|
qDebug() << e.cause();
|
|
|
|
qDebug() << doc;
|
|
|
|
}
|
|
|
|
pendingHashes.clear();
|
2023-06-22 18:03:44 +01:00
|
|
|
});
|
2023-06-23 23:05:49 +01:00
|
|
|
connect(task.get(), &Task::finished, this, &FlamePackExportTask::getProjectsInfo);
|
2023-06-23 17:35:41 +01:00
|
|
|
connect(task.get(), &NetJob::failed, this, &FlamePackExportTask::emitFailed);
|
|
|
|
task->start();
|
2023-06-22 18:03:44 +01:00
|
|
|
}
|
|
|
|
|
2023-06-23 23:05:49 +01:00
|
|
|
void FlamePackExportTask::getProjectsInfo()
|
|
|
|
{
|
2023-06-24 12:50:05 +01:00
|
|
|
setStatus(tr("Find project info from CurseForge..."));
|
2023-06-25 17:44:18 +01:00
|
|
|
setProgress(3, 5);
|
2023-06-23 23:05:49 +01:00
|
|
|
QList<QString> addonIds;
|
|
|
|
for (auto resolved : resolvedFiles) {
|
|
|
|
if (resolved.slug.isEmpty()) {
|
|
|
|
addonIds << QString::number(resolved.addonId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto response = std::make_shared<QByteArray>();
|
|
|
|
Task::Ptr proj_task;
|
|
|
|
|
|
|
|
if (addonIds.isEmpty()) {
|
|
|
|
buildZip();
|
|
|
|
return;
|
|
|
|
} else if (addonIds.size() == 1) {
|
|
|
|
proj_task = api.getProject(*addonIds.begin(), response);
|
|
|
|
} else {
|
|
|
|
proj_task = api.getProjects(addonIds, response);
|
|
|
|
}
|
|
|
|
|
|
|
|
connect(proj_task.get(), &Task::succeeded, this, [this, response, addonIds] {
|
|
|
|
QJsonParseError parse_error{};
|
|
|
|
auto doc = QJsonDocument::fromJson(*response, &parse_error);
|
|
|
|
if (parse_error.error != QJsonParseError::NoError) {
|
2023-06-25 17:44:18 +01:00
|
|
|
qWarning() << "Error while parsing JSON response from CurseForge projects task at " << parse_error.offset
|
2023-06-23 23:05:49 +01:00
|
|
|
<< " reason: " << parse_error.errorString();
|
|
|
|
qWarning() << *response;
|
2023-06-25 17:44:18 +01:00
|
|
|
failed(parse_error.errorString());
|
2023-06-23 23:05:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
QJsonArray entries;
|
|
|
|
if (addonIds.size() == 1)
|
|
|
|
entries = { Json::requireObject(Json::requireObject(doc), "data") };
|
|
|
|
else
|
|
|
|
entries = Json::requireArray(Json::requireObject(doc), "data");
|
|
|
|
|
|
|
|
for (auto entry : entries) {
|
|
|
|
auto entry_obj = Json::requireObject(entry);
|
|
|
|
|
|
|
|
try {
|
|
|
|
setStatus(tr("Parsing API response from CurseForge for '%1'...").arg(Json::requireString(entry_obj, "name")));
|
|
|
|
|
|
|
|
ModPlatform::IndexedPack pack;
|
|
|
|
FlameMod::loadIndexedPack(pack, entry_obj);
|
|
|
|
for (auto key : resolvedFiles.keys()) {
|
|
|
|
auto val = resolvedFiles.value(key);
|
|
|
|
if (val.addonId == pack.addonId) {
|
|
|
|
val.name = pack.name;
|
|
|
|
val.slug = pack.slug;
|
|
|
|
QStringList authors;
|
|
|
|
for (auto author : pack.authors)
|
|
|
|
authors << author.name;
|
|
|
|
|
|
|
|
val.authors = authors.join(", ");
|
|
|
|
resolvedFiles[key] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (Json::JsonException& e) {
|
|
|
|
qDebug() << e.cause();
|
|
|
|
qDebug() << entries;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Json::JsonException& e) {
|
|
|
|
qDebug() << e.cause();
|
|
|
|
qDebug() << doc;
|
|
|
|
}
|
|
|
|
buildZip();
|
|
|
|
});
|
|
|
|
task.reset(proj_task);
|
|
|
|
task->start();
|
|
|
|
}
|
|
|
|
|
2023-06-22 18:03:44 +01:00
|
|
|
void FlamePackExportTask::buildZip()
|
|
|
|
{
|
|
|
|
setStatus(tr("Adding files..."));
|
2023-06-25 17:44:18 +01:00
|
|
|
setProgress(4, 5);
|
2023-06-22 18:03:44 +01:00
|
|
|
|
|
|
|
buildZipFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this]() {
|
|
|
|
QuaZip zip(output);
|
|
|
|
if (!zip.open(QuaZip::mdCreate)) {
|
|
|
|
QFile::remove(output);
|
|
|
|
return BuildZipResult(tr("Could not create file"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buildZipFuture.isCanceled())
|
|
|
|
return BuildZipResult();
|
|
|
|
|
|
|
|
QuaZipFile indexFile(&zip);
|
|
|
|
if (!indexFile.open(QIODevice::WriteOnly, QuaZipNewInfo("manifest.json"))) {
|
|
|
|
QFile::remove(output);
|
|
|
|
return BuildZipResult(tr("Could not create index"));
|
|
|
|
}
|
|
|
|
indexFile.write(generateIndex());
|
|
|
|
|
2023-06-24 09:12:23 +01:00
|
|
|
QuaZipFile modlist(&zip);
|
|
|
|
if (!modlist.open(QIODevice::WriteOnly, QuaZipNewInfo("modlist.html"))) {
|
|
|
|
QFile::remove(output);
|
|
|
|
return BuildZipResult(tr("Could not create index"));
|
|
|
|
}
|
|
|
|
QString content = "";
|
|
|
|
for (auto mod : resolvedFiles) {
|
2023-06-24 13:02:00 +01:00
|
|
|
if (mod.isMod) {
|
2023-06-24 18:43:45 +01:00
|
|
|
content += QString(TEMPLATE)
|
|
|
|
.replace("{name}", mod.name)
|
|
|
|
.replace("{url}", ModPlatform::getMetaURL(ModPlatform::ResourceProvider::FLAME, mod.addonId))
|
2023-06-24 20:15:18 +01:00
|
|
|
.replace("{authors}", !mod.authors.isEmpty() ? QString(" (by %1)").arg(mod.authors) : "");
|
2023-06-24 13:02:00 +01:00
|
|
|
}
|
2023-06-22 18:03:44 +01:00
|
|
|
}
|
2023-06-24 09:12:23 +01:00
|
|
|
content = "<ul>" + content + "</ul>";
|
|
|
|
modlist.write(content.toUtf8());
|
2023-06-22 18:03:44 +01:00
|
|
|
|
2023-06-25 17:44:18 +01:00
|
|
|
auto step_progress = std::make_shared<TaskStepProgress>();
|
|
|
|
|
2023-06-22 18:03:44 +01:00
|
|
|
size_t progress = 0;
|
|
|
|
for (const QFileInfo& file : files) {
|
|
|
|
if (buildZipFuture.isCanceled()) {
|
|
|
|
QFile::remove(output);
|
2023-06-25 17:44:18 +01:00
|
|
|
step_progress->state = TaskStepState::Failed;
|
|
|
|
stepProgress(*step_progress);
|
2023-06-22 18:03:44 +01:00
|
|
|
return BuildZipResult();
|
|
|
|
}
|
2023-06-25 17:44:18 +01:00
|
|
|
step_progress->update(progress, files.length());
|
|
|
|
stepProgress(*step_progress);
|
2023-06-22 18:03:44 +01:00
|
|
|
|
|
|
|
const QString relative = gameRoot.relativeFilePath(file.absoluteFilePath());
|
2023-06-23 20:41:01 +01:00
|
|
|
if (!resolvedFiles.contains(file.absoluteFilePath()) &&
|
|
|
|
!JlCompress::compressFile(&zip, file.absoluteFilePath(), "overrides/" + relative)) {
|
2023-06-22 18:03:44 +01:00
|
|
|
QFile::remove(output);
|
|
|
|
return BuildZipResult(tr("Could not read and compress %1").arg(relative));
|
|
|
|
}
|
|
|
|
progress++;
|
|
|
|
}
|
|
|
|
|
|
|
|
zip.close();
|
|
|
|
|
|
|
|
if (zip.getZipError() != 0) {
|
|
|
|
QFile::remove(output);
|
2023-06-25 17:44:18 +01:00
|
|
|
step_progress->state = TaskStepState::Failed;
|
|
|
|
stepProgress(*step_progress);
|
2023-06-22 18:03:44 +01:00
|
|
|
return BuildZipResult(tr("A zip error occurred"));
|
|
|
|
}
|
2023-06-25 17:44:18 +01:00
|
|
|
step_progress->state = TaskStepState::Succeeded;
|
|
|
|
stepProgress(*step_progress);
|
2023-06-22 18:03:44 +01:00
|
|
|
return BuildZipResult();
|
|
|
|
});
|
|
|
|
connect(&buildZipWatcher, &QFutureWatcher<BuildZipResult>::finished, this, &FlamePackExportTask::finish);
|
|
|
|
buildZipWatcher.setFuture(buildZipFuture);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FlamePackExportTask::finish()
|
|
|
|
{
|
|
|
|
if (buildZipFuture.isCanceled())
|
|
|
|
emitAborted();
|
|
|
|
else {
|
|
|
|
const BuildZipResult result = buildZipFuture.result();
|
|
|
|
if (result.has_value())
|
|
|
|
emitFailed(result.value());
|
|
|
|
else
|
|
|
|
emitSucceeded();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray FlamePackExportTask::generateIndex()
|
|
|
|
{
|
|
|
|
QJsonObject obj;
|
|
|
|
obj["manifestType"] = "minecraftModpack";
|
|
|
|
obj["manifestVersion"] = 1;
|
|
|
|
obj["name"] = name;
|
|
|
|
obj["version"] = version;
|
|
|
|
obj["author"] = author;
|
|
|
|
obj["overrides"] = "overrides";
|
|
|
|
if (mcInstance) {
|
|
|
|
QJsonObject version;
|
|
|
|
auto profile = mcInstance->getPackProfile();
|
|
|
|
// collect all supported components
|
|
|
|
const ComponentPtr minecraft = profile->getComponent("net.minecraft");
|
|
|
|
const ComponentPtr quilt = profile->getComponent("org.quiltmc.quilt-loader");
|
|
|
|
const ComponentPtr fabric = profile->getComponent("net.fabricmc.fabric-loader");
|
|
|
|
const ComponentPtr forge = profile->getComponent("net.minecraftforge");
|
|
|
|
|
|
|
|
// convert all available components to mrpack dependencies
|
|
|
|
if (minecraft != nullptr)
|
|
|
|
version["version"] = minecraft->m_version;
|
2023-06-25 10:24:59 +01:00
|
|
|
QString id;
|
2023-06-22 18:03:44 +01:00
|
|
|
if (quilt != nullptr)
|
2023-06-25 10:24:59 +01:00
|
|
|
id = "quilt-" + quilt->getVersion();
|
2023-06-22 18:03:44 +01:00
|
|
|
else if (fabric != nullptr)
|
2023-06-25 10:24:59 +01:00
|
|
|
id = "fabric-" + fabric->getVersion();
|
2023-06-22 18:03:44 +01:00
|
|
|
else if (forge != nullptr)
|
2023-06-25 10:24:59 +01:00
|
|
|
id = "forge-" + forge->getVersion();
|
|
|
|
version["modLoaders"] = QJsonArray();
|
|
|
|
if (!id.isEmpty()) {
|
|
|
|
QJsonObject loader;
|
|
|
|
loader["id"] = id;
|
|
|
|
loader["primary"] = true;
|
|
|
|
version["modLoaders"] = QJsonArray({ loader });
|
|
|
|
}
|
2023-06-22 18:03:44 +01:00
|
|
|
obj["minecraft"] = version;
|
|
|
|
}
|
|
|
|
|
|
|
|
QJsonArray files;
|
2023-06-23 17:35:41 +01:00
|
|
|
for (auto mod : resolvedFiles) {
|
2023-06-22 18:03:44 +01:00
|
|
|
QJsonObject file;
|
2023-06-23 17:35:41 +01:00
|
|
|
file["projectID"] = mod.addonId;
|
|
|
|
file["fileID"] = mod.version;
|
|
|
|
file["required"] = mod.enabled;
|
2023-06-22 18:03:44 +01:00
|
|
|
files << file;
|
|
|
|
}
|
|
|
|
obj["files"] = files;
|
|
|
|
|
|
|
|
return QJsonDocument(obj).toJson(QJsonDocument::Compact);
|
|
|
|
}
|