Clementine-audio-player-Mac.../src/internet/podcasts/fixedopmlpage.cpp

73 lines
2.3 KiB
C++
Raw Normal View History

2012-03-07 16:31:12 +01:00
/* This file is part of Clementine.
Copyright 2012, David Sansome <me@davidsansome.com>
2014-11-02 19:50:39 +01:00
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
Copyright 2014, John Maguire <john.maguire@gmail.com>
2012-03-07 16:31:12 +01:00
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.
2012-03-07 16:31:12 +01:00
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.
2012-03-07 16:31:12 +01:00
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fixedopmlpage.h"
2014-12-13 02:24:20 +01:00
#include <QMessageBox>
2020-09-18 16:15:19 +02:00
#include "core/closure.h"
2012-03-07 16:31:12 +01:00
#include "podcastdiscoverymodel.h"
#include "podcasturlloader.h"
FixedOpmlPage::FixedOpmlPage(const QUrl& opml_url, const QString& title,
const QIcon& icon, Application* app,
QWidget* parent)
: AddPodcastPage(app, parent),
loader_(new PodcastUrlLoader(this)),
opml_url_(opml_url),
done_initial_load_(false) {
2012-03-07 16:31:12 +01:00
setWindowTitle(title);
setWindowIcon(icon);
}
void FixedOpmlPage::Show() {
if (!done_initial_load_) {
emit Busy(true);
done_initial_load_ = true;
PodcastUrlLoaderReply* reply = loader_->Load(opml_url_);
NewClosure(reply, SIGNAL(Finished(bool)), this,
SLOT(LoadFinished(PodcastUrlLoaderReply*)), reply);
2012-03-07 16:31:12 +01:00
}
}
void FixedOpmlPage::LoadFinished(PodcastUrlLoaderReply* reply) {
reply->deleteLater();
emit Busy(false);
if (!reply->is_success()) {
QMessageBox::warning(this, tr("Failed to load podcast"),
reply->error_text(), QMessageBox::Close);
return;
}
switch (reply->result_type()) {
case PodcastUrlLoaderReply::Type_Podcast:
for (const Podcast& podcast : reply->podcast_results()) {
model()->appendRow(model()->CreatePodcastItem(podcast));
}
break;
2012-03-07 16:31:12 +01:00
case PodcastUrlLoaderReply::Type_Opml:
model()->CreateOpmlContainerItems(reply->opml_results(),
model()->invisibleRootItem());
break;
2012-03-07 16:31:12 +01:00
}
}