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

105 lines
3.1 KiB
C++
Raw Normal View History

2012-03-05 19:15:45 +01:00
/* This file is part of Clementine.
Copyright 2012, David Sansome <me@davidsansome.com>
Copyright 2014, John Maguire <john.maguire@gmail.com>
2014-11-02 19:50:39 +01:00
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
2012-03-05 19:15:45 +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-05 19:15:45 +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-05 19:15:45 +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 "addpodcastbyurl.h"
#include <QClipboard>
2012-03-05 19:15:45 +01:00
#include <QMessageBox>
2020-09-18 16:15:19 +02:00
#include <QNetworkReply>
2012-03-05 19:15:45 +01:00
2020-09-18 16:15:19 +02:00
#include "core/closure.h"
2014-12-13 02:24:20 +01:00
#include "podcastdiscoverymodel.h"
#include "podcasturlloader.h"
#include "ui/iconloader.h"
2020-09-18 16:15:19 +02:00
#include "ui_addpodcastbyurl.h"
2014-12-13 02:24:20 +01:00
2012-03-05 19:15:45 +01:00
AddPodcastByUrl::AddPodcastByUrl(Application* app, QWidget* parent)
: AddPodcastPage(app, parent),
ui_(new Ui_AddPodcastByUrl),
loader_(new PodcastUrlLoader(this)) {
2012-03-05 19:15:45 +01:00
ui_->setupUi(this);
connect(ui_->go, SIGNAL(clicked()), SLOT(GoClicked()));
setWindowIcon(IconLoader::Load("podcast", IconLoader::Provider));
2012-03-05 19:15:45 +01:00
}
AddPodcastByUrl::~AddPodcastByUrl() { delete ui_; }
2012-03-05 19:15:45 +01:00
void AddPodcastByUrl::SetUrlAndGo(const QUrl& url) {
ui_->url->setText(url.toString());
GoClicked();
}
void AddPodcastByUrl::SetOpml(const OpmlContainer& opml) {
ui_->url->setText(opml.url.toString());
model()->clear();
model()->CreateOpmlContainerItems(opml, model()->invisibleRootItem());
}
2012-03-05 19:15:45 +01:00
void AddPodcastByUrl::GoClicked() {
emit Busy(true);
model()->clear();
PodcastUrlLoaderReply* reply = loader_->Load(ui_->url->text());
ui_->url->setText(reply->url().toString());
NewClosure(reply, SIGNAL(Finished(bool)), this,
SLOT(RequestFinished(PodcastUrlLoaderReply*)), reply);
2012-03-05 19:15:45 +01:00
}
void AddPodcastByUrl::RequestFinished(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;
}
2012-03-07 16:11:56 +01:00
switch (reply->result_type()) {
case PodcastUrlLoaderReply::Type_Podcast:
for (const Podcast& podcast : reply->podcast_results()) {
model()->appendRow(model()->CreatePodcastItem(podcast));
}
break;
case PodcastUrlLoaderReply::Type_Opml:
model()->CreateOpmlContainerItems(reply->opml_results(),
model()->invisibleRootItem());
break;
2012-03-05 19:15:45 +01:00
}
}
void AddPodcastByUrl::Show() {
ui_->url->setFocus();
const QClipboard* clipboard = QApplication::clipboard();
2014-03-03 17:45:31 +01:00
QStringList contents;
contents << clipboard->text(QClipboard::Selection)
<< clipboard->text(QClipboard::Clipboard);
for (const QString& content : contents) {
if (content.contains("://")) {
ui_->url->setText(content);
return;
}
}
}