/* This file is part of Clementine. Copyright 2012, David Sansome Clementine 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, either version 3 of the License, or (at your option) any later version. Clementine 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 Clementine. If not, see . */ #include "gpoddertoptagsmodel.h" #include "gpoddertoptagspage.h" #include "podcast.h" #include "core/closure.h" #include #include GPodderTopTagsModel::GPodderTopTagsModel(mygpo::ApiRequest* api, Application* app, QObject* parent) : PodcastDiscoveryModel(app, parent), api_(api) { } bool GPodderTopTagsModel::hasChildren(const QModelIndex& parent) const { if (parent.isValid() && parent.data(Role_Type).toInt() == Type_Folder) { return true; } return PodcastDiscoveryModel::hasChildren(parent); } bool GPodderTopTagsModel::canFetchMore(const QModelIndex& parent) const { if (parent.isValid() && parent.data(Role_Type).toInt() == Type_Folder && parent.data(Role_HasLazyLoaded).toBool() == false) { return true; } return PodcastDiscoveryModel::canFetchMore(parent); } void GPodderTopTagsModel::fetchMore(const QModelIndex& parent) { if (!parent.isValid() || parent.data(Role_Type).toInt() != Type_Folder || parent.data(Role_HasLazyLoaded).toBool()) { return; } setData(parent, true, Role_HasLazyLoaded); // Create a little Loading... item. itemFromIndex(parent)->appendRow(CreateLoadingIndicator()); mygpo::PodcastListPtr list( api_->podcastsOfTag(GPodderTopTagsPage::kMaxTagCount, parent.data().toString())); NewClosure(list, SIGNAL(finished()), this, SLOT(PodcastsOfTagFinished(QModelIndex,mygpo::PodcastList*)), parent, list.data()); NewClosure(list, SIGNAL(parseError()), this, SLOT(PodcastsOfTagFailed(QModelIndex,mygpo::PodcastList*)), parent, list.data()); NewClosure(list, SIGNAL(requestError(QNetworkReply::NetworkError)), this, SLOT(PodcastsOfTagFailed(QModelIndex,mygpo::PodcastList*)), parent, list.data()); } void GPodderTopTagsModel::PodcastsOfTagFinished(const QModelIndex& parent, mygpo::PodcastList* list) { QStandardItem* parent_item = itemFromIndex(parent); if (!parent_item) return; // Remove the Loading... item. while (parent_item->hasChildren()) { parent_item->removeRow(0); } foreach (mygpo::PodcastPtr gpo_podcast, list->list()) { Podcast podcast; podcast.InitFromGpo(gpo_podcast.data()); parent_item->appendRow(CreatePodcastItem(podcast)); } } void GPodderTopTagsModel::PodcastsOfTagFailed(const QModelIndex& parent, mygpo::PodcastList* list) { QStandardItem* parent_item = itemFromIndex(parent); if (!parent_item) return; // Remove the Loading... item. while (parent_item->hasChildren()) { parent_item->removeRow(0); } if (QMessageBox::warning( NULL, tr("Failed to fetch podcasts"), tr("There was a problem communicating with gpodder.net"), QMessageBox::Retry | QMessageBox::Close, QMessageBox::Retry) != QMessageBox::Retry) { return; } // Try fetching the list again. setData(parent, false, Role_HasLazyLoaded); fetchMore(parent); }