2010-10-10 23:45:01 +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-10 23:45:01 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "echonestimages.h"
|
2011-04-22 18:50:29 +02:00
|
|
|
#include "core/logging.h"
|
2010-10-10 23:45:01 +02:00
|
|
|
|
|
|
|
#include <echonest/Artist.h>
|
|
|
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
|
|
|
struct EchoNestImages::Request {
|
|
|
|
Request(int id) : id_(id), artist_(new Echonest::Artist) {}
|
|
|
|
|
|
|
|
int id_;
|
|
|
|
boost::scoped_ptr<Echonest::Artist> artist_;
|
|
|
|
};
|
|
|
|
|
|
|
|
void EchoNestImages::FetchInfo(int id, const Song& metadata) {
|
|
|
|
boost::shared_ptr<Request> request(new Request(id));
|
|
|
|
request->artist_->setName(metadata.artist());
|
|
|
|
|
|
|
|
QNetworkReply* reply = request->artist_->fetchImages();
|
|
|
|
connect(reply, SIGNAL(finished()), SLOT(RequestFinished()));
|
|
|
|
requests_[reply] = request;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EchoNestImages::RequestFinished() {
|
|
|
|
QNetworkReply* reply = qobject_cast<QNetworkReply*>(sender());
|
|
|
|
if (!reply || !requests_.contains(reply))
|
|
|
|
return;
|
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
RequestPtr request = requests_.take(reply);
|
|
|
|
|
|
|
|
try {
|
|
|
|
request->artist_->parseProfile(reply);
|
|
|
|
} catch (Echonest::ParseError e) {
|
2011-04-22 18:50:29 +02:00
|
|
|
qLog(Warning) << "Error parsing echonest reply:" << e.errorType() << e.what();
|
2010-10-10 23:45:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const Echonest::ArtistImage& image, request->artist_->images()) {
|
|
|
|
emit ImageReady(request->id_, image.url());
|
|
|
|
}
|
|
|
|
|
|
|
|
emit Finished(request->id_);
|
|
|
|
}
|