/* This file is part of Clementine. Copyright 2011-2013, David Sansome Copyright 2012, Olaf Christ Copyright 2014, Krzysztof Sobiecki Copyright 2014, John Maguire 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 "intergalacticfmurlhandler.h" #include #include #include #include #include "core/application.h" #include "core/logging.h" #include "core/taskmanager.h" #include "intergalacticfmservice.h" #include "internet/core/internetmodel.h" #include "playlistparsers/playlistparser.h" IntergalacticFMUrlHandler::IntergalacticFMUrlHandler( Application* app, IntergalacticFMServiceBase* service, QObject* parent) : UrlHandler(parent), app_(app), service_(service), task_id_(0) {} QString IntergalacticFMUrlHandler::scheme() const { return service_->url_scheme(); } QIcon IntergalacticFMUrlHandler::icon() const { return service_->icon(); } UrlHandler::LoadResult IntergalacticFMUrlHandler::StartLoading( const QUrl& url) { QUrl playlist_url = url; playlist_url.setScheme("https"); // Load the playlist QNetworkReply* reply = service_->network()->get(QNetworkRequest(playlist_url)); connect(reply, SIGNAL(finished()), SLOT(LoadPlaylistFinished())); if (!task_id_) task_id_ = app_->task_manager()->StartTask(tr("Loading stream")); return LoadResult(url, LoadResult::WillLoadAsynchronously); } void IntergalacticFMUrlHandler::LoadPlaylistFinished() { QNetworkReply* reply = qobject_cast(sender()); app_->task_manager()->SetTaskFinished(task_id_); task_id_ = 0; QUrl original_url(reply->url()); original_url.setScheme(scheme()); if (reply->error() != QNetworkReply::NoError) { // TODO((David Sansome): Error handling qLog(Error) << reply->errorString(); emit AsyncLoadComplete(LoadResult(original_url, LoadResult::Error)); return; } // Parse the playlist PlaylistParser parser(nullptr); QList songs = parser.LoadFromDevice(reply); qLog(Info) << "Loading station finished, got" << songs.count() << "songs"; // Failed to get playlist? if (songs.count() == 0) { qLog(Error) << "Error loading" << scheme() << "playlist"; emit AsyncLoadComplete(LoadResult(original_url, LoadResult::Error)); return; } emit AsyncLoadComplete( LoadResult(original_url, LoadResult::TrackAvailable, songs[0].url())); }