File: FlickrPictureService.cpp

package info (click to toggle)
fotowall 0.9-8
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,280 kB
  • sloc: cpp: 23,275; makefile: 51; sh: 25
file content (274 lines) | stat: -rw-r--r-- 9,351 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/***************************************************************************
 *                                                                         *
 *   This file is part of the Fotowall project,                            *
 *       http://www.enricoros.com/opensource/fotowall                      *
 *                                                                         *
 *   Copyright (C) 2007-2009 by Enrico Ros <enrico.ros@gmail.com>          *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include "FlickrPictureService.h"
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QXmlStreamAttributes>
#include <QXmlStreamReader>

namespace FlickrInternal {
    struct F_PhotoDescription {
        QString id;         // 3743354066
        QString owner;      // 22046259@N04
        QString secret;     // b0ba1ca158
        QString server;     // 2646
        QString farm;       // 3
        QString title;      // Rescale Test 1
        bool ispublic;      // 1
        bool isfriend;      // 0
        bool isfamily;      // 0
        QUrl url_t;         // http://farm3.static.flickr.com/2548/3744077174_3f6efa0789_t.jpg
        int height_t;       // 100
        int width_t;        // 75
        QUrl url_o;         // http://farm3.static.flickr.com/2548/3744077174_296535ff22_o.jpg
        int height_o;       // 3000
        int width_o;        // 4000
    };

    struct Photo {
        int idx;
        F_PhotoDescription description;
        bool thumbRequested;
        QPixmap thumbnail;
        QList<QNetworkReply *> jobs;

        Photo() : idx(0), thumbRequested(false) {
        }
        ~Photo() {
            foreach (QNetworkReply * job, jobs) {
                job->disconnect(0, 0, 0);
                job->abort();
                job->deleteLater();
            }
        }
    };
}

FlickrPictureService::FlickrPictureService(const QString & apiKey, QNetworkAccessManager * manager, QObject * parent)
  : AbstractPictureService(manager, parent)
  , m_apiKey(apiKey)
  , m_searchJob(0)
{
}

FlickrPictureService::~FlickrPictureService()
{
    dropSearch();
}

void FlickrPictureService::searchPics(const QString & text)
{
    // clear previous search results
    dropSearch();

    // notify about the start
    emit searchStarted();

    // make request and connect to reply
    KeyValueList options;
    options << KeyValue("text", text);
    options << KeyValue("extras", "url_t,url_o");
    m_searchJob = flickrApiCall("flickr.photos.search", options);
    connect(m_searchJob, SIGNAL(finished()), this, SLOT(slotSearchJobFinished()));
    //connect(m_searchJob, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(...);
    //connect(m_searchJob, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(slotdownloadProgress(qint64, qint64)));
}

void FlickrPictureService::dropSearch()
{
    if (m_searchJob) {
        m_searchJob->disconnect(0, 0, 0);
        m_searchJob->abort();
        m_searchJob->deleteLater();
        m_searchJob = 0;
    }
    qDeleteAll(m_searchResults);
    m_searchResults.clear();
    foreach (QNetworkReply * reply, m_prefetches) {
        reply->disconnect(0, 0, 0);
        reply->abort();
        reply->deleteLater();
    }
    m_prefetches.clear();
    emit searchEnded(false);
}

bool FlickrPictureService::imageInfo(int idx, QString * url, QString * title, int * width, int * height)
{
    if (idx < 0 || idx >= m_searchResults.size())
        return false;
    FlickrInternal::Photo * photo = m_searchResults[idx];
    *url = photo->description.url_o.toString();
    *title = photo->description.title;
    *width = photo->description.width_o;
    *height = photo->description.height_o;
    return true;
}

QNetworkReply * FlickrPictureService::download(int idx)
{
    if (idx < 0 || idx >= m_searchResults.size())
        return 0;

    // return an existing prefetch, if any
    if (m_prefetches.contains(idx))
        return m_prefetches.take(idx);

    // or start a new transfer
    return get(m_searchResults[idx]->description.url_o);
}

void FlickrPictureService::startPrefetch(int idx)
{
#if QT_VERSION >= 0x040600
    if (idx < 0 || idx >= m_searchResults.size() || m_prefetches.contains(idx))
        return;
    m_prefetches[idx] = get(m_searchResults[idx]->description.url_o);
#else
    // no precaching with <= 4.5 since QNetworkReply::isFinished doesn't exist
    Q_UNUSED(idx);
#endif
}

void FlickrPictureService::stopPrefetch(int idx)
{
    if (!m_prefetches.contains(idx))
        return;
    QNetworkReply * reply = m_prefetches.take(idx);
    reply->disconnect(0, 0, 0);
    reply->abort();
    reply->deleteLater();
}

void FlickrPictureService::slotSearchJobFinished()
{
    QByteArray replyContent = m_searchJob->readAll();
    m_searchJob->disconnect(0, 0, 0);
    m_searchJob->deleteLater();
    m_searchJob = 0;

    // read response
    int idx = 0;
    QXmlStreamReader sr(replyContent);
    while (!sr.atEnd()) {
        sr.readNext();
        if (sr.isStartElement() && sr.name().toString() == "photo") {

            // create the F_PhotoDescription
            FlickrInternal::F_PhotoDescription pd;
            QXmlStreamAttributes attribs = sr.attributes();
            pd.id = attribs.value("id").toString();
            pd.owner = attribs.value("owner").toString();
            pd.secret = attribs.value("secret").toString();
            pd.server = attribs.value("server").toString();
            pd.farm = attribs.value("farm").toString();
            pd.title = attribs.value("title").toString();
            pd.ispublic = attribs.value("ispublic").toString() != "0";
            pd.isfriend = attribs.value("isfriend").toString() != "0";
            pd.isfamily = attribs.value("isfamily").toString() != "0";
            pd.url_t = attribs.value("url_t").toString();
            pd.height_t = attribs.value("height_t").toString().toUInt();
            pd.width_t = attribs.value("width_t").toString().toUInt();
            pd.url_o = attribs.value("url_o").toString();
            pd.height_o = attribs.value("height_o").toString().toUInt();
            pd.width_o = attribs.value("width_o").toString().toUInt();

            // if no original, use standard url (info on http://www.flickr.com/services/api/misc.urls.html)
            if (pd.url_o.isEmpty())
                pd.url_o = QString("http://farm%1.static.flickr.com/%2/%3_%4.jpg").arg(pd.farm).arg(pd.server).arg(pd.id).arg(pd.secret);

            // create a new Photo
            FlickrInternal::Photo * photo = new FlickrInternal::Photo();
            photo->idx = idx++;
            photo->description = pd;
            m_searchResults.append(photo);

            // notify about the new item
            emit searchResult(photo->idx, pd.title, pd.width_t, pd.height_t);
        }
    }

    // start 2 thumbnail jobs
    if (startNextThumbnailJobs(2))
        emit searchEnded(false);
}

void FlickrPictureService::slotThumbJobFinished()
{
    QNetworkReply * job = static_cast<QNetworkReply *>(sender());
    QByteArray replyContent = job->readAll();
    job->deleteLater();

    // find the Photo that owns the job
    foreach (FlickrInternal::Photo * photo, m_searchResults) {

        // remove the job from the photo
        if (!photo->jobs.removeAll(job))
            continue;

        // stop if network Error
        if (job->error() != QNetworkReply::NoError)
            break;

        // make pixmap from the network data
        QImage image = QImage::fromData(replyContent);
        if (image.isNull())
            break;
        photo->thumbnail = QPixmap::fromImage(image);
        emit searchThumbnail(photo->idx, photo->thumbnail);
        break;
    }

    // start a new job
    if (startNextThumbnailJobs(1))
        emit searchEnded(false);
}

bool FlickrPictureService::startNextThumbnailJobs(int count)
{
    bool finished = true;
    foreach (FlickrInternal::Photo * photo, m_searchResults) {
        if (photo->thumbRequested)
            continue;

        if (count-- <= 0)
            break;

        // start the thumbnail job
        QNetworkReply * job = get(photo->description.url_t);
        connect(job, SIGNAL(finished()), this, SLOT(slotThumbJobFinished()));
        photo->jobs << job;
        photo->thumbRequested = true;
        finished = false;
    }
    return finished;
}

QNetworkReply * FlickrPictureService::flickrApiCall(const QString & method, const KeyValueList & params)
{
    // build URL with method+apikey+params
    QUrl url("http://api.flickr.com/services/rest/");
    KeyValueList fullList;
    fullList.append(KeyValue("method", method));
    fullList.append(KeyValue("api_key", m_apiKey));
#if QT_VERSION >= 0x040500
    fullList.append(params);
#else
    foreach (const KeyValue & param, params)
        fullList.append(param);
#endif
    url.setQueryItems(fullList);
    return get(url);
}