Updated error handling, added error contexts. Fixed fullscreen button
[situare] / src / engine / engine.cpp
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@ixonos.com
6         Henri Lampela - henri.lampela@ixonos.com
7         Jussi Laitinen - jussi.laitinen@ixonos.com
8         Sami Rämö - sami.ramo@ixonos.com
9
10     Situare is free software; you can redistribute it and/or
11     modify it under the terms of the GNU General Public License
12     version 2 as published by the Free Software Foundation.
13
14     Situare is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License
20     along with Situare; if not, write to the Free Software
21     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
22     USA.
23  */
24
25 #include <QMessageBox>
26 #include <QNetworkReply>
27
28 #include "common.h"
29 #include "facebookservice/facebookauthentication.h"
30 #include "gps/gpsposition.h"
31 #include "map/mapengine.h"
32 #include "situareservice/situareservice.h"
33 #include "ui/mainwindow.h"
34 #include <cmath>
35
36 #include "engine.h"
37
38 const QString SETTINGS_GPS_ENABLED = "GPS_ENABLED"; ///< GPS setting
39 const QString SETTINGS_AUTO_CENTERING_ENABLED = "AUTO_CENTERING_ENABLED";///< Auto centering setting
40 const int DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE = 12;  ///< Default zoom level when GPS available
41 const qreal USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE = 0.003;///< Min value for user move latitude
42 const qreal USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE = 0.001;///< Min value for user move longitude
43 const int MIN_UPDATE_INTERVAL_MSECS = 5*60*1000;
44
45 SituareEngine::SituareEngine(QMainWindow *parent)
46     : QObject(parent),
47       m_autoCenteringEnabled(false),
48       m_automaticUpdateFirstStart(true),
49       m_userMoved(false),
50       m_automaticUpdateIntervalTimer(0),
51       m_lastUpdatedGPSPosition(QPointF())
52 {    
53     qDebug() << __PRETTY_FUNCTION__;
54     m_ui = new MainWindow;
55     m_ui->updateItemVisibility();
56
57     // build MapEngine
58     m_mapEngine = new MapEngine(this);
59     m_ui->setMapViewScene(m_mapEngine->scene());
60
61     // build GPS
62     m_gps = new GPSPosition(this);
63
64     // build SituareService
65     m_situareService = new SituareService(this);
66
67     // build FacebookAuthenticator
68     m_facebookAuthenticator = new FacebookAuthentication(this);
69
70     // connect signals
71     signalsFromMapEngine();
72     signalsFromGPS();
73     signalsFromSituareService();
74     signalsFromMainWindow();
75     signalsFromFacebookAuthenticator();
76
77     connect(this, SIGNAL(userLocationReady(User*)),
78             m_ui, SIGNAL(userLocationReady(User*)));
79
80     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
81             m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
82
83     connect(this, SIGNAL(userLocationReady(User*)),
84             m_mapEngine, SLOT(receiveOwnLocation(User*)));
85
86     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
87             m_mapEngine, SIGNAL(friendsLocationsReady(QList<User*>&)));
88
89     m_automaticUpdateIntervalTimer = new QTimer(this);
90     connect(m_automaticUpdateIntervalTimer, SIGNAL(timeout()),
91             this, SLOT(automaticUpdateIntervalTimerTimeout()));
92
93     // signals connected, now it's time to show the main window
94     // but init the MapEngine before so starting location is set
95     m_mapEngine->init();
96     m_ui->show();
97
98     m_facebookAuthenticator->start();
99
100     m_gps->setMode(GPSPosition::Default);
101     initializeGpsAndAutocentering();
102 }
103
104 SituareEngine::~SituareEngine()
105 {
106     qDebug() << __PRETTY_FUNCTION__;
107
108     delete m_ui;
109
110     QSettings settings(DIRECTORY_NAME, FILE_NAME);
111     settings.setValue(SETTINGS_GPS_ENABLED, m_gps->isRunning());
112     settings.setValue(SETTINGS_AUTO_CENTERING_ENABLED, m_autoCenteringEnabled);
113 }
114
115 void SituareEngine::automaticUpdateIntervalTimerTimeout()
116 {
117     qDebug() << __PRETTY_FUNCTION__;
118
119     if (m_gps->isRunning() && m_userMoved) {
120         requestUpdateLocation();
121         m_userMoved = false;
122     }
123 }
124
125 void SituareEngine::changeAutoCenteringSetting(bool enabled)
126 {
127     qDebug() << __PRETTY_FUNCTION__;
128
129     m_autoCenteringEnabled = enabled;
130     enableAutoCentering(enabled);
131 }
132
133 void SituareEngine::disableAutoCentering()
134 {
135     qDebug() << __PRETTY_FUNCTION__;
136
137     changeAutoCenteringSetting(false);
138     m_ui->buildInformationBox(tr("Auto centering disabled"));
139 }
140
141 void SituareEngine::enableAutoCentering(bool enabled)
142 {
143     qDebug() << __PRETTY_FUNCTION__;
144
145     m_ui->setAutoCenteringButtonEnabled(enabled);
146     m_mapEngine->setAutoCentering(enabled);
147
148     if (enabled)
149         m_gps->requestLastPosition();
150 }
151
152 void SituareEngine::enableGPS(bool enabled)
153 {
154     qDebug() << __PRETTY_FUNCTION__;
155
156     m_ui->setOwnLocationCrosshairVisibility(!enabled);
157
158     if (m_gps->isInitialized()) {
159         m_ui->setGPSButtonEnabled(enabled);
160         m_mapEngine->setGPSEnabled(enabled);
161
162         if (enabled && !m_gps->isRunning()) {
163             m_gps->start();
164             enableAutoCentering(m_autoCenteringEnabled);
165             m_gps->requestLastPosition();
166
167             if(m_ui->loginState())
168                 m_ui->readAutomaticLocationUpdateSettings();
169         }
170         else if (!enabled && m_gps->isRunning()) {
171             m_gps->stop();
172             enableAutoCentering(false);
173             enableAutomaticLocationUpdate(false);
174         }
175     }
176     else {
177         if (enabled)
178             m_ui->buildInformationBox(tr("Unable to start GPS"));
179         m_ui->setGPSButtonEnabled(false);
180         m_mapEngine->setGPSEnabled(false);
181     }
182 }
183
184 void SituareEngine::enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs)
185 {
186     qDebug() << __PRETTY_FUNCTION__;
187
188     //Show automatic update confirmation dialog
189     if (m_automaticUpdateFirstStart && m_gps->isRunning() && enabled) {
190         m_ui->showEnableAutomaticUpdateLocationDialog(
191                 tr("Do you want to enable automatic location update with %1 min update interval?")
192                 .arg(updateIntervalMsecs/1000/60));
193         m_automaticUpdateFirstStart = false;
194     } else {
195         if (enabled && m_gps->isRunning()) {
196             m_ui->buildInformationBox(tr("Automatic location update enabled"));
197             if (updateIntervalMsecs < MIN_UPDATE_INTERVAL_MSECS)
198                 m_automaticUpdateIntervalTimer->setInterval(MIN_UPDATE_INTERVAL_MSECS);
199             else
200                 m_automaticUpdateIntervalTimer->setInterval(updateIntervalMsecs);
201
202             m_automaticUpdateIntervalTimer->start();
203
204         } else {
205             m_automaticUpdateIntervalTimer->stop();
206         }
207     }
208 }
209
210 void SituareEngine::error(const int context, const int error)
211 {
212     qDebug() << __PRETTY_FUNCTION__;    
213
214     switch(error)
215     {
216     case SituareError::ERROR_GENERAL:
217         if(context == ErrorContext::SITUARE) {
218             m_ui->toggleProgressIndicator(false);
219             m_ui->buildInformationBox(tr("Unknown server error"), true);
220         }
221         break;
222     case SituareError::ERROR_MISSING_ARGUMENT | QNetworkReply::ConnectionRefusedError :
223         m_ui->toggleProgressIndicator(false);
224         if(context == ErrorContext::SITUARE) {
225             m_ui->buildInformationBox(tr("Missing argument from request"), true);
226         } else if(context == ErrorContext::NETWORK) {
227             m_ui->buildInformationBox(tr("Connection refused by the server"), true);
228         }
229         break;
230     case QNetworkReply::RemoteHostClosedError:
231         if(context == ErrorContext::NETWORK) {
232             m_ui->toggleProgressIndicator(false);
233             m_ui->buildInformationBox(tr("Connection closed by the server"), true);
234         }
235         break;
236     case QNetworkReply::HostNotFoundError:
237         if(context == ErrorContext::NETWORK) {
238             m_ui->toggleProgressIndicator(false);
239             m_ui->buildInformationBox(tr("Remote server not found"), true);
240         }
241         break;
242     case QNetworkReply::TimeoutError:
243         if(context == ErrorContext::NETWORK) {
244             m_ui->toggleProgressIndicator(false);
245             m_ui->buildInformationBox(tr("Connection timed out"), true);
246         }
247         break;
248     case SituareError::SESSION_EXPIRED:
249         m_ui->buildInformationBox(tr("Session expired. Please login again"), true);
250         m_facebookAuthenticator->clearAccountInformation(true); // keep username = true
251         m_situareService->clearUserData();
252         m_ui->loggedIn(false);
253         m_ui->loginFailed();
254         break;
255     case SituareError::LOGIN_FAILED:
256         m_ui->toggleProgressIndicator(false);
257         m_ui->buildInformationBox(tr("Invalid E-mail address or password"), true);
258         m_ui->loginFailed();
259         break;
260     case SituareError::UPDATE_FAILED:
261         m_ui->toggleProgressIndicator(false);
262         m_ui->buildInformationBox(tr("Update failed, please try again"), true);
263         break;
264     case SituareError::DATA_RETRIEVAL_FAILED:
265         m_ui->toggleProgressIndicator(false);
266         m_ui->buildInformationBox(tr("Data retrieval failed, please try again"), true);
267         break;
268     case SituareError::ADDRESS_RETRIEVAL_FAILED:
269         m_ui->buildInformationBox(tr("Address retrieval failed"), true);
270         break;
271     case SituareError::IMAGE_DOWNLOAD_FAILED:
272         m_ui->buildInformationBox(tr("Image download failed"), true);
273         break;
274     case SituareError::MAP_IMAGE_DOWNLOAD_FAILED:
275         m_ui->buildInformationBox(tr("Map image download failed"), true);
276         break;
277     case SituareError::GPS_INITIALIZATION_FAILED:
278         enableGPS(false);
279         m_ui->buildInformationBox(tr("GPS initialization failed"), true);
280         break;
281     case SituareError::INVALID_JSON:
282         m_ui->buildInformationBox(tr("Malformatted reply from server"), true);
283         m_ui->loggedIn(false);
284         m_facebookAuthenticator->clearAccountInformation(false); // clean all
285         break;
286     case SituareError::ERROR_GEOLOCATION_SERVER_UNAVAILABLE:
287         m_ui->toggleProgressIndicator(false);
288         m_ui->buildInformationBox(tr("Geolocation server not responding"), true);
289         break;
290     case SituareError::ERROR_GEOLOCATION_REQUEST_FAIL:
291         m_ui->toggleProgressIndicator(false);
292         m_ui->buildInformationBox(tr("Geolocation request failed, please try again"), true);
293         break;
294     case SituareError::ERROR_GEOLOCATION_LONLAT_INVALID:
295         m_ui->toggleProgressIndicator(false);
296         m_ui->buildInformationBox(tr("Invalid lat/lon value, please try again"), true);
297         break;
298     default:
299         m_ui->toggleProgressIndicator(false);
300         if(context == ErrorContext::NETWORK)
301             qCritical() << "QNetworkReply::NetworkError: " << error;
302         else
303             qCritical() << "Unknown error: " << error;
304
305         break;
306     }
307 }
308
309 void SituareEngine::fetchUsernameFromSettings()
310 {
311     qDebug() << __PRETTY_FUNCTION__;
312
313     m_ui->setUsername(m_facebookAuthenticator->loadUsername());
314 }
315
316 void SituareEngine::initializeGpsAndAutocentering()
317 {
318     qDebug() << __PRETTY_FUNCTION__;
319
320     QSettings settings(DIRECTORY_NAME, FILE_NAME);
321     QVariant gpsEnabled = settings.value(SETTINGS_GPS_ENABLED);
322     QVariant autoCenteringEnabled = settings.value(SETTINGS_AUTO_CENTERING_ENABLED);
323
324     if (m_gps->isInitialized()) {
325
326         if (gpsEnabled.toString().isEmpty()) { // First start. Situare.conf file does not exists
327
328             connect(m_gps, SIGNAL(position(QPointF,qreal)),
329                     this, SLOT(setFirstStartZoomLevel(QPointF,qreal)));
330
331             changeAutoCenteringSetting(true);
332             enableGPS(true);
333
334             m_ui->buildInformationBox(tr("GPS enabled"));
335             m_ui->buildInformationBox(tr("Auto centering enabled"));
336
337         } else { // Normal start
338             changeAutoCenteringSetting(autoCenteringEnabled.toBool());
339             enableGPS(gpsEnabled.toBool());
340
341             if (gpsEnabled.toBool())
342                 m_ui->buildInformationBox(tr("GPS enabled"));
343
344             if (gpsEnabled.toBool() && autoCenteringEnabled.toBool())
345                 m_ui->buildInformationBox(tr("Auto centering enabled"));
346         }
347     } else {
348         enableGPS(false);
349     }
350 }
351
352 bool SituareEngine::isUserMoved()
353 {
354     qDebug() << __PRETTY_FUNCTION__;
355
356     return m_userMoved;
357 }
358
359 void SituareEngine::loginActionPressed()
360 {
361     qDebug() << __PRETTY_FUNCTION__;
362
363     if(m_ui->loginState()) {
364         logout();
365         m_situareService->clearUserData();
366     } else {
367         m_facebookAuthenticator->start();
368     }
369 }
370
371 void SituareEngine::loginOk()
372 {
373     qDebug() << __PRETTY_FUNCTION__;
374
375     m_ui->loggedIn(true);
376
377     m_ui->show();
378     m_situareService->fetchLocations(); // request user locations
379
380     if (m_gps->isRunning())
381         m_ui->readAutomaticLocationUpdateSettings();
382 }
383
384 void SituareEngine::loginProcessCancelled()
385 {
386     qDebug() << __PRETTY_FUNCTION__;
387
388     m_ui->toggleProgressIndicator(false);
389     m_ui->updateItemVisibility();
390 }
391
392 void SituareEngine::logout()
393 {
394     qDebug() << __PRETTY_FUNCTION__;
395
396     m_ui->loggedIn(false);
397
398     // signal to clear locationUpdateDialog's data
399     connect(this, SIGNAL(clearUpdateLocationDialogData()),
400             m_ui, SIGNAL(clearUpdateLocationDialogData()));
401     emit clearUpdateLocationDialogData();
402
403     m_facebookAuthenticator->clearAccountInformation(); // clear all
404     m_automaticUpdateFirstStart = true;
405 }
406
407 void SituareEngine::refreshUserData()
408 {
409     qDebug() << __PRETTY_FUNCTION__;
410
411     m_ui->toggleProgressIndicator(true);
412
413     m_situareService->fetchLocations();
414 }
415
416 void SituareEngine::requestAddress()
417 {
418     qDebug() << __PRETTY_FUNCTION__;
419
420     if (m_gps->isRunning())
421         m_situareService->reverseGeo(m_gps->lastPosition());
422     else
423         m_situareService->reverseGeo(m_mapEngine->centerGeoCoordinate());
424 }
425
426 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
427 {
428     qDebug() << __PRETTY_FUNCTION__;
429
430     m_ui->toggleProgressIndicator(true);
431
432     if (m_gps->isRunning())
433         m_situareService->updateLocation(m_gps->lastPosition(), status, publish);
434     else
435         m_situareService->updateLocation(m_mapEngine->centerGeoCoordinate(), status, publish);
436 }
437
438 void SituareEngine::saveGPSPosition(QPointF position)
439 {
440     qDebug() << __PRETTY_FUNCTION__;
441
442     if ((fabs(m_lastUpdatedGPSPosition.x() - position.x()) >
443          USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE) ||
444         (fabs(m_lastUpdatedGPSPosition.y() - position.y()) >
445          USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE)) {
446
447         m_lastUpdatedGPSPosition = position;
448         m_userMoved = true;
449     }
450 }
451
452 void SituareEngine::setFirstStartZoomLevel(QPointF latLonCoordinate, qreal accuracy)
453 {
454     qDebug() << __PRETTY_FUNCTION__;
455
456     Q_UNUSED(latLonCoordinate);
457     Q_UNUSED(accuracy);
458
459     if (m_autoCenteringEnabled) // autocentering is disabled when map is scrolled        
460         m_mapEngine->setZoomLevel(DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE);
461
462     disconnect(m_gps, SIGNAL(position(QPointF,qreal)),
463                this, SLOT(setFirstStartZoomLevel(QPointF,qreal)));
464 }
465
466 void SituareEngine::signalsFromFacebookAuthenticator()
467 {
468     qDebug() << __PRETTY_FUNCTION__;
469
470     connect(m_facebookAuthenticator, SIGNAL(error(int, int)),
471             this, SLOT(error(int, int)));
472
473     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
474             m_situareService, SLOT(credentialsReady(FacebookCredentials)));
475
476     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
477             this, SLOT(loginOk()));
478
479     connect(m_facebookAuthenticator, SIGNAL(newLoginRequest()),
480             m_ui, SLOT(startLoginProcess()));
481
482     connect(m_facebookAuthenticator, SIGNAL(saveCookiesRequest()),
483             m_ui, SLOT(saveCookies()));
484
485     connect(m_facebookAuthenticator, SIGNAL(loginUsingCookies()),
486             m_ui, SLOT(loginUsingCookies()));
487 }
488
489 void SituareEngine::signalsFromGPS()
490 {
491     qDebug() << __PRETTY_FUNCTION__;
492
493     connect(m_gps, SIGNAL(position(QPointF,qreal)),
494             m_mapEngine, SLOT(gpsPositionUpdate(QPointF,qreal)));
495
496     connect(m_gps, SIGNAL(timeout()),
497             m_ui, SLOT(gpsTimeout()));
498
499     connect(m_gps, SIGNAL(error(int, int)),
500             this, SLOT(error(int, int)));
501
502     connect(m_gps, SIGNAL(position(QPointF,qreal)),
503             this, SLOT(saveGPSPosition(QPointF)));
504 }
505
506 void SituareEngine::signalsFromMainWindow()
507 {
508     qDebug() << __PRETTY_FUNCTION__;    
509
510     connect(m_ui, SIGNAL(error(int, int)),
511             this, SLOT(error(int, int)));
512
513     connect(m_ui, SIGNAL(fetchUsernameFromSettings()),
514             this, SLOT(fetchUsernameFromSettings()));
515
516     connect(m_ui, SIGNAL(loginActionPressed()),
517             this, SLOT(loginActionPressed()));
518
519     connect(m_ui, SIGNAL(saveUsername(QString)),
520             m_facebookAuthenticator, SLOT(saveUsername(QString)));
521
522     connect(m_ui, SIGNAL(updateCredentials(QUrl)),
523             m_facebookAuthenticator, SLOT(updateCredentials(QUrl)));
524
525     // signals from map view
526     connect(m_ui, SIGNAL(mapViewScrolled(QPoint)),
527             m_mapEngine, SLOT(setLocation(QPoint)));
528
529     connect(m_ui, SIGNAL(mapViewResized(QSize)),
530             m_mapEngine, SLOT(viewResized(QSize)));
531
532     connect(m_ui, SIGNAL(viewZoomFinished()),
533             m_mapEngine, SLOT(viewZoomFinished()));
534
535     // signals from zoom buttons (zoom panel and volume buttons)
536     connect(m_ui, SIGNAL(zoomIn()),
537             m_mapEngine, SLOT(zoomIn()));
538
539     connect(m_ui, SIGNAL(zoomOut()),
540             m_mapEngine, SLOT(zoomOut()));
541
542     // signals from menu buttons
543     connect(m_ui, SIGNAL(autoCenteringTriggered(bool)),
544             this, SLOT(changeAutoCenteringSetting(bool)));
545
546     connect(m_ui, SIGNAL(gpsTriggered(bool)),
547             this, SLOT(enableGPS(bool)));
548
549     //signals from dialogs
550     connect(m_ui, SIGNAL(cancelLoginProcess()),
551             this, SLOT(loginProcessCancelled()));
552
553     connect(m_ui, SIGNAL(requestReverseGeo()),
554             this, SLOT(requestAddress()));
555
556     connect(m_ui, SIGNAL(statusUpdate(QString,bool)),
557             this, SLOT(requestUpdateLocation(QString,bool)));
558
559     connect(m_ui, SIGNAL(enableAutomaticLocationUpdate(bool, int)),
560             this, SLOT(enableAutomaticLocationUpdate(bool, int)));    
561
562     // signals from user info tab
563     connect(m_ui, SIGNAL(refreshUserData()),
564             this, SLOT(refreshUserData()));
565
566     connect(m_ui, SIGNAL(findUser(QPointF)),
567             m_mapEngine, SLOT(setViewLocation(QPointF)));
568
569     // signals from friend list tab
570     connect(m_ui, SIGNAL(findFriend(QPointF)),
571             m_mapEngine, SLOT(setViewLocation(QPointF)));
572 }
573
574 void SituareEngine::signalsFromMapEngine()
575 {
576     qDebug() << __PRETTY_FUNCTION__;
577
578     connect(m_mapEngine, SIGNAL(error(int, int)),
579             this, SLOT(error(int, int)));
580
581     connect(m_mapEngine, SIGNAL(locationChanged(QPoint)),
582             m_ui, SIGNAL(centerToSceneCoordinates(QPoint)));
583
584     connect(m_mapEngine, SIGNAL(zoomLevelChanged(int)),
585             m_ui, SIGNAL(zoomLevelChanged(int)));
586
587     connect(m_mapEngine, SIGNAL(mapScrolledManually()),
588             this, SLOT(disableAutoCentering()));
589
590     connect(m_mapEngine, SIGNAL(maxZoomLevelReached()),
591             m_ui, SIGNAL(maxZoomLevelReached()));
592
593     connect(m_mapEngine, SIGNAL(minZoomLevelReached()),
594             m_ui, SIGNAL(minZoomLevelReached()));
595
596     connect(m_mapEngine, SIGNAL(locationItemClicked(QList<QString>)),
597             m_ui, SIGNAL(locationItemClicked(QList<QString>)));
598
599     connect(m_mapEngine, SIGNAL(newMapResolution(qreal)),
600             m_ui, SIGNAL(newMapResolution(qreal)));
601 }
602
603 void SituareEngine::signalsFromSituareService()
604 {
605     qDebug() << __PRETTY_FUNCTION__;
606
607     connect(m_situareService, SIGNAL(error(int, int)),
608             this, SLOT(error(int, int)));
609
610     connect(m_situareService, SIGNAL(error(int, int)),
611             m_ui, SIGNAL(messageSendingFailed(int)));
612
613     connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
614             m_ui, SIGNAL(reverseGeoReady(QString)));
615
616     connect(m_situareService, SIGNAL(userDataChanged(User*, QList<User*>&)),
617             this, SLOT(userDataChanged(User*, QList<User*>&)));
618
619     connect(m_situareService, SIGNAL(updateWasSuccessful()),
620             this, SLOT(updateWasSuccessful()));
621
622     connect(m_situareService, SIGNAL(updateWasSuccessful()),
623             m_ui, SIGNAL(clearUpdateLocationDialogData()));
624 }
625
626 void SituareEngine::updateWasSuccessful()
627 {
628     qDebug() << __PRETTY_FUNCTION__;
629
630     m_situareService->fetchLocations();
631 }
632
633 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
634 {
635     qDebug() << __PRETTY_FUNCTION__;
636
637     m_ui->toggleProgressIndicator(false);
638     m_ui->showPanels();
639
640     emit userLocationReady(user);
641     emit friendsLocationsReady(friendsList);
642 }