strawberry-audio-player-win.../src/internet/internetplaylistitem.cpp

85 lines
2.5 KiB
C++
Raw Normal View History

2018-08-09 18:10:03 +02:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2010, David Sansome <me@davidsansome.com>
2021-03-20 21:14:47 +01:00
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-08-09 18:10:03 +02:00
*
* 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 <QApplication>
#include <QVariant>
#include "internetplaylistitem.h"
#include "internetservice.h"
2022-05-13 18:15:04 +02:00
#include "core/sqlrow.h"
2018-08-09 18:10:03 +02:00
2020-06-14 18:58:24 +02:00
InternetPlaylistItem::InternetPlaylistItem(const Song::Source source)
2021-07-11 07:40:57 +02:00
: PlaylistItem(source),
source_(source) {}
2018-08-09 18:10:03 +02:00
2020-09-10 22:04:11 +02:00
InternetPlaylistItem::InternetPlaylistItem(const Song &metadata)
: PlaylistItem(metadata.source()),
source_(metadata.source()),
metadata_(metadata) {
InitMetadata();
}
InternetPlaylistItem::InternetPlaylistItem(InternetServicePtr service, const Song &metadata)
2020-09-10 22:04:11 +02:00
: PlaylistItem(metadata.source()),
2018-09-08 12:38:02 +02:00
source_(service->source()),
2018-08-09 18:10:03 +02:00
metadata_(metadata) {
InitMetadata();
}
bool InternetPlaylistItem::InitFromQuery(const SqlRow &query) {
metadata_.InitFromQuery(query, false, Song::kRowIdColumns.count() * 3);
2018-08-09 18:10:03 +02:00
InitMetadata();
return true;
2018-08-09 18:10:03 +02:00
}
QVariant InternetPlaylistItem::DatabaseValue(DatabaseColumn column) const {
2021-07-11 09:49:38 +02:00
return PlaylistItem::DatabaseValue(column);
2018-08-09 18:10:03 +02:00
}
void InternetPlaylistItem::InitMetadata() {
2018-09-08 12:38:02 +02:00
if (metadata_.title().isEmpty()) metadata_.set_title(metadata_.url().toString());
2023-02-18 14:09:27 +01:00
if (metadata_.source() == Song::Source::Unknown) metadata_.set_source(Song::Source::Stream);
if (metadata_.filetype() == Song::FileType::Unknown) metadata_.set_filetype(Song::FileType::Stream);
2018-08-09 18:10:03 +02:00
metadata_.set_valid(true);
2018-08-09 18:10:03 +02:00
}
Song InternetPlaylistItem::Metadata() const {
2018-08-09 18:10:03 +02:00
if (HasTemporaryMetadata()) return temp_metadata_;
return metadata_;
2018-08-09 18:10:03 +02:00
}
QUrl InternetPlaylistItem::Url() const { return metadata_.url(); }
void InternetPlaylistItem::SetArtManual(const QUrl &cover_url) {
metadata_.set_art_manual(cover_url);
temp_metadata_.set_art_manual(cover_url);
}