d00c320c00
This uses more arguments in the GET request for mod versions on the Modrinth API, filtering what versions can be returned, decreasing load on Modrinth servers and improving a little the time it takes for the versions to be available to the user. This also removes the now unneeded check on correct modloaders in ModrinthPackIndex, since it is now filtered by the Modrinth server. Lastly, this adds a couple of helper functions in ModModel.
33 lines
968 B
C++
33 lines
968 B
C++
#pragma once
|
|
|
|
#include "modplatform/helpers/NetworkModAPI.h"
|
|
|
|
class FlameAPI : public NetworkModAPI {
|
|
private:
|
|
inline auto getModSearchURL(SearchArgs& args) const -> QString override
|
|
{
|
|
return QString(
|
|
"https://addons-ecs.forgesvc.net/api/v2/addon/search?"
|
|
"gameId=432&"
|
|
"categoryId=0&"
|
|
"sectionId=6&"
|
|
|
|
"index=%1&"
|
|
"pageSize=25&"
|
|
"searchFilter=%2&"
|
|
"sort=%3&"
|
|
"modLoaderType=%4&"
|
|
"gameVersion=%5")
|
|
.arg(args.offset)
|
|
.arg(args.search)
|
|
.arg(args.sorting)
|
|
.arg(args.mod_loader)
|
|
.arg(args.version);
|
|
};
|
|
|
|
inline auto getVersionsURL(VersionSearchArgs& args) const -> QString override
|
|
{
|
|
return QString("https://addons-ecs.forgesvc.net/api/v2/addon/%1/files").arg(args.addonId);
|
|
};
|
|
};
|