2022-01-16 10:20:21 +00:00
|
|
|
#include "FlameModModel.h"
|
2022-05-08 08:22:50 +01:00
|
|
|
#include "Json.h"
|
2022-03-07 22:29:59 +00:00
|
|
|
#include "modplatform/flame/FlameModIndex.h"
|
|
|
|
|
2022-01-16 10:20:21 +00:00
|
|
|
namespace FlameMod {
|
|
|
|
|
2022-03-08 14:12:35 +00:00
|
|
|
// NOLINTNEXTLINE(modernize-avoid-c-arrays)
|
2022-03-07 20:46:18 +00:00
|
|
|
const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name", "Author", "TotalDownloads" };
|
2022-03-03 02:01:23 +00:00
|
|
|
|
2022-03-07 22:29:59 +00:00
|
|
|
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|
|
|
{
|
|
|
|
FlameMod::loadIndexedPack(m, obj);
|
2022-03-07 22:55:20 +00:00
|
|
|
}
|
2022-03-07 22:29:59 +00:00
|
|
|
|
2022-07-19 16:29:31 +01:00
|
|
|
// We already deal with the URLs when initializing the pack, due to the API response's structure
|
|
|
|
void ListModel::loadExtraPackInfo(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|
|
|
{
|
|
|
|
FlameMod::loadBody(m, obj);
|
|
|
|
}
|
|
|
|
|
2022-03-07 22:29:59 +00:00
|
|
|
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
|
|
|
{
|
|
|
|
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
2022-03-07 22:55:20 +00:00
|
|
|
}
|
2022-03-07 22:29:59 +00:00
|
|
|
|
2022-03-08 14:12:35 +00:00
|
|
|
auto ListModel::documentToArray(QJsonDocument& obj) const -> QJsonArray
|
2022-03-07 22:29:59 +00:00
|
|
|
{
|
2022-05-08 08:22:50 +01:00
|
|
|
return Json::ensureArray(obj.object(), "data");
|
2022-03-07 22:29:59 +00:00
|
|
|
}
|
|
|
|
|
2022-03-03 00:17:10 +00:00
|
|
|
} // namespace FlameMod
|