905 lines
28 KiB
C++
905 lines
28 KiB
C++
/*
|
|
* Strawberry Music Player
|
|
* This file was part of Clementine.
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
*
|
|
* 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 <memory>
|
|
#include <algorithm>
|
|
|
|
#include <QtGlobal>
|
|
#include <QObject>
|
|
#include <QMainWindow>
|
|
#include <QWidget>
|
|
#include <QItemSelectionModel>
|
|
#include <QListWidgetItem>
|
|
#include <QAction>
|
|
#include <QActionGroup>
|
|
#include <QFile>
|
|
#include <QMenu>
|
|
#include <QSet>
|
|
#include <QTimer>
|
|
#include <QVariant>
|
|
#include <QString>
|
|
#include <QStringBuilder>
|
|
#include <QStringList>
|
|
#include <QUrl>
|
|
#include <QImage>
|
|
#include <QPixmap>
|
|
#include <QPainter>
|
|
#include <QNetworkAccessManager>
|
|
#include <QShortcut>
|
|
#include <QSplitter>
|
|
#include <QStatusBar>
|
|
#include <QLabel>
|
|
#include <QListWidget>
|
|
#include <QMessageBox>
|
|
#include <QProgressBar>
|
|
#include <QPushButton>
|
|
#include <QToolButton>
|
|
#include <QKeySequence>
|
|
#include <QtAlgorithms>
|
|
#include <QtEvents>
|
|
#include <QSettings>
|
|
|
|
#include "core/application.h"
|
|
#include "core/iconloader.h"
|
|
#include "core/utilities.h"
|
|
#include "widgets/forcescrollperpixel.h"
|
|
#include "widgets/qsearchfield.h"
|
|
#include "collection/sqlrow.h"
|
|
#include "collection/collectionbackend.h"
|
|
#include "collection/collectionquery.h"
|
|
#include "playlist/songmimedata.h"
|
|
#include "coverproviders.h"
|
|
#include "albumcovermanager.h"
|
|
#include "albumcoversearcher.h"
|
|
#include "albumcoverchoicecontroller.h"
|
|
#include "albumcoverexport.h"
|
|
#include "albumcoverexporter.h"
|
|
#include "albumcoverfetcher.h"
|
|
#include "albumcoverloader.h"
|
|
#include "albumcovermanagerlist.h"
|
|
#include "coversearchstatistics.h"
|
|
#include "coversearchstatisticsdialog.h"
|
|
|
|
#include "ui_albumcovermanager.h"
|
|
|
|
using std::unique_ptr;
|
|
using std::stable_sort;
|
|
|
|
const char *AlbumCoverManager::kSettingsGroup = "CoverManager";
|
|
|
|
AlbumCoverManager::AlbumCoverManager(Application *app, CollectionBackend *collection_backend, QWidget *parent, QNetworkAccessManager *network)
|
|
: QMainWindow(parent),
|
|
ui_(new Ui_CoverManager),
|
|
app_(app),
|
|
album_cover_choice_controller_(new AlbumCoverChoiceController(this)),
|
|
cover_fetcher_(new AlbumCoverFetcher(app_->cover_providers(), this, network)),
|
|
cover_searcher_(nullptr),
|
|
cover_export_(nullptr),
|
|
cover_exporter_(new AlbumCoverExporter(this)),
|
|
artist_icon_(IconLoader::Load("folder-sound" )),
|
|
all_artists_icon_(IconLoader::Load("vinyl" )),
|
|
no_cover_icon_(":/pictures/cdcase.png"),
|
|
no_cover_image_(GenerateNoCoverImage(no_cover_icon_)),
|
|
no_cover_item_icon_(QPixmap::fromImage(no_cover_image_)),
|
|
context_menu_(new QMenu(this)),
|
|
progress_bar_(new QProgressBar(this)),
|
|
abort_progress_(new QPushButton(this)),
|
|
jobs_(0),
|
|
collection_backend_(collection_backend) {
|
|
|
|
ui_->setupUi(this);
|
|
ui_->albums->set_cover_manager(this);
|
|
|
|
// Icons
|
|
ui_->action_fetch->setIcon(IconLoader::Load("download" ));
|
|
ui_->export_covers->setIcon(IconLoader::Load("document-save" ));
|
|
ui_->view->setIcon(IconLoader::Load("view-choose" ));
|
|
ui_->button_fetch->setIcon(IconLoader::Load("download" ));
|
|
ui_->action_add_to_playlist->setIcon(IconLoader::Load("media-play" ));
|
|
ui_->action_load->setIcon(IconLoader::Load("media-play" ));
|
|
|
|
album_cover_choice_controller_->Init(app_);
|
|
|
|
cover_searcher_ = new AlbumCoverSearcher(no_cover_item_icon_, app_, this);
|
|
cover_export_ = new AlbumCoverExport(this);
|
|
|
|
// Set up the status bar
|
|
statusBar()->addPermanentWidget(progress_bar_);
|
|
statusBar()->addPermanentWidget(abort_progress_);
|
|
progress_bar_->hide();
|
|
abort_progress_->hide();
|
|
abort_progress_->setText(tr("Abort"));
|
|
connect(abort_progress_, SIGNAL(clicked()), this, SLOT(CancelRequests()));
|
|
|
|
ui_->albums->setAttribute(Qt::WA_MacShowFocusRect, false);
|
|
ui_->artists->setAttribute(Qt::WA_MacShowFocusRect, false);
|
|
|
|
QShortcut *close = new QShortcut(QKeySequence::Close, this);
|
|
connect(close, SIGNAL(activated()), SLOT(close()));
|
|
|
|
EnableCoversButtons();
|
|
|
|
}
|
|
|
|
AlbumCoverManager::~AlbumCoverManager() {
|
|
CancelRequests();
|
|
delete ui_;
|
|
}
|
|
|
|
void AlbumCoverManager::ReloadSettings() {
|
|
app_->album_cover_loader()->ReloadSettings();
|
|
}
|
|
|
|
CollectionBackend *AlbumCoverManager::backend() const {
|
|
return collection_backend_;
|
|
}
|
|
|
|
void AlbumCoverManager::Init() {
|
|
|
|
// View menu
|
|
QActionGroup *filter_group = new QActionGroup(this);
|
|
filter_all_ = filter_group->addAction(tr("All albums"));
|
|
filter_with_covers_ = filter_group->addAction(tr("Albums with covers"));
|
|
filter_without_covers_ = filter_group->addAction(tr("Albums without covers"));
|
|
filter_all_->setCheckable(true);
|
|
filter_with_covers_->setCheckable(true);
|
|
filter_without_covers_->setCheckable(true);
|
|
filter_group->setExclusive(true);
|
|
filter_all_->setChecked(true);
|
|
|
|
QMenu *view_menu = new QMenu(this);
|
|
view_menu->addActions(filter_group->actions());
|
|
|
|
ui_->view->setMenu(view_menu);
|
|
|
|
// Context menu
|
|
|
|
QList<QAction*> actions = album_cover_choice_controller_->GetAllActions();
|
|
|
|
connect(album_cover_choice_controller_->cover_from_file_action(), SIGNAL(triggered()), this, SLOT(LoadCoverFromFile()));
|
|
connect(album_cover_choice_controller_->cover_to_file_action(), SIGNAL(triggered()), this, SLOT(SaveCoverToFile()));
|
|
connect(album_cover_choice_controller_->cover_from_url_action(), SIGNAL(triggered()), this, SLOT(LoadCoverFromURL()));
|
|
connect(album_cover_choice_controller_->search_for_cover_action(), SIGNAL(triggered()), this, SLOT(SearchForCover()));
|
|
connect(album_cover_choice_controller_->unset_cover_action(), SIGNAL(triggered()), this, SLOT(UnsetCover()));
|
|
connect(album_cover_choice_controller_->show_cover_action(), SIGNAL(triggered()), this, SLOT(ShowCover()));
|
|
|
|
connect(cover_exporter_, SIGNAL(AlbumCoversExportUpdate(int, int, int)), SLOT(UpdateExportStatus(int, int, int)));
|
|
|
|
context_menu_->addActions(actions);
|
|
context_menu_->addSeparator();
|
|
context_menu_->addAction(ui_->action_load);
|
|
context_menu_->addAction(ui_->action_add_to_playlist);
|
|
|
|
ui_->albums->installEventFilter(this);
|
|
|
|
// Connections
|
|
connect(ui_->artists, SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)), SLOT(ArtistChanged(QListWidgetItem*)));
|
|
connect(ui_->filter, SIGNAL(textChanged(QString)), SLOT(UpdateFilter()));
|
|
connect(filter_group, SIGNAL(triggered(QAction*)), SLOT(UpdateFilter()));
|
|
connect(ui_->view, SIGNAL(clicked()), ui_->view, SLOT(showMenu()));
|
|
connect(ui_->button_fetch, SIGNAL(clicked()), SLOT(FetchAlbumCovers()));
|
|
connect(ui_->export_covers, SIGNAL(clicked()), SLOT(ExportCovers()));
|
|
connect(cover_fetcher_, SIGNAL(AlbumCoverFetched(const quint64, const QUrl&, const QImage&, const CoverSearchStatistics&)), SLOT(AlbumCoverFetched(const quint64, const QUrl&, const QImage&, const CoverSearchStatistics&)));
|
|
connect(ui_->action_fetch, SIGNAL(triggered()), SLOT(FetchSingleCover()));
|
|
connect(ui_->albums, SIGNAL(doubleClicked(QModelIndex)), SLOT(AlbumDoubleClicked(QModelIndex)));
|
|
connect(ui_->action_add_to_playlist, SIGNAL(triggered()), SLOT(AddSelectedToPlaylist()));
|
|
connect(ui_->action_load, SIGNAL(triggered()), SLOT(LoadSelectedToPlaylist()));
|
|
|
|
// Restore settings
|
|
QSettings s;
|
|
s.beginGroup(kSettingsGroup);
|
|
|
|
restoreGeometry(s.value("geometry").toByteArray());
|
|
if (!ui_->splitter->restoreState(s.value("splitter_state").toByteArray())) {
|
|
// Sensible default size for the artists view
|
|
ui_->splitter->setSizes(QList<int>() << 200 << width() - 200);
|
|
}
|
|
|
|
connect(app_->album_cover_loader(), SIGNAL(ImageLoaded(const quint64, const QUrl&, const QImage&)), SLOT(CoverImageLoaded(const quint64, const QUrl&, const QImage&)));
|
|
|
|
cover_searcher_->Init(cover_fetcher_);
|
|
|
|
new ForceScrollPerPixel(ui_->albums, this);
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::showEvent(QShowEvent *) {
|
|
Reset();
|
|
}
|
|
|
|
void AlbumCoverManager::closeEvent(QCloseEvent *e) {
|
|
|
|
if (!cover_fetching_tasks_.isEmpty()) {
|
|
std::unique_ptr<QMessageBox> message_box(new QMessageBox(QMessageBox::Question, tr("Really cancel?"), tr("Closing this window will stop searching for album covers."), QMessageBox::Abort, this));
|
|
message_box->addButton(tr("Don't stop!"), QMessageBox::AcceptRole);
|
|
|
|
if (message_box->exec() != QMessageBox::Abort) {
|
|
e->ignore();
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Save geometry
|
|
QSettings s;
|
|
s.beginGroup(kSettingsGroup);
|
|
|
|
s.setValue("geometry", saveGeometry());
|
|
s.setValue("splitter_state", ui_->splitter->saveState());
|
|
|
|
// Cancel any outstanding requests
|
|
CancelRequests();
|
|
}
|
|
|
|
void AlbumCoverManager::CancelRequests() {
|
|
|
|
app_->album_cover_loader()->CancelTasks(QSet<quint64>::fromList(cover_loading_tasks_.keys()));
|
|
cover_loading_tasks_.clear();
|
|
|
|
cover_exporter_->Cancel();
|
|
|
|
cover_fetching_tasks_.clear();
|
|
cover_fetcher_->Clear();
|
|
progress_bar_->hide();
|
|
abort_progress_->hide();
|
|
statusBar()->clearMessage();
|
|
EnableCoversButtons();
|
|
|
|
}
|
|
|
|
static bool CompareNocase(const QString &left, const QString &right) {
|
|
return QString::localeAwareCompare(left, right) < 0;
|
|
}
|
|
|
|
static bool CompareAlbumNameNocase(const CollectionBackend::Album &left, const CollectionBackend::Album &right) {
|
|
return CompareNocase(left.album_name, right.album_name);
|
|
}
|
|
|
|
void AlbumCoverManager::Reset() {
|
|
|
|
EnableCoversButtons();
|
|
|
|
ui_->artists->clear();
|
|
new QListWidgetItem(all_artists_icon_, tr("All artists"), ui_->artists, All_Artists);
|
|
new QListWidgetItem(artist_icon_, tr("Various artists"), ui_->artists, Various_Artists);
|
|
|
|
QStringList artists(collection_backend_->GetAllArtistsWithAlbums());
|
|
std::stable_sort(artists.begin(), artists.end(), CompareNocase);
|
|
|
|
for (const QString &artist : artists) {
|
|
if (artist.isEmpty()) continue;
|
|
new QListWidgetItem(artist_icon_, artist, ui_->artists, Specific_Artist);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::EnableCoversButtons() {
|
|
ui_->button_fetch->setEnabled(app_->cover_providers()->HasAnyProviders());
|
|
ui_->export_covers->setEnabled(true);
|
|
}
|
|
|
|
void AlbumCoverManager::DisableCoversButtons() {
|
|
ui_->button_fetch->setEnabled(false);
|
|
ui_->export_covers->setEnabled(false);
|
|
}
|
|
|
|
void AlbumCoverManager::ArtistChanged(QListWidgetItem *current) {
|
|
|
|
if (!current) return;
|
|
|
|
QString artist;
|
|
if (current->type() == Specific_Artist) artist = current->text();
|
|
|
|
ui_->albums->clear();
|
|
context_menu_items_.clear();
|
|
CancelRequests();
|
|
|
|
// Get the list of albums. How we do it depends on what thing we have selected in the artist list.
|
|
CollectionBackend::AlbumList albums;
|
|
switch (current->type()) {
|
|
case Various_Artists: albums = collection_backend_->GetCompilationAlbums(); break;
|
|
case Specific_Artist: albums = collection_backend_->GetAlbumsByArtist(current->text()); break;
|
|
case All_Artists:
|
|
default: albums = collection_backend_->GetAllAlbums(); break;
|
|
}
|
|
|
|
// Sort by album name. The list is already sorted by sqlite but it was done case sensitively.
|
|
std::stable_sort(albums.begin(), albums.end(), CompareAlbumNameNocase);
|
|
|
|
for (const CollectionBackend::Album &info : albums) {
|
|
// Don't show songs without an album, obviously
|
|
if (info.album_name.isEmpty()) continue;
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(no_cover_item_icon_, info.album_name, ui_->albums);
|
|
item->setData(Role_ArtistName, info.artist);
|
|
item->setData(Role_AlbumArtistName, info.album_artist);
|
|
item->setData(Role_AlbumName, info.album_name);
|
|
item->setData(Role_FirstUrl, info.first_url);
|
|
item->setData(Qt::TextAlignmentRole, QVariant(Qt::AlignTop | Qt::AlignHCenter));
|
|
item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDragEnabled);
|
|
item->setToolTip(info.artist + " - " + info.album_name);
|
|
|
|
QString effective_artist = EffectiveAlbumArtistName(*item);
|
|
if (!artist.isEmpty()) {
|
|
item->setToolTip(effective_artist + " - " + info.album_name);
|
|
}
|
|
else {
|
|
item->setToolTip(info.album_name);
|
|
}
|
|
|
|
if (!info.art_automatic.isEmpty() || !info.art_manual.isEmpty()) {
|
|
quint64 id = app_->album_cover_loader()->LoadImageAsync(cover_loader_options_, info.art_automatic, info.art_manual, info.first_url.toLocalFile());
|
|
item->setData(Role_PathAutomatic, info.art_automatic);
|
|
item->setData(Role_PathManual, info.art_manual);
|
|
cover_loading_tasks_[id] = item;
|
|
}
|
|
}
|
|
|
|
UpdateFilter();
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::CoverImageLoaded(const quint64 id, const QUrl &cover_url, const QImage &image) {
|
|
|
|
if (!cover_loading_tasks_.contains(id)) return;
|
|
|
|
QListWidgetItem *item = cover_loading_tasks_.take(id);
|
|
|
|
if (image.isNull()) return;
|
|
|
|
item->setIcon(QPixmap::fromImage(image));
|
|
UpdateFilter();
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::UpdateFilter() {
|
|
|
|
const QString filter = ui_->filter->text().toLower();
|
|
const bool hide_with_covers = filter_without_covers_->isChecked();
|
|
const bool hide_without_covers = filter_with_covers_->isChecked();
|
|
|
|
HideCovers hide = Hide_None;
|
|
if (hide_with_covers) {
|
|
hide = Hide_WithCovers;
|
|
}
|
|
else if (hide_without_covers) {
|
|
hide = Hide_WithoutCovers;
|
|
}
|
|
|
|
qint32 total_count = 0;
|
|
qint32 without_cover = 0;
|
|
|
|
for (int i = 0; i < ui_->albums->count(); ++i) {
|
|
QListWidgetItem *item = ui_->albums->item(i);
|
|
bool should_hide = ShouldHide(*item, filter, hide);
|
|
item->setHidden(should_hide);
|
|
|
|
if (!should_hide) {
|
|
total_count++;
|
|
if (!ItemHasCover(*item)) {
|
|
without_cover++;
|
|
}
|
|
}
|
|
}
|
|
|
|
ui_->total_albums->setText(QString::number(total_count));
|
|
ui_->without_cover->setText(QString::number(without_cover));
|
|
|
|
}
|
|
|
|
bool AlbumCoverManager::ShouldHide(const QListWidgetItem &item, const QString &filter, HideCovers hide) const {
|
|
|
|
bool has_cover = ItemHasCover(item);
|
|
if (hide == Hide_WithCovers && has_cover) {
|
|
return true;
|
|
}
|
|
else if (hide == Hide_WithoutCovers && !has_cover) {
|
|
return true;
|
|
}
|
|
|
|
if (filter.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
QStringList query = filter.split(' ');
|
|
for (const QString &s : query) {
|
|
bool in_text = item.text().contains(s, Qt::CaseInsensitive);
|
|
bool in_artist = item.data(Role_ArtistName).toString().contains(s, Qt::CaseInsensitive);
|
|
bool in_albumartist = item.data(Role_AlbumArtistName).toString().contains(s, Qt::CaseInsensitive);
|
|
if (!in_text && !in_artist && !in_albumartist) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::FetchAlbumCovers() {
|
|
|
|
for (int i = 0; i < ui_->albums->count(); ++i) {
|
|
QListWidgetItem *item = ui_->albums->item(i);
|
|
if (item->isHidden()) continue;
|
|
if (ItemHasCover(*item)) continue;
|
|
|
|
quint64 id = cover_fetcher_->FetchAlbumCover(EffectiveAlbumArtistName(*item), item->data(Role_AlbumName).toString(), true);
|
|
cover_fetching_tasks_[id] = item;
|
|
jobs_++;
|
|
}
|
|
|
|
if (!cover_fetching_tasks_.isEmpty()) ui_->button_fetch->setEnabled(false);
|
|
|
|
progress_bar_->setMaximum(jobs_);
|
|
progress_bar_->show();
|
|
abort_progress_->show();
|
|
fetch_statistics_ = CoverSearchStatistics();
|
|
UpdateStatusText();
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::AlbumCoverFetched(const quint64 id, const QUrl &cover_url, const QImage &image, const CoverSearchStatistics &statistics) {
|
|
|
|
if (!cover_fetching_tasks_.contains(id))
|
|
return;
|
|
|
|
QListWidgetItem *item = cover_fetching_tasks_.take(id);
|
|
if (!image.isNull()) {
|
|
SaveAndSetCover(item, cover_url, image);
|
|
}
|
|
|
|
if (cover_fetching_tasks_.isEmpty()) {
|
|
EnableCoversButtons();
|
|
}
|
|
|
|
fetch_statistics_ += statistics;
|
|
UpdateStatusText();
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::UpdateStatusText() {
|
|
|
|
QString message = tr("Got %1 covers out of %2 (%3 failed)")
|
|
.arg(fetch_statistics_.chosen_images_)
|
|
.arg(jobs_)
|
|
.arg(fetch_statistics_.missing_images_);
|
|
|
|
if (fetch_statistics_.bytes_transferred_) {
|
|
message += ", " + tr("%1 transferred").arg(Utilities::PrettySize(fetch_statistics_.bytes_transferred_));
|
|
}
|
|
|
|
statusBar()->showMessage(message);
|
|
progress_bar_->setValue(fetch_statistics_.chosen_images_ + fetch_statistics_.missing_images_);
|
|
|
|
if (cover_fetching_tasks_.isEmpty()) {
|
|
QTimer::singleShot(2000, statusBar(), SLOT(clearMessage()));
|
|
progress_bar_->hide();
|
|
abort_progress_->hide();
|
|
|
|
CoverSearchStatisticsDialog *dialog = new CoverSearchStatisticsDialog(this);
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose);
|
|
dialog->Show(fetch_statistics_);
|
|
|
|
jobs_ = 0;
|
|
}
|
|
|
|
}
|
|
|
|
bool AlbumCoverManager::eventFilter(QObject *obj, QEvent *event) {
|
|
|
|
if (obj == ui_->albums && event->type() == QEvent::ContextMenu) {
|
|
context_menu_items_ = ui_->albums->selectedItems();
|
|
if (context_menu_items_.isEmpty()) return false;
|
|
|
|
bool some_with_covers = false;
|
|
|
|
for (QListWidgetItem *item : context_menu_items_) {
|
|
if (ItemHasCover(*item)) some_with_covers = true;
|
|
}
|
|
|
|
album_cover_choice_controller_->cover_from_file_action()->setEnabled(context_menu_items_.size() == 1);
|
|
album_cover_choice_controller_->cover_from_url_action()->setEnabled(context_menu_items_.size() == 1);
|
|
album_cover_choice_controller_->show_cover_action()->setEnabled(some_with_covers && context_menu_items_.size() == 1);
|
|
album_cover_choice_controller_->unset_cover_action()->setEnabled(some_with_covers);
|
|
album_cover_choice_controller_->search_for_cover_action()->setEnabled(app_->cover_providers()->HasAnyProviders());
|
|
|
|
QContextMenuEvent *e = static_cast<QContextMenuEvent*>(event);
|
|
context_menu_->popup(e->globalPos());
|
|
return true;
|
|
}
|
|
return QMainWindow::eventFilter(obj, event);
|
|
}
|
|
|
|
Song AlbumCoverManager::GetSingleSelectionAsSong() {
|
|
return context_menu_items_.size() != 1 ? Song() : ItemAsSong(context_menu_items_[0]);
|
|
}
|
|
|
|
Song AlbumCoverManager::GetFirstSelectedAsSong() {
|
|
return context_menu_items_.isEmpty() ? Song() : ItemAsSong(context_menu_items_[0]);
|
|
}
|
|
|
|
Song AlbumCoverManager::ItemAsSong(QListWidgetItem *item) {
|
|
|
|
Song result(Song::Source_Collection);
|
|
|
|
QString title = item->data(Role_AlbumName).toString();
|
|
QString artist_name = EffectiveAlbumArtistName(*item);
|
|
if (!artist_name.isEmpty()) {
|
|
result.set_title(artist_name + " - " + title);
|
|
}
|
|
else {
|
|
result.set_title(title);
|
|
}
|
|
|
|
result.set_artist(item->data(Role_ArtistName).toString());
|
|
result.set_albumartist(item->data(Role_AlbumArtistName).toString());
|
|
result.set_album(item->data(Role_AlbumName).toString());
|
|
|
|
result.set_url(item->data(Role_FirstUrl).toUrl());
|
|
|
|
result.set_art_automatic(item->data(Role_PathAutomatic).toUrl());
|
|
result.set_art_manual(item->data(Role_PathManual).toUrl());
|
|
|
|
// force validity
|
|
result.set_valid(true);
|
|
result.set_id(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
void AlbumCoverManager::ShowCover() {
|
|
|
|
Song song = GetSingleSelectionAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
album_cover_choice_controller_->ShowCover(song);
|
|
}
|
|
|
|
void AlbumCoverManager::FetchSingleCover() {
|
|
|
|
for (QListWidgetItem *item : context_menu_items_) {
|
|
quint64 id = cover_fetcher_->FetchAlbumCover(EffectiveAlbumArtistName(*item), item->data(Role_AlbumName).toString(), false);
|
|
cover_fetching_tasks_[id] = item;
|
|
jobs_++;
|
|
}
|
|
|
|
progress_bar_->setMaximum(jobs_);
|
|
progress_bar_->show();
|
|
abort_progress_->show();
|
|
UpdateStatusText();
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::UpdateCoverInList(QListWidgetItem *item, const QUrl &cover_url) {
|
|
|
|
quint64 id = app_->album_cover_loader()->LoadImageAsync(cover_loader_options_, QUrl(), cover_url);
|
|
item->setData(Role_PathManual, cover_url);
|
|
cover_loading_tasks_[id] = item;
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::LoadCoverFromFile() {
|
|
|
|
Song song = GetSingleSelectionAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
QListWidgetItem *item = context_menu_items_[0];
|
|
|
|
QUrl cover_url = album_cover_choice_controller_->LoadCoverFromFile(&song);
|
|
|
|
if (!cover_url.isEmpty()) {
|
|
UpdateCoverInList(item, cover_url);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::SaveCoverToFile() {
|
|
|
|
Song song = GetSingleSelectionAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
QImage image;
|
|
|
|
// Load the image from disk
|
|
if (song.has_manually_unset_cover()) {
|
|
image = no_cover_image_;
|
|
}
|
|
else {
|
|
if (!song.art_manual().isEmpty() && !song.art_manual().path().isEmpty() &&
|
|
(
|
|
(song.art_manual().scheme().isEmpty() && QFile::exists(song.art_manual().path()))
|
|
||
|
|
(song.art_manual().scheme() == "file" && QFile::exists(song.art_manual().toLocalFile()))
|
|
)
|
|
) {
|
|
image = QImage(song.art_manual().toLocalFile());
|
|
}
|
|
if (!song.art_automatic().isEmpty() && !song.art_automatic().path().isEmpty() &&
|
|
(
|
|
(song.art_automatic().scheme().isEmpty() && QFile::exists(song.art_automatic().path()))
|
|
||
|
|
(song.art_automatic().scheme() == "file" && QFile::exists(song.art_automatic().toLocalFile()))
|
|
)
|
|
) {
|
|
image = QImage(song.art_automatic().toLocalFile());
|
|
}
|
|
else {
|
|
image = no_cover_image_;
|
|
}
|
|
}
|
|
|
|
album_cover_choice_controller_->SaveCoverToFileManual(song, image);
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::LoadCoverFromURL() {
|
|
|
|
Song song = GetSingleSelectionAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
QListWidgetItem *item = context_menu_items_[0];
|
|
|
|
QUrl cover_url = album_cover_choice_controller_->LoadCoverFromURL(&song);
|
|
|
|
if (!cover_url.isEmpty()) {
|
|
UpdateCoverInList(item, cover_url);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::SearchForCover() {
|
|
|
|
Song song = GetFirstSelectedAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
QListWidgetItem *item = context_menu_items_[0];
|
|
|
|
QUrl cover_url = album_cover_choice_controller_->SearchForCover(&song);
|
|
if (cover_url.isEmpty()) return;
|
|
|
|
// Force the found cover on all of the selected items
|
|
for (QListWidgetItem *current : context_menu_items_) {
|
|
// Don't save the first one twice
|
|
if (current != item) {
|
|
Song current_song = ItemAsSong(current);
|
|
album_cover_choice_controller_->SaveCoverToSong(¤t_song, cover_url);
|
|
}
|
|
|
|
UpdateCoverInList(current, cover_url);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::UnsetCover() {
|
|
|
|
Song song = GetFirstSelectedAsSong();
|
|
if (!song.is_valid()) return;
|
|
|
|
QListWidgetItem *item = context_menu_items_[0];
|
|
|
|
QUrl cover_url = album_cover_choice_controller_->UnsetCover(&song);
|
|
|
|
// Force the 'none' cover on all of the selected items
|
|
for (QListWidgetItem *current : context_menu_items_) {
|
|
current->setIcon(no_cover_item_icon_);
|
|
current->setData(Role_PathManual, cover_url);
|
|
|
|
// Don't save the first one twice
|
|
if (current != item) {
|
|
Song current_song = ItemAsSong(current);
|
|
album_cover_choice_controller_->SaveCoverToSong(¤t_song, cover_url);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
SongList AlbumCoverManager::GetSongsInAlbum(const QModelIndex &index) const {
|
|
|
|
SongList ret;
|
|
|
|
CollectionQuery q;
|
|
q.SetColumnSpec("ROWID," + Song::kColumnSpec);
|
|
q.AddWhere("album", index.data(Role_AlbumName).toString());
|
|
q.SetOrderBy("disc, track, title");
|
|
|
|
QString artist = index.data(Role_ArtistName).toString();
|
|
QString albumartist = index.data(Role_AlbumArtistName).toString();
|
|
|
|
if (!albumartist.isEmpty()) {
|
|
q.AddWhere("albumartist", albumartist);
|
|
}
|
|
else if (!artist.isEmpty()) {
|
|
q.AddWhere("artist", artist);
|
|
}
|
|
|
|
q.AddCompilationRequirement(artist.isEmpty() && albumartist.isEmpty());
|
|
|
|
if (!collection_backend_->ExecQuery(&q)) return ret;
|
|
|
|
while (q.Next()) {
|
|
Song song;
|
|
song.InitFromQuery(q, true);
|
|
ret << song;
|
|
}
|
|
return ret;
|
|
|
|
}
|
|
|
|
SongList AlbumCoverManager::GetSongsInAlbums(const QModelIndexList &indexes) const {
|
|
|
|
SongList ret;
|
|
for (const QModelIndex &index : indexes) {
|
|
ret << GetSongsInAlbum(index);
|
|
}
|
|
return ret;
|
|
|
|
}
|
|
|
|
SongMimeData *AlbumCoverManager::GetMimeDataForAlbums(const QModelIndexList &indexes) const {
|
|
|
|
SongList songs = GetSongsInAlbums(indexes);
|
|
if (songs.isEmpty()) return nullptr;
|
|
|
|
SongMimeData *data = new SongMimeData;
|
|
data->backend = collection_backend_;
|
|
data->songs = songs;
|
|
return data;
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::AlbumDoubleClicked(const QModelIndex &index) {
|
|
|
|
SongMimeData *data = GetMimeDataForAlbums(QModelIndexList() << index);
|
|
if (data) {
|
|
data->from_doubleclick_ = true;
|
|
emit AddToPlaylist(data);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::AddSelectedToPlaylist() {
|
|
emit AddToPlaylist(GetMimeDataForAlbums(ui_->albums->selectionModel()->selectedIndexes()));
|
|
}
|
|
|
|
void AlbumCoverManager::LoadSelectedToPlaylist() {
|
|
|
|
SongMimeData *data = GetMimeDataForAlbums(ui_->albums->selectionModel()->selectedIndexes());
|
|
if (data) {
|
|
data->clear_first_ = true;
|
|
emit AddToPlaylist(data);
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::SaveAndSetCover(QListWidgetItem *item, const QUrl &cover_url, const QImage &image) {
|
|
|
|
const QString artist = item->data(Role_ArtistName).toString();
|
|
const QString albumartist = item->data(Role_AlbumArtistName).toString();
|
|
const QString album = item->data(Role_AlbumName).toString();
|
|
const QUrl url = item->data(Role_FirstUrl).toUrl();
|
|
|
|
QUrl new_cover_url = album_cover_choice_controller_->SaveCoverToFileAutomatic(Song::Source_Collection, (!albumartist.isEmpty() ? albumartist : artist), album, QString(), url.adjusted(QUrl::RemoveFilename).path(), cover_url, image, false);
|
|
if (new_cover_url.isEmpty()) return;
|
|
|
|
// Save the image in the database
|
|
collection_backend_->UpdateManualAlbumArtAsync(artist, albumartist, album, new_cover_url);
|
|
|
|
// Update the icon in our list
|
|
quint64 id = app_->album_cover_loader()->LoadImageAsync(cover_loader_options_, QUrl(), new_cover_url);
|
|
item->setData(Role_PathManual, new_cover_url);
|
|
cover_loading_tasks_[id] = item;
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::ExportCovers() {
|
|
|
|
AlbumCoverExport::DialogResult result = cover_export_->Exec();
|
|
|
|
if (result.cancelled_) {
|
|
return;
|
|
}
|
|
|
|
DisableCoversButtons();
|
|
|
|
cover_exporter_->SetDialogResult(result);
|
|
|
|
for (int i = 0; i < ui_->albums->count(); ++i) {
|
|
QListWidgetItem *item = ui_->albums->item(i);
|
|
|
|
// skip hidden and coverless albums
|
|
if (item->isHidden() || !ItemHasCover(*item)) {
|
|
continue;
|
|
}
|
|
|
|
cover_exporter_->AddExportRequest(ItemAsSong(item));
|
|
}
|
|
|
|
if (cover_exporter_->request_count() > 0) {
|
|
progress_bar_->setMaximum(cover_exporter_->request_count());
|
|
progress_bar_->show();
|
|
abort_progress_->show();
|
|
|
|
cover_exporter_->StartExporting();
|
|
}
|
|
else {
|
|
QMessageBox msg;
|
|
msg.setWindowTitle(tr("Export finished"));
|
|
msg.setText(tr("No covers to export."));
|
|
msg.exec();
|
|
}
|
|
|
|
}
|
|
|
|
void AlbumCoverManager::UpdateExportStatus(int exported, int skipped, int max) {
|
|
|
|
progress_bar_->setValue(exported);
|
|
|
|
QString message = tr("Exported %1 covers out of %2 (%3 skipped)")
|
|
.arg(exported)
|
|
.arg(max)
|
|
.arg(skipped);
|
|
statusBar()->showMessage(message);
|
|
|
|
// End of the current process
|
|
if (exported + skipped >= max) {
|
|
QTimer::singleShot(2000, statusBar(), SLOT(clearMessage()));
|
|
|
|
progress_bar_->hide();
|
|
abort_progress_->hide();
|
|
EnableCoversButtons();
|
|
|
|
QMessageBox msg;
|
|
msg.setWindowTitle(tr("Export finished"));
|
|
msg.setText(message);
|
|
msg.exec();
|
|
}
|
|
|
|
}
|
|
|
|
QString AlbumCoverManager::EffectiveAlbumArtistName(const QListWidgetItem &item) const {
|
|
QString albumartist = item.data(Role_AlbumArtistName).toString();
|
|
if (!albumartist.isEmpty()) {
|
|
return albumartist;
|
|
}
|
|
return item.data(Role_ArtistName).toString();
|
|
}
|
|
|
|
QImage AlbumCoverManager::GenerateNoCoverImage(const QIcon &no_cover_icon) const {
|
|
|
|
// Get a square version of cdcase.png with some transparency:
|
|
QImage nocover = no_cover_icon.pixmap(no_cover_icon.availableSizes().last()).toImage();
|
|
nocover = nocover.scaled(120, 120, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
|
QImage square_nocover(120, 120, QImage::Format_ARGB32);
|
|
square_nocover.fill(0);
|
|
QPainter p(&square_nocover);
|
|
p.setOpacity(0.4);
|
|
p.drawImage((120 - nocover.width()) / 2, (120 - nocover.height()) / 2, nocover);
|
|
p.end();
|
|
|
|
return square_nocover;
|
|
|
|
}
|
|
|
|
bool AlbumCoverManager::ItemHasCover(const QListWidgetItem &item) const {
|
|
return item.icon().cacheKey() != no_cover_item_icon_.cacheKey();
|
|
}
|
|
|