2014-12-26 13:34:53 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2010-2012, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2012, David Sansome <me@davidsansome.com>
|
|
|
|
Copyright 2013, Arnaud Bienner <arnaud.bienner@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
|
|
|
|
|
|
|
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-12-10 15:26:29 +01:00
|
|
|
#include "kittenloader.h"
|
|
|
|
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QNetworkRequest>
|
|
|
|
#include <QXmlStreamReader>
|
|
|
|
|
2012-10-12 12:38:12 +02:00
|
|
|
#include "core/closure.h"
|
|
|
|
#include "core/network.h"
|
|
|
|
|
2010-12-10 15:26:29 +01:00
|
|
|
const char* KittenLoader::kFlickrKittenUrl =
|
2014-01-28 12:57:05 +01:00
|
|
|
"https://api.flickr.com/services/rest/"
|
2010-12-10 15:26:29 +01:00
|
|
|
"?method=flickr.photos.search"
|
2013-09-11 23:54:41 +02:00
|
|
|
"&api_key=808b52887b3cc7fe098abd62f6ed1745"
|
2016-11-14 13:55:24 +01:00
|
|
|
"&group_id=99442622@N00"
|
2010-12-10 15:26:29 +01:00
|
|
|
"&sort=random"
|
|
|
|
"&safe_search=1"
|
2010-12-11 15:31:03 +01:00
|
|
|
"&content_type=1";
|
2010-12-10 15:26:29 +01:00
|
|
|
|
|
|
|
const char* KittenLoader::kFlickrPhotoUrl =
|
2014-01-28 12:57:05 +01:00
|
|
|
"https://farm%1.static.flickr.com/%2/%3_%4_m.jpg";
|
2010-12-10 15:26:29 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
KittenLoader::KittenLoader(QObject* parent) : AlbumCoverLoader(parent) {}
|
2010-12-10 15:26:29 +01:00
|
|
|
|
2012-02-13 21:44:04 +01:00
|
|
|
quint64 KittenLoader::LoadKitten(const AlbumCoverLoaderOptions& options) {
|
2010-12-10 15:26:29 +01:00
|
|
|
if (!kitten_urls_.isEmpty()) {
|
|
|
|
QUrl url = kitten_urls_.dequeue();
|
|
|
|
return AlbumCoverLoader::LoadImageAsync(
|
2014-02-07 16:34:20 +01:00
|
|
|
options, QString::null, url.toString(), QString::null, QImage());
|
2010-12-10 15:26:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Task task;
|
2012-02-13 21:44:04 +01:00
|
|
|
task.options = options;
|
2010-12-10 15:26:29 +01:00
|
|
|
{
|
|
|
|
QMutexLocker l(&mutex_);
|
|
|
|
task.id = next_id_++;
|
|
|
|
pending_kittens_.enqueue(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
metaObject()->invokeMethod(this, "FetchMoreKittens", Qt::QueuedConnection);
|
|
|
|
|
|
|
|
return task.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KittenLoader::FetchMoreKittens() {
|
|
|
|
QNetworkRequest req = QNetworkRequest(QUrl(kFlickrKittenUrl));
|
|
|
|
QNetworkReply* reply = network_->get(req);
|
2012-10-12 12:38:12 +02:00
|
|
|
NewClosure(reply, SIGNAL(finished()), this,
|
|
|
|
SLOT(KittensRetrieved(QNetworkReply*)), reply);
|
2010-12-10 15:26:29 +01:00
|
|
|
}
|
|
|
|
|
2012-10-12 12:38:12 +02:00
|
|
|
void KittenLoader::KittensRetrieved(QNetworkReply* reply) {
|
2010-12-10 15:26:29 +01:00
|
|
|
reply->deleteLater();
|
|
|
|
|
|
|
|
QXmlStreamReader reader(reply);
|
|
|
|
while (!reader.atEnd()) {
|
|
|
|
reader.readNext();
|
|
|
|
if (reader.tokenType() == QXmlStreamReader::StartElement) {
|
|
|
|
if (reader.name() == "photo") {
|
|
|
|
QXmlStreamAttributes attrs = reader.attributes();
|
|
|
|
QStringRef farm_id = attrs.value("farm");
|
|
|
|
QStringRef photo_id = attrs.value("id");
|
|
|
|
QStringRef secret = attrs.value("secret");
|
|
|
|
QStringRef server = attrs.value("server");
|
|
|
|
QString photo_url = QString(kFlickrPhotoUrl)
|
2014-02-07 16:34:20 +01:00
|
|
|
.arg(farm_id.toString())
|
|
|
|
.arg(server.toString())
|
|
|
|
.arg(photo_id.toString())
|
|
|
|
.arg(secret.toString());
|
2010-12-10 15:26:29 +01:00
|
|
|
kitten_urls_ << QUrl(photo_url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QMutexLocker l(&mutex_);
|
|
|
|
while (!kitten_urls_.isEmpty() && !pending_kittens_.isEmpty()) {
|
|
|
|
Task task = pending_kittens_.dequeue();
|
|
|
|
QUrl kitten_url = kitten_urls_.dequeue();
|
|
|
|
task.art_manual = kitten_url.toString();
|
|
|
|
task.state = State_TryingManual;
|
|
|
|
tasks_.enqueue(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kitten_urls_.isEmpty()) {
|
|
|
|
FetchMoreKittens();
|
|
|
|
}
|
|
|
|
|
|
|
|
metaObject()->invokeMethod(this, "ProcessTasks", Qt::QueuedConnection);
|
|
|
|
}
|