2022-05-15 16:50:05 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2022-05-11 04:27:47 +05:30
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@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/>.
|
|
|
|
*/
|
2022-05-15 16:50:05 +05:30
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
#include "ModrinthPackIndex.h"
|
2022-03-03 07:31:23 +05:30
|
|
|
#include "ModrinthAPI.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
#include "Json.h"
|
2022-01-15 14:55:24 +05:30
|
|
|
#include "minecraft/MinecraftInstance.h"
|
|
|
|
#include "minecraft/PackProfile.h"
|
2022-03-03 03:05:59 +05:30
|
|
|
#include "net/NetJob.h"
|
2022-01-15 14:55:24 +05:30
|
|
|
|
2022-03-03 07:31:23 +05:30
|
|
|
static ModrinthAPI api;
|
2022-04-22 00:15:20 +05:30
|
|
|
static ModPlatform::ProviderCapabilities ProviderCaps;
|
2022-03-03 07:31:23 +05:30
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
void Modrinth::loadIndexedPack(ModPlatform::IndexedPack& pack, QJsonObject& obj)
|
2022-01-14 14:13:42 +05:30
|
|
|
{
|
2022-01-31 21:48:11 +05:30
|
|
|
pack.addonId = Json::requireString(obj, "project_id");
|
2022-04-14 03:46:36 +05:30
|
|
|
pack.provider = ModPlatform::Provider::MODRINTH;
|
2022-01-14 14:13:42 +05:30
|
|
|
pack.name = Json::requireString(obj, "title");
|
2022-04-04 03:36:44 +05:30
|
|
|
|
|
|
|
QString slug = Json::ensureString(obj, "slug", "");
|
|
|
|
if (!slug.isEmpty())
|
|
|
|
pack.websiteUrl = "https://modrinth.com/mod/" + Json::ensureString(obj, "slug", "");
|
|
|
|
else
|
|
|
|
pack.websiteUrl = "";
|
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
pack.description = Json::ensureString(obj, "description", "");
|
|
|
|
|
|
|
|
pack.logoUrl = Json::requireString(obj, "icon_url");
|
2022-03-03 03:05:59 +05:30
|
|
|
pack.logoName = pack.addonId.toString();
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
ModPlatform::ModpackAuthor modAuthor;
|
2022-01-24 11:53:01 +05:30
|
|
|
modAuthor.name = Json::requireString(obj, "author");
|
2022-03-03 07:31:23 +05:30
|
|
|
modAuthor.url = api.getAuthorURL(modAuthor.name);
|
2022-03-03 03:05:59 +05:30
|
|
|
pack.authors.append(modAuthor);
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
void Modrinth::loadIndexedPackVersions(ModPlatform::IndexedPack& pack,
|
|
|
|
QJsonArray& arr,
|
|
|
|
const shared_qobject_ptr<QNetworkAccessManager>& network,
|
|
|
|
BaseInstance* inst)
|
2022-01-14 14:13:42 +05:30
|
|
|
{
|
2022-03-03 03:05:59 +05:30
|
|
|
QVector<ModPlatform::IndexedVersion> unsortedVersions;
|
2022-03-08 19:42:35 +05:30
|
|
|
QString mcVersion = (static_cast<MinecraftInstance*>(inst))->getPackProfile()->getComponentVersion("net.minecraft");
|
2022-01-15 14:55:24 +05:30
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
for (auto versionIter : arr) {
|
2022-01-14 14:13:42 +05:30
|
|
|
auto obj = versionIter.toObject();
|
2022-04-22 21:53:47 +05:30
|
|
|
auto file = loadIndexedPackVersion(obj);
|
2022-01-15 13:21:47 +05:30
|
|
|
|
2022-04-22 21:53:47 +05:30
|
|
|
if(file.fileId.isValid()) // Heuristic to check if the returned value is valid
|
2022-02-02 02:26:52 +05:30
|
|
|
unsortedVersions.append(file);
|
2022-01-14 14:13:42 +05:30
|
|
|
}
|
2022-03-03 03:05:59 +05:30
|
|
|
auto orderSortPredicate = [](const ModPlatform::IndexedVersion& a, const ModPlatform::IndexedVersion& b) -> bool {
|
|
|
|
// dates are in RFC 3339 format
|
2022-01-14 14:13:42 +05:30
|
|
|
return a.date > b.date;
|
|
|
|
};
|
|
|
|
std::sort(unsortedVersions.begin(), unsortedVersions.end(), orderSortPredicate);
|
|
|
|
pack.versions = unsortedVersions;
|
|
|
|
pack.versionsLoaded = true;
|
|
|
|
}
|
2022-04-22 21:53:47 +05:30
|
|
|
|
|
|
|
auto Modrinth::loadIndexedPackVersion(QJsonObject &obj) -> ModPlatform::IndexedVersion
|
|
|
|
{
|
|
|
|
ModPlatform::IndexedVersion file;
|
|
|
|
|
|
|
|
file.addonId = Json::requireString(obj, "project_id");
|
|
|
|
file.fileId = Json::requireString(obj, "id");
|
|
|
|
file.date = Json::requireString(obj, "date_published");
|
|
|
|
auto versionArray = Json::requireArray(obj, "game_versions");
|
|
|
|
if (versionArray.empty()) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
for (auto mcVer : versionArray) {
|
|
|
|
file.mcVersion.append(mcVer.toString());
|
|
|
|
}
|
|
|
|
auto loaders = Json::requireArray(obj, "loaders");
|
|
|
|
for (auto loader : loaders) {
|
|
|
|
file.loaders.append(loader.toString());
|
|
|
|
}
|
|
|
|
file.version = Json::requireString(obj, "name");
|
|
|
|
|
|
|
|
auto files = Json::requireArray(obj, "files");
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
// Find correct file (needed in cases where one version may have multiple files)
|
|
|
|
// Will default to the last one if there's no primary (though I think Modrinth requires that
|
|
|
|
// at least one file is primary, idk)
|
|
|
|
// NOTE: files.count() is 1-indexed, so we need to subtract 1 to become 0-indexed
|
|
|
|
while (i < files.count() - 1) {
|
|
|
|
auto parent = files[i].toObject();
|
|
|
|
auto fileName = Json::requireString(parent, "filename");
|
|
|
|
|
|
|
|
// Grab the primary file, if available
|
|
|
|
if (Json::requireBoolean(parent, "primary"))
|
|
|
|
break;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto parent = files[i].toObject();
|
|
|
|
if (parent.contains("url")) {
|
|
|
|
file.downloadUrl = Json::requireString(parent, "url");
|
|
|
|
file.fileName = Json::requireString(parent, "filename");
|
|
|
|
auto hash_list = Json::requireObject(parent, "hashes");
|
2022-05-06 21:12:01 +05:30
|
|
|
auto hash_types = ProviderCaps.hashType(ModPlatform::Provider::MODRINTH);
|
|
|
|
for (auto& hash_type : hash_types) {
|
|
|
|
if (hash_list.contains(hash_type)) {
|
|
|
|
file.hash = Json::requireString(hash_list, hash_type);
|
|
|
|
file.hash_type = hash_type;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-04-22 21:53:47 +05:30
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|