2014-12-17 19:02:21 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2012-2013, Alan Briolat <alan.briolat@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
|
|
|
Copyright 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include "subsonicurlhandler.h"
|
|
|
|
|
2015-04-11 22:52:31 +02:00
|
|
|
#include <QUrlQuery>
|
|
|
|
|
2012-01-10 17:52:54 +01:00
|
|
|
#include "subsonicservice.h"
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
SubsonicUrlHandler::SubsonicUrlHandler(SubsonicService* service,
|
|
|
|
QObject* parent)
|
|
|
|
: UrlHandler(parent), service_(service) {}
|
2012-01-10 17:52:54 +01:00
|
|
|
|
|
|
|
UrlHandler::LoadResult SubsonicUrlHandler::StartLoading(const QUrl& url) {
|
|
|
|
if (service_->login_state() != SubsonicService::LoginState_Loggedin)
|
2021-06-19 07:21:36 +02:00
|
|
|
return LoadResult(url, LoadResult::Error);
|
2012-01-10 17:52:54 +01:00
|
|
|
|
2018-05-23 15:23:21 +02:00
|
|
|
QUrlQuery id(url.query());
|
2013-01-09 23:20:55 +01:00
|
|
|
QUrl newurl = service_->BuildRequestUrl("stream");
|
2016-04-20 00:22:23 +02:00
|
|
|
QUrlQuery url_query(newurl.query());
|
2018-05-23 15:23:21 +02:00
|
|
|
url_query.addQueryItem("id", id.queryItemValue("id"));
|
2015-04-11 22:52:31 +02:00
|
|
|
newurl.setQuery(url_query);
|
2012-01-10 17:52:54 +01:00
|
|
|
return LoadResult(url, LoadResult::TrackAvailable, newurl);
|
|
|
|
}
|