d38bd4bce3caeff6497ce1f82d3c4c6410b76554
[situare] / src / situareservice / situareservice.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5       Henri Lampela - henri.lampela@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22
23 #ifndef SITUARESERVICE_H
24 #define SITUARESERVICE_H
25
26 #include <QObject>
27 #include "../facebookservice/facebookcredentials.h"
28 #include "../user/user.h"
29 #include "imagefetcher.h"
30
31 class NetworkAccessManager;
32 class QNetworkReply;
33 class QNetworkRequest;
34 class GeoCoordinate;
35 class QUrl;
36
37 /**
38 * @brief SituareService class for communicating with Situare server
39 *
40 * @author Henri Lampela
41 * @class SituareService situareservice.h "situareservice/situareservice.h"
42 */
43 class SituareService : public QObject
44 {
45     Q_OBJECT
46
47 public:
48
49     /**
50     * @brief Default constructor
51     *
52     * @param parent instance of parent
53     */
54     SituareService(QObject *parent = 0);
55
56     /**
57     * @brief Destructor
58     *
59     */
60     ~SituareService();
61
62 /*******************************************************************************
63  * MEMBER FUNCTIONS AND SLOTS
64  ******************************************************************************/
65
66     /**
67     * @brief Retrieves location user and friends information from Situare server
68     *
69     */
70     void fetchLocations();
71
72     /**
73     * @brief Translates coordinates to street address via Situare server
74     *
75     * @param coordinates coordinates to be translated
76     */
77     void reverseGeo(const GeoCoordinate &coordinates);
78
79     /**
80     * @brief Updates location to the Situare server
81     *
82     * @param coordinates current cordinates
83     * @param status message
84     * @param publish publish location on Facebook wall
85     */
86     void updateLocation(const GeoCoordinate &coordinates, const QString &status, const bool &publish);
87
88 public slots:
89
90     /**
91     * @brief Public slot, to clear user data
92     *
93     */
94     void clearUserData();
95
96     /**
97     * @brief Public slot, which indicates when facebook credentials are ready
98     *
99     * @param credentials New credentials
100     */
101     void credentialsReady(const FacebookCredentials &credentials);
102
103     /**
104     * @brief Public slot, which indicates when http request has been completed
105     *
106     * @param reply storage for http reply
107     */
108     void requestFinished(QNetworkReply *reply);
109
110     void updateAccessToken(const QString &accessToken);
111
112 private:
113
114     /**
115     * @brief Requests ImageFetcher if user/friend has a profile image
116     *        uses members: m_user and m_friendsList
117     *
118     * @param imageUrlList list of image urls
119     */
120     void addProfileImages(const QList<QUrl> &imageUrlList);
121
122     void appendAccessToken(QString &requestUrl);
123
124     /**
125     * @brief Forms a http cookie
126     *
127     * @param apiKeyValue application key
128     * @param expiresValue session expire date&time from Facebook
129     * @param userValue user id from Facebook
130     * @param sessionKeyValue session key from Facebook
131     * @param sessionSecretValue session secret from Facebook
132     * @param signatureValue md5 generated signature
133     * @param localeValue used locale
134     * @return QString formed cookie
135     */
136     QString formCookie(const QString &apiKeyValue, QString expiresValue, QString userValue,
137                        QString sessionKeyValue, QString sessionSecretValue,
138                        const QString &signatureValue, const QString &localeValue);
139
140     /**
141     * @brief Forms a http url
142     *
143     * @param baseUrl Server url
144     * @param phpScript Server script
145     * @param urlParameters optional parameters for url
146     * @return QUrl formed url
147     */
148     QUrl formUrl(const QString &baseUrl, const QString &phpScript,
149                  QString urlParameters = QString());
150
151     /**
152     * @brief Forms url parameters
153     *
154     * @param coordinates current coordinates
155     * @param status optional status message
156     * @param publish optional publish location on Facebook wall
157     * @return QString
158     */
159     QString formUrlParameters(const GeoCoordinate &coordinates, QString status = QString(),
160                               bool publish = false);
161
162     /**
163     * @brief Parses user and friend data from JSON string
164     *
165     * @param jsonReply JSON string
166     */
167     void parseUserData(const QByteArray &jsonReply);
168
169     /**
170     * @brief Sends http request
171     *
172     * @param url destination
173     * @param cookieType type of the cookie
174     * @param cookie http cookie
175     */
176     void sendRequest(const QUrl &url, const QString &cookieType, const QString &cookie);
177
178
179     void buildRequest(const QString &script, const QHash<QString,QString> &parameters);
180
181     void sendRequest(const QString &requestUrl);
182
183 private slots:
184
185     /**
186     * @brief Slot for received images
187     *
188     * @param url Image url
189     * @param image Received image
190     */
191     void imageReceived(const QUrl &url, const QPixmap &image);
192
193 /*******************************************************************************
194  * SIGNALS
195  ******************************************************************************/
196
197 signals:
198
199     /**
200     * @brief Signals error
201     *
202     * @param context error context
203     * @param error error code
204     */
205     void error(const int context, const int error);
206
207     /**
208     * @brief Signal for image fetching
209     *
210     * @param url Image url
211     */
212     void fetchImage(const QUrl &url);
213
214     /**
215     * @brief Signals when user's/friend's image is downloaded
216     *
217     * @param user Instance of user/friend
218     */
219     void imageReady(User *user);
220
221     /**
222     * @brief Signals when address data is retrieved
223     *
224     * @param address Street address
225     */
226     void reverseGeoReady(const QString &address);
227
228     /**
229     * @brief Signals when updateLocation request finished successfully
230     *
231     */
232     void updateWasSuccessful();
233
234     /**
235     * @brief Signals when user data is retrieved
236     *
237     * @param user instance of user
238     * @param friendList list of friends
239     */
240     void userDataChanged(User *user, QList<User *> &friendList);
241
242 /*******************************************************************************
243  * DATA MEMBERS
244  ******************************************************************************/
245
246 private:
247
248     bool m_defaultImage;    ///< Indicates if some of the friends/user doesn't have a image
249
250     QList<QNetworkReply *> m_currentRequests;   ///< List of current http requests
251     QList<QString> m_requestsWaitingAccessToken;
252     QList<User *> m_friendsList;                ///< List of friends(User)
253
254     QString m_accessToken;
255
256     NetworkAccessManager *m_networkManager;    ///< Pointer to QNetworkAccessManager
257
258     FacebookCredentials m_credentials;          ///< handle for FacebookCredentials
259     ImageFetcher *m_imageFetcher;               ///< Instance of the image fetcher
260     User *m_user;                               ///< Pointer to User
261 };
262
263 #endif // SITUARESERVICE_H