2010-10-02 18:23:33 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.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/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-10 23:45:01 +02:00
|
|
|
#ifndef ECHONESTBIOGRAPHIES_H
|
|
|
|
#define ECHONESTBIOGRAPHIES_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
|
|
|
|
2014-02-06 14:48:00 +01:00
|
|
|
#include "songinfoprovider.h"
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
class QNetworkReply;
|
|
|
|
|
2010-10-10 23:45:01 +02:00
|
|
|
class EchoNestBiographies : public SongInfoProvider {
|
2010-10-02 18:23:33 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2010-10-10 23:45:01 +02:00
|
|
|
EchoNestBiographies();
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
void FetchInfo(int id, const Song& metadata);
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2010-10-10 23:45:01 +02:00
|
|
|
void RequestFinished();
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-10-10 23:45:01 +02:00
|
|
|
QMap<QString, int> site_relevance_;
|
|
|
|
QMap<QString, QIcon> site_icons_;
|
|
|
|
|
2010-10-02 18:23:33 +02:00
|
|
|
struct Request;
|
2014-02-06 14:48:00 +01:00
|
|
|
typedef std::shared_ptr<Request> RequestPtr;
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 23:45:01 +02:00
|
|
|
QMap<QNetworkReply*, RequestPtr> requests_;
|
2010-10-02 18:23:33 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // ECHONESTBIOGRAPHIES_H
|