100 lines
3.2 KiB
C++
100 lines
3.2 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
* ----
|
|
*
|
|
* This program 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "onlineservice.h"
|
|
#include "mpd-interface/song.h"
|
|
|
|
static const QString constUrlGuard=QLatin1String("#{SONG_DETAILS}");
|
|
static const QString constDeliminator=QLatin1String("<@>");
|
|
|
|
Song & OnlineService::encode(Song &song)
|
|
{
|
|
song.file=song.file+constUrlGuard+
|
|
song.artist.replace(constDeliminator, " ")+constDeliminator+
|
|
song.albumartist.replace(constDeliminator, " ")+constDeliminator+
|
|
song.album.replace(constDeliminator, " ")+constDeliminator+
|
|
song.title.replace(constDeliminator, " ")+constDeliminator+
|
|
song.genre.replace(constDeliminator, " ")+constDeliminator+
|
|
QString::number(song.time)+constDeliminator+
|
|
QString::number(song.year)+constDeliminator+
|
|
QString::number(song.track)+constDeliminator+
|
|
QString::number(song.disc)+constDeliminator+
|
|
song.onlineService();
|
|
return song;
|
|
}
|
|
|
|
bool OnlineService::decode(Song &song)
|
|
{
|
|
if (!song.file.startsWith(QLatin1String("http://")) && !song.file.startsWith(QLatin1String("https://"))) {
|
|
return false;
|
|
}
|
|
|
|
int pos=song.file.indexOf(constUrlGuard);
|
|
|
|
if (pos>0) {
|
|
QStringList parts=song.file.mid(pos+constUrlGuard.length()).split(constDeliminator);
|
|
if (parts.length()>=10) {
|
|
song.artist=parts.at(0);
|
|
song.albumartist=parts.at(1);
|
|
song.album=parts.at(2);
|
|
song.title=parts.at(3);
|
|
song.genre=parts.at(4);
|
|
song.time=parts.at(5).toUInt();
|
|
song.year=parts.at(6).toUInt();
|
|
song.track=parts.at(7).toUInt();
|
|
song.disc=parts.at(8).toUInt();
|
|
song.type=Song::OnlineSvrTrack;
|
|
song.setIsFromOnlineService(parts.at(9));
|
|
song.file=song.file.left(pos);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static QSet<QString> servicesWithCovers;
|
|
|
|
QString OnlineService::iconPath(const QString &srv)
|
|
{
|
|
QString file=QString(CANTATA_SYS_ICONS_DIR+srv+".png");
|
|
if (!QFile::exists(file)) {
|
|
file=QString(CANTATA_SYS_ICONS_DIR+srv+".svg");
|
|
}
|
|
return file;
|
|
}
|
|
|
|
bool OnlineService::isPodcasts(const QString &srv)
|
|
{
|
|
return QLatin1String("podcasts")==srv;
|
|
}
|
|
|
|
bool OnlineService::showLogoAsCover(const QString &srv)
|
|
{
|
|
return !servicesWithCovers.contains(srv);
|
|
}
|
|
|
|
void OnlineService::useCovers(const QString &name)
|
|
{
|
|
servicesWithCovers.insert(name);
|
|
}
|