-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflickrrequest.h
More file actions
69 lines (64 loc) · 3.01 KB
/
flickrrequest.h
File metadata and controls
69 lines (64 loc) · 3.01 KB
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
/******************************************************************************
* Copyright (C) 2009 by Evgeni Gordejev *
* evgeni.gordejev@gmail.com *
* Copyright (C) 2015 by Jacob Dawid *
* jacob@omg-it.works *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library Lesser 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Library Lesser General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
******************************************************************************/
#pragma once
// Qt includes
#include <QString>
#include <QMap>
/**
* @struct FlickrRequest
* Use this structure to provide information for the XML parser, parser will
* search only those tags that you have been provided. Request is map container,
* where key is a tag name and value is a comma delimited list of possible attributes.<br>
* Attributes are optional, provide only empty string for tag only request.
* Example:
* @code
* <?xml version="1.0" encoding="utf-8" ?>
* <rsp stat="ok">
* <photos page="2" pages="89" perpage="10" total="881">
* <photo id="2636" owner="47058503995@N01"/>
* <photo id="2635" owner="47058503995@N01"/>
* </photos>
* </rsp>
* @endcode
* Let assume server response is a XML above and you want to get all id's and owner information for the
* photo list. The code will look like this:
* @code
* FlickrRequest request;
* request.requests.insert("photo","id,owner");
*
* FlickrMethod method;
* method.method = "flickr.photos.getWithGeoData";
*
* Flickr qtFlickr("apiKey","apiSecret");
* qtFlickr.get(method, request);
* @endcode
*/
struct FlickrRequest {
QMap<QString,QString> requests;
/** Default constructor */
FlickrRequest() { }
/** Constructs and initialize single request */
FlickrRequest(const QString &tag,
const QString &attrs = QString()) {
requests.insert(tag,attrs);
}
};