/* * Copyright (C) 2007 Tobias Koenig * Copyright 2008 by Anne-Marie Mahfouf * Copyright 2008 by Georges Toth * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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 Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "flickrprovider.h" #include #include #include #include #include POTDPROVIDER_EXPORT_PLUGIN( FlickrProvider, "FlickrProvider", "" ) class FlickrProvider::Private { public: Private( FlickrProvider *parent ) : mParent( parent ) { qsrand(QTime(0,0,0).secsTo(QTime::currentTime())); } void pageRequestFinished( KJob* ); void imageRequestFinished( KJob* ); void parsePage(); FlickrProvider *mParent; QDate mActualDate; QImage mImage; QXmlStreamReader xml; private: QStringList m_photoList; }; void FlickrProvider::Private::pageRequestFinished( KJob *_job ) { KIO::StoredTransferJob *job = static_cast( _job ); if (job->error()) { emit mParent->error( mParent ); kDebug() << "pageRequestFinished error"; return; } const QString data = QString::fromUtf8( job->data() ); // Clear the list m_photoList.clear(); xml.clear(); xml.addData(data); while (!xml.atEnd()) { xml.readNext(); if (xml.isStartElement()) { if (xml.name() == "rsp") { /* no pictures available for the specified parameters */ if (xml.attributes().value ( QLatin1String( "stat" ) ).toString() == QLatin1String( "fail" ) ) { /* To be sure, decrement the date to two days earlier... @TODO */ mActualDate = mActualDate.addDays(-2); KUrl url( QLatin1String( "http://api.flickr.com/services/rest/?api_key=a902f4e74cf1e7bce231742d8ffb46b4&method=flickr.interestingness.getList&date=" ) + mActualDate.toString( Qt::ISODate) ); KIO::StoredTransferJob *pageJob = KIO::storedGet(url, KIO::NoReload, KIO::HideProgressInfo); mParent->connect( pageJob, SIGNAL(finished(KJob*)), SLOT(pageRequestFinished(KJob*)) ); return; } } else if (xml.name() == QLatin1String( "photo" )) { if (xml.attributes().value ( QLatin1String( "ispublic" ) ).toString() != QLatin1String( "1" )) continue; QString fileUrl = QString(QLatin1String( "http://farm" ) + xml.attributes().value ( QLatin1String( "farm" ) ).toString() + QLatin1String( ".static.flickr.com/" ) + xml.attributes().value ( QLatin1String( "server" ) ).toString() + QLatin1Char( '/' ) + xml.attributes().value ( QLatin1String( "id" ) ).toString() + QLatin1Char( '_' ) + xml.attributes().value ( QLatin1String( "secret" ) ).toString() + QLatin1String( ".jpg" )); m_photoList.append(fileUrl); } } } if (xml.error() && xml.error() != QXmlStreamReader::PrematureEndOfDocumentError) { qWarning() << "XML ERROR:" << xml.lineNumber() << ": " << xml.errorString(); } if (m_photoList.begin() != m_photoList.end()) { KUrl url( m_photoList.at(qrand() % m_photoList.size()) ); KIO::StoredTransferJob *imageJob = KIO::storedGet(url, KIO::NoReload, KIO::HideProgressInfo); mParent->connect( imageJob, SIGNAL(finished(KJob*)), SLOT(imageRequestFinished(KJob*)) ); } else { kDebug() << "empty list"; } } void FlickrProvider::Private::imageRequestFinished( KJob *_job ) { KIO::StoredTransferJob *job = static_cast( _job ); if ( job->error() ) { emit mParent->error( mParent ); return; } mImage = QImage::fromData( job->data() ); emit mParent->finished( mParent ); } FlickrProvider::FlickrProvider( QObject *parent, const QVariantList &args ) : PotdProvider( parent, args ), d( new Private( this ) ) { d->mActualDate = date(); KUrl url(QLatin1String( "http://api.flickr.com/services/rest/?api_key=a902f4e74cf1e7bce231742d8ffb46b4&method=flickr.interestingness.getList&date=" ) + date().toString( Qt::ISODate ) ); KIO::StoredTransferJob *job = KIO::storedGet( url, KIO::NoReload, KIO::HideProgressInfo ); connect( job, SIGNAL(finished(KJob*)), SLOT(pageRequestFinished(KJob*)) ); } FlickrProvider::~FlickrProvider() { delete d; } QImage FlickrProvider::image() const { return d->mImage; } #include "moc_flickrprovider.cpp"