2010-10-02 18:23:33 +02:00
|
|
|
/* This file is part of Clementine.
|
2016-06-22 15:53:35 +02:00
|
|
|
Copyright 2016, John Maguire <john.maguire@gmail.com>
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-06-22 15:53:35 +02:00
|
|
|
#ifndef SPOTIFYIMAGES_H
|
|
|
|
#define SPOTIFYIMAGES_H
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2014-02-06 14:48:00 +01:00
|
|
|
#include <memory>
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2016-02-17 16:45:37 +01:00
|
|
|
#include "songinfo/songinfoprovider.h"
|
|
|
|
|
|
|
|
class NetworkAccessManager;
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2016-06-22 15:53:35 +02:00
|
|
|
class SpotifyImages : public SongInfoProvider {
|
2010-10-02 18:23:33 +02:00
|
|
|
Q_OBJECT
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2016-06-22 15:53:35 +02:00
|
|
|
SpotifyImages();
|
|
|
|
~SpotifyImages();
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2016-06-22 15:53:35 +02:00
|
|
|
void FetchInfo(int id, const Song& metadata) override;
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2016-06-22 15:53:35 +02:00
|
|
|
void FetchImagesForArtist(int id, const QString& spotify_id);
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2016-02-17 16:45:37 +01:00
|
|
|
std::unique_ptr<NetworkAccessManager> network_;
|
2010-10-02 18:23:33 +02:00
|
|
|
};
|
|
|
|
|
2016-06-22 15:53:35 +02:00
|
|
|
#endif // SPOTIFYIMAGES_H
|