From c09350b7c9adf6327f0a0475c897a71dd23b6cae Mon Sep 17 00:00:00 2001 From: Orangerot Date: Thu, 15 Aug 2024 21:24:28 +0200 Subject: feat(SportModel): request API, parse and display Model --- src/model/Sport.cpp | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 67 insertions(+), 1 deletion(-) (limited to 'src/model/Sport.cpp') diff --git a/src/model/Sport.cpp b/src/model/Sport.cpp index 21b9b9f..38173ce 100644 --- a/src/model/Sport.cpp +++ b/src/model/Sport.cpp @@ -1,7 +1,9 @@ - #include "Sport.h" // categories +#include +#include +#include #include // sorting and filtering @@ -18,6 +20,70 @@ #include #include +namespace { + const QString &k_requestUrl = "https://sph-s-api.olympics.com/summer/schedules/api/ENG/schedule/discipline/ARC"; +} + +SportModel::SportModel(QObject *parent) : QAbstractListModel(parent) { +} + +int SportModel::rowCount(const QModelIndex &parent) const { + Q_UNUSED(parent); + return m_sportList.size(); +} + +QVariant SportModel::data(const QModelIndex &index, int role) const { + if (index.isValid() && index.row() >= 0 && index.row() < m_sportList.size()) { + QString sportName = m_sportList[index.row()]; + + return sportName; + // switch ((Role) role) { + // case SportName: + // } + } + + return {}; +} + + +QHash SportModel::roleNames() const { + QHash names; + names[SportName] = "sportName"; + + return names; +} + +void SportModel::request() { + m_reply = m_networkManager.get(QNetworkRequest( k_requestUrl )); + qDebug() << m_reply; + connect(m_reply, &QNetworkReply::finished, this, &SportModel::parseData); +} + +void SportModel::parseData() { + + if (m_reply->error() == QNetworkReply::NoError) { + beginResetModel(); + // qDeleteAll(m_sportList); + // m_sportList.clear(); + + + + QByteArray strReply = m_reply->readAll(); + + //parse json + // qDebug() << "Response:" << strReply; + QJsonDocument jsonDocument = QJsonDocument::fromJson(strReply); + + QJsonArray sports = jsonDocument["units"].toArray(); + for (const auto &sport : sports) { + QJsonObject entry = sport.toObject(); + qDebug() << entry["eventUnitName"].toString(); + m_sportList << entry["eventUnitName"].toString(); + } + endResetModel(); + } +} + // QJsonArray filter function, provide with input array and evaluation function QJsonArray filter(QJsonArray input, function eval) { QJsonArray output; -- cgit v1.2.3