pollymc/launcher/ui/pages/modplatform/flame/FlameModel.cpp

235 lines
6.7 KiB
C++
Raw Normal View History

#include "FlameModel.h"
#include <Json.h>
2022-05-08 12:52:50 +05:30
#include "Application.h"
2020-03-31 06:43:19 +05:30
#include <MMCStrings.h>
#include <Version.h>
#include <QtMath>
namespace Flame {
2020-03-31 06:43:19 +05:30
2022-05-08 12:52:50 +05:30
ListModel::ListModel(QObject* parent) : QAbstractListModel(parent) {}
2020-03-31 06:43:19 +05:30
2022-05-08 12:52:50 +05:30
ListModel::~ListModel() {}
2020-03-31 06:43:19 +05:30
2022-05-08 12:52:50 +05:30
int ListModel::rowCount(const QModelIndex& parent) const
2020-03-31 06:43:19 +05:30
{
return modpacks.size();
}
2022-05-08 12:52:50 +05:30
int ListModel::columnCount(const QModelIndex& parent) const
2020-03-31 06:43:19 +05:30
{
return 1;
}
2022-05-08 12:52:50 +05:30
QVariant ListModel::data(const QModelIndex& index, int role) const
2020-03-31 06:43:19 +05:30
{
int pos = index.row();
2022-05-08 12:52:50 +05:30
if (pos >= modpacks.size() || pos < 0 || !index.isValid()) {
2020-03-31 06:43:19 +05:30
return QString("INVALID INDEX %1").arg(pos);
}
IndexedPack pack = modpacks.at(pos);
2022-05-08 12:52:50 +05:30
if (role == Qt::DisplayRole) {
2020-03-31 06:43:19 +05:30
return pack.name;
2022-05-08 12:52:50 +05:30
} else if (role == Qt::ToolTipRole) {
if (pack.description.length() > 100) {
// some magic to prevent to long tooltips and replace html linebreaks
2020-03-31 06:43:19 +05:30
QString edit = pack.description.left(97);
edit = edit.left(edit.lastIndexOf("<br>")).left(edit.lastIndexOf(" ")).append("...");
return edit;
}
return pack.description;
2022-05-08 12:52:50 +05:30
} else if (role == Qt::DecorationRole) {
if (m_logoMap.contains(pack.logoName)) {
2020-03-31 06:43:19 +05:30
return (m_logoMap.value(pack.logoName));
}
2021-11-20 20:52:22 +05:30
QIcon icon = APPLICATION->getThemedIcon("screenshot-placeholder");
2022-05-08 12:52:50 +05:30
((ListModel*)this)->requestLogo(pack.logoName, pack.logoUrl);
2020-03-31 06:43:19 +05:30
return icon;
2022-05-08 12:52:50 +05:30
} else if (role == Qt::UserRole) {
2020-03-31 06:43:19 +05:30
QVariant v;
v.setValue(pack);
return v;
}
return QVariant();
}
void ListModel::logoLoaded(QString logo, QIcon out)
{
m_loadingLogos.removeAll(logo);
m_logoMap.insert(logo, out);
2022-05-08 12:52:50 +05:30
for (int i = 0; i < modpacks.size(); i++) {
if (modpacks[i].logoName == logo) {
emit dataChanged(createIndex(i, 0), createIndex(i, 0), { Qt::DecorationRole });
2020-03-31 06:43:19 +05:30
}
}
}
void ListModel::logoFailed(QString logo)
{
m_failedLogos.append(logo);
m_loadingLogos.removeAll(logo);
}
void ListModel::requestLogo(QString logo, QString url)
{
2022-05-08 12:52:50 +05:30
if (m_loadingLogos.contains(logo) || m_failedLogos.contains(logo)) {
2020-03-31 06:43:19 +05:30
return;
}
MetaEntryPtr entry = APPLICATION->metacache()->resolveEntry("FlamePacks", QString("logos/%1").arg(logo.section(".", 0, 0)));
2022-01-18 16:58:55 +05:30
auto job = new NetJob(QString("Flame Icon Download %1").arg(logo), APPLICATION->network());
2020-03-31 06:43:19 +05:30
job->addNetAction(Net::Download::makeCached(QUrl(url), entry));
auto fullPath = entry->getFullPath();
2022-05-08 12:52:50 +05:30
QObject::connect(job, &NetJob::succeeded, this, [this, logo, fullPath, job] {
2022-01-18 16:58:55 +05:30
job->deleteLater();
2020-03-31 06:43:19 +05:30
emit logoLoaded(logo, QIcon(fullPath));
2022-05-08 12:52:50 +05:30
if (waitingCallbacks.contains(logo)) {
2020-03-31 06:43:19 +05:30
waitingCallbacks.value(logo)(fullPath);
}
});
2022-05-08 12:52:50 +05:30
QObject::connect(job, &NetJob::failed, this, [this, logo, job] {
2022-01-18 16:58:55 +05:30
job->deleteLater();
2020-03-31 06:43:19 +05:30
emit logoFailed(logo);
});
job->start();
2020-03-31 06:43:19 +05:30
m_loadingLogos.append(logo);
}
2022-05-08 12:52:50 +05:30
void ListModel::getLogo(const QString& logo, const QString& logoUrl, LogoCallback callback)
2020-03-31 06:43:19 +05:30
{
2022-05-08 12:52:50 +05:30
if (m_logoMap.contains(logo)) {
callback(APPLICATION->metacache()->resolveEntry("FlamePacks", QString("logos/%1").arg(logo.section(".", 0, 0)))->getFullPath());
2022-05-08 12:52:50 +05:30
} else {
2020-03-31 06:43:19 +05:30
requestLogo(logo, logoUrl);
}
}
2022-05-08 12:52:50 +05:30
Qt::ItemFlags ListModel::flags(const QModelIndex& index) const
2020-03-31 06:43:19 +05:30
{
return QAbstractListModel::flags(index);
}
bool ListModel::canFetchMore(const QModelIndex& parent) const
2020-03-31 06:43:19 +05:30
{
return searchState == CanPossiblyFetchMore;
}
void ListModel::fetchMore(const QModelIndex& parent)
{
if (parent.isValid())
return;
2022-05-08 12:52:50 +05:30
if (nextSearchOffset == 0) {
qWarning() << "fetchMore with 0 offset is wrong...";
2020-03-31 06:43:19 +05:30
return;
}
performPaginatedSearch();
}
void ListModel::performPaginatedSearch()
{
2022-05-08 12:52:50 +05:30
NetJob* netJob = new NetJob("Flame::Search", APPLICATION->network());
2020-03-31 06:43:19 +05:30
auto searchUrl = QString(
2022-05-08 12:52:50 +05:30
"https://api.curseforge.com/v1/mods/search?"
"gameId=432&"
"classId=4471&"
"index=%1&"
"pageSize=25&"
"searchFilter=%2&"
"sortField=%3&"
"sortOrder=desc")
.arg(nextSearchOffset)
.arg(currentSearchTerm)
.arg(currentSort + 1);
2020-03-31 06:43:19 +05:30
netJob->addNetAction(Net::Download::makeByteArray(QUrl(searchUrl), &response));
jobPtr = netJob;
jobPtr->start();
2020-03-31 06:43:19 +05:30
QObject::connect(netJob, &NetJob::succeeded, this, &ListModel::searchRequestFinished);
QObject::connect(netJob, &NetJob::failed, this, &ListModel::searchRequestFailed);
}
void ListModel::searchWithTerm(const QString& term, int sort)
{
2022-05-08 12:52:50 +05:30
if (currentSearchTerm == term && currentSearchTerm.isNull() == term.isNull() && currentSort == sort) {
return;
}
currentSearchTerm = term;
currentSort = sort;
2022-05-08 12:52:50 +05:30
if (jobPtr) {
jobPtr->abort();
searchState = ResetRequested;
return;
2022-05-08 12:52:50 +05:30
} else {
beginResetModel();
modpacks.clear();
endResetModel();
searchState = None;
}
nextSearchOffset = 0;
performPaginatedSearch();
}
void Flame::ListModel::searchRequestFinished()
2020-03-31 06:43:19 +05:30
{
jobPtr.reset();
QJsonParseError parse_error;
QJsonDocument doc = QJsonDocument::fromJson(response, &parse_error);
2022-05-08 12:52:50 +05:30
if (parse_error.error != QJsonParseError::NoError) {
qWarning() << "Error while parsing JSON response from CurseForge at " << parse_error.offset
<< " reason: " << parse_error.errorString();
2020-03-31 06:43:19 +05:30
qWarning() << response;
return;
}
QList<Flame::IndexedPack> newList;
2022-05-08 12:52:50 +05:30
auto packs = Json::ensureArray(doc.object(), "data");
for (auto packRaw : packs) {
auto packObj = packRaw.toObject();
Flame::IndexedPack pack;
2022-05-08 12:52:50 +05:30
try {
Flame::loadIndexedPack(pack, packObj);
newList.append(pack);
2022-05-08 12:52:50 +05:30
} catch (const JSONValidationError& e) {
qWarning() << "Error while loading pack from CurseForge: " << e.cause();
continue;
2020-03-31 06:43:19 +05:30
}
}
2022-05-08 12:52:50 +05:30
if (packs.size() < 25) {
searchState = Finished;
} else {
nextSearchOffset += 25;
searchState = CanPossiblyFetchMore;
}
beginInsertRows(QModelIndex(), modpacks.size(), modpacks.size() + newList.size() - 1);
modpacks.append(newList);
endInsertRows();
2020-03-31 06:43:19 +05:30
}
void Flame::ListModel::searchRequestFailed(QString reason)
2020-03-31 06:43:19 +05:30
{
jobPtr.reset();
2022-05-08 12:52:50 +05:30
if (searchState == ResetRequested) {
beginResetModel();
modpacks.clear();
endResetModel();
nextSearchOffset = 0;
performPaginatedSearch();
} else {
searchState = Finished;
}
2020-03-31 06:43:19 +05:30
}
2022-05-08 12:52:50 +05:30
} // namespace Flame