2018-08-09 18:10:03 +02:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
|
|
|
|
*
|
|
|
|
* Strawberry 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.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
#include "core/logging.h"
|
|
|
|
#include "internetmodel.h"
|
|
|
|
#include "internetservice.h"
|
2018-10-17 23:49:02 +02:00
|
|
|
#ifdef HAVE_STREAM_TIDAL
|
|
|
|
# include "tidal/tidalservice.h"
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STREAM_DEEZER
|
|
|
|
# include "deezer/deezerservice.h"
|
|
|
|
#endif
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-09-08 12:38:02 +02:00
|
|
|
QMap<Song::Source, InternetService*>* InternetModel::sServices = nullptr;
|
2018-08-09 18:10:03 +02:00
|
|
|
|
|
|
|
InternetModel::InternetModel(Application *app, QObject *parent)
|
|
|
|
: QStandardItemModel(parent),
|
|
|
|
app_(app) {
|
|
|
|
|
2018-09-08 12:38:02 +02:00
|
|
|
if (!sServices) sServices = new QMap<Song::Source, InternetService*>;
|
2018-08-09 18:10:03 +02:00
|
|
|
Q_ASSERT(sServices->isEmpty());
|
2018-10-17 23:49:02 +02:00
|
|
|
#ifdef HAVE_STREAM_TIDAL
|
2018-08-09 18:10:03 +02:00
|
|
|
AddService(new TidalService(app, this));
|
2018-10-17 23:49:02 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STREAM_DEEZER
|
2018-10-14 00:08:33 +02:00
|
|
|
AddService(new DeezerService(app, this));
|
2018-10-17 23:49:02 +02:00
|
|
|
#endif
|
2018-08-09 18:10:03 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void InternetModel::AddService(InternetService *service) {
|
|
|
|
|
|
|
|
qLog(Debug) << "Adding internet service:" << service->name();
|
2018-09-08 12:38:02 +02:00
|
|
|
sServices->insert(service->source(), service);
|
2018-08-09 18:10:03 +02:00
|
|
|
connect(service, SIGNAL(destroyed()), SLOT(ServiceDeleted()));
|
|
|
|
if (service->has_initial_load_settings()) service->InitialLoadSettings();
|
|
|
|
else service->ReloadSettings();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void InternetModel::RemoveService(InternetService *service) {
|
|
|
|
|
2018-09-08 12:38:02 +02:00
|
|
|
if (!sServices->contains(service->source())) return;
|
|
|
|
sServices->remove(service->source());
|
2018-08-09 18:10:03 +02:00
|
|
|
disconnect(service, 0, this, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void InternetModel::ServiceDeleted() {
|
|
|
|
|
|
|
|
InternetService *service = qobject_cast<InternetService*>(sender());
|
|
|
|
if (service) RemoveService(service);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-08 12:38:02 +02:00
|
|
|
InternetService *InternetModel::ServiceBySource(const Song::Source &source) {
|
2018-08-09 18:10:03 +02:00
|
|
|
|
2018-09-08 12:38:02 +02:00
|
|
|
if (sServices->contains(source)) return sServices->value(source);
|
2018-08-09 18:10:03 +02:00
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void InternetModel::ReloadSettings() {
|
|
|
|
for (InternetService *service : sServices->values()) {
|
|
|
|
service->ReloadSettings();
|
|
|
|
}
|
|
|
|
}
|