Moved creating the FacebookLoginBrowser to FacebookAuthentication.
[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 <cmath>
26
27 #include <QMessageBox>
28 #include <QNetworkReply>
29
30 #include "application.h"
31 #include "common.h"
32 #include "contactmanager.h"
33 #include "../error.h"
34 #include "ui/facebookloginbrowser.h"
35 #include "facebookservice/facebookauthentication.h"
36 #include "gps/gpsposition.h"
37 #include "map/mapengine.h"
38 #include "routing/geocodingservice.h"
39 #include "routing/routingservice.h"
40 #include "mce.h"
41 #include "network/networkaccessmanager.h"
42 #include "situareservice/situareservice.h"
43 #include "ui/mainwindow.h"
44
45 #include "engine.h"
46
47 const QString SETTINGS_GPS_ENABLED = "GPS_ENABLED"; ///< GPS setting
48 const QString SETTINGS_AUTO_CENTERING_ENABLED = "AUTO_CENTERING_ENABLED";///< Auto centering setting
49 const int DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE = 12;  ///< Default zoom level when GPS available
50 const qreal USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE = 0.003;///< Min value for user move latitude
51 const qreal USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE = 0.001;///< Min value for user move longitude
52 const int MIN_UPDATE_INTERVAL_MSECS = 5*60*1000;
53
54 SituareEngine::SituareEngine()
55     : m_autoCenteringEnabled(false),
56       m_automaticUpdateFirstStart(true),
57       m_automaticUpdateRequest(false),
58       m_userMoved(false),
59       m_automaticUpdateIntervalTimer(0),
60       m_lastUpdatedGPSPosition(GeoCoordinate())
61 {
62     qDebug() << __PRETTY_FUNCTION__;
63
64     m_ui = new MainWindow;
65     m_ui->updateItemVisibility();
66
67     Application *application = static_cast<Application *>(qApp);
68     application->registerWindow(m_ui->winId());
69
70     connect(application, SIGNAL(topmostWindowChanged(bool)),
71             this, SLOT(topmostWindowChanged(bool)));
72
73     m_networkAccessManager = new NetworkAccessManager(this);
74
75     // build MapEngine
76     m_mapEngine = new MapEngine(this);
77     m_ui->setMapViewScene(m_mapEngine->scene());
78
79     // build GPS
80     m_gps = new GPSPosition(this);
81
82     // build SituareService
83     m_situareService = new SituareService(this);
84
85     // build FacebookAuthenticator
86     m_facebookAuthenticator = new FacebookAuthentication(m_ui, this);
87
88     // build routing service
89     m_routingService = new RoutingService(this); // create this when needed, not in constructor!
90
91     // build geocoding service
92     m_geocodingService = new GeocodingService(this);
93
94     // connect signals
95     signalsFromMapEngine();
96     signalsFromGeocodingService();
97     signalsFromGPS();
98     signalsFromRoutingService();
99     signalsFromSituareService();
100     signalsFromMainWindow();
101     signalsFromFacebookAuthenticator();
102
103     connect(this, SIGNAL(userLocationReady(User*)),
104             m_ui, SIGNAL(userLocationReady(User*)));
105
106     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
107             m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
108
109     connect(this, SIGNAL(userLocationReady(User*)),
110             m_mapEngine, SLOT(receiveOwnLocation(User*)));
111
112     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
113             m_mapEngine, SIGNAL(friendsLocationsReady(QList<User*>&)));
114
115     connect(this, SIGNAL(friendImageReady(User*)),
116             m_ui, SIGNAL(friendImageReady(User*)));
117
118     connect(this, SIGNAL(friendImageReady(User*)),
119             m_mapEngine, SIGNAL(friendImageReady(User*)));
120
121     m_automaticUpdateIntervalTimer = new QTimer(this);
122     connect(m_automaticUpdateIntervalTimer, SIGNAL(timeout()),
123             this, SLOT(startAutomaticUpdate()));
124
125     // signals connected, now it's time to show the main window
126     // but init the MapEngine before so starting location is set
127     m_mapEngine->init();
128     m_ui->show();
129
130     m_gps->setMode(GPSPosition::Default);
131     initializeGpsAndAutocentering();
132
133     m_mce = new MCE(this);
134     connect(m_mce, SIGNAL(displayOff(bool)), this, SLOT(setPowerSaving(bool)));
135
136     m_contactManager = new ContactManager(this);
137     m_contactManager->requestContactGuids();
138
139     m_facebookAuthenticator->login();
140 }
141
142 SituareEngine::~SituareEngine()
143 {
144     qDebug() << __PRETTY_FUNCTION__;
145
146     delete m_ui;
147
148     QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
149     settings.setValue(SETTINGS_GPS_ENABLED, m_gps->isRunning());
150     settings.setValue(SETTINGS_AUTO_CENTERING_ENABLED, m_autoCenteringEnabled);
151 }
152
153 void SituareEngine::changeAutoCenteringSetting(bool enabled)
154 {
155     qDebug() << __PRETTY_FUNCTION__ << enabled;
156
157     m_autoCenteringEnabled = enabled;
158     setAutoCentering(enabled);
159 }
160
161 void SituareEngine::disableAutoCentering()
162 {
163     qDebug() << __PRETTY_FUNCTION__;
164
165     changeAutoCenteringSetting(false);
166 }
167
168 void SituareEngine::draggingModeTriggered()
169 {
170     qDebug() << __PRETTY_FUNCTION__;
171
172     if (m_mce)
173         m_mce->vibrationFeedback();
174 }
175
176 void SituareEngine::enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs)
177 {
178     qDebug() << __PRETTY_FUNCTION__;
179
180     //Show automatic update confirmation dialog
181     if (m_automaticUpdateFirstStart && m_gps->isRunning() && enabled) {
182         m_ui->showEnableAutomaticUpdateLocationDialog(
183                 tr("Do you want to enable automatic location update with %1 min update interval?")
184                 .arg(updateIntervalMsecs/1000/60));
185         m_automaticUpdateFirstStart = false;
186     } else {
187         if (enabled && m_gps->isRunning()) {
188             m_ui->buildInformationBox(tr("Automatic location update enabled"));
189             if (updateIntervalMsecs < MIN_UPDATE_INTERVAL_MSECS)
190                 m_automaticUpdateIntervalTimer->setInterval(MIN_UPDATE_INTERVAL_MSECS);
191             else
192                 m_automaticUpdateIntervalTimer->setInterval(updateIntervalMsecs);
193
194             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
195                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
196
197             m_automaticUpdateIntervalTimer->start();
198
199         } else {
200             disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
201                     this, SLOT(requestAutomaticUpdateIfMoved(GeoCoordinate)));
202
203             m_automaticUpdateIntervalTimer->stop();
204         }
205     }
206 }
207
208 void SituareEngine::error(const int context, const int error)
209 {
210     qDebug() << __PRETTY_FUNCTION__;
211
212     switch(error)
213     {
214     case SituareError::ERROR_GENERAL:
215         if(context == ErrorContext::SITUARE) {
216             m_ui->toggleProgressIndicator(false);
217             m_ui->buildInformationBox(tr("Unknown server error"), true);
218         }
219         break;
220     case 1: //errors: SituareError::ERROR_MISSING_ARGUMENT and QNetworkReply::ConnectionRefusedError
221         m_ui->toggleProgressIndicator(false);
222         if(context == ErrorContext::SITUARE) {
223             m_ui->buildInformationBox(tr("Missing parameter from request"), true);
224         } else if(context == ErrorContext::NETWORK) {
225             m_ui->buildInformationBox(tr("Connection refused by the server"), true);
226         }
227         break;
228     case QNetworkReply::RemoteHostClosedError:
229         if(context == ErrorContext::NETWORK) {
230             m_ui->toggleProgressIndicator(false);
231             m_ui->buildInformationBox(tr("Connection closed by the server"), true);
232         }
233         break;
234     case QNetworkReply::HostNotFoundError:
235         if(context == ErrorContext::NETWORK) {
236             m_ui->toggleProgressIndicator(false);
237             m_ui->buildInformationBox(tr("Remote server not found"), true);
238         }
239         break;
240     case QNetworkReply::TimeoutError:
241         if(context == ErrorContext::NETWORK) {
242             m_ui->toggleProgressIndicator(false);
243             m_ui->buildInformationBox(tr("Connection timed out"), true);
244         }
245         break;
246     case QNetworkReply::UnknownNetworkError:
247         if(context == ErrorContext::NETWORK) {
248             m_ui->toggleProgressIndicator(false);
249             m_ui->buildInformationBox(tr("No network connection"), true);
250         }
251         break;
252     case SituareError::SESSION_EXPIRED:
253         m_ui->buildInformationBox(tr("Session expired. Please login again"), true);
254         m_facebookAuthenticator->clearAccountInformation(true); // keep username = true
255         m_situareService->clearUserData();
256         m_ui->loggedIn(false);
257         m_ui->loginFailed();
258         break;
259     case SituareError::LOGIN_FAILED:
260         m_ui->toggleProgressIndicator(false);
261         m_ui->buildInformationBox(tr("Invalid E-mail address or password"), true);
262         m_ui->loginFailed();
263         break;
264     case SituareError::UPDATE_FAILED:
265         m_ui->toggleProgressIndicator(false);
266         m_ui->buildInformationBox(tr("Update failed, please try again"), true);
267         break;
268     case SituareError::DATA_RETRIEVAL_FAILED:
269         m_ui->toggleProgressIndicator(false);
270         m_ui->buildInformationBox(tr("Data retrieval failed, please try again"), true);
271         break;
272     case SituareError::ADDRESS_RETRIEVAL_FAILED:
273         m_ui->toggleProgressIndicator(false);
274         m_ui->buildInformationBox(tr("Address retrieval failed"), true);
275         break;
276     case SituareError::IMAGE_DOWNLOAD_FAILED:
277         m_ui->buildInformationBox(tr("Image download failed"), true);
278         break;
279     case SituareError::MAP_IMAGE_DOWNLOAD_FAILED:
280         m_ui->buildInformationBox(tr("Map image download failed"), true);
281         break;
282     case SituareError::GPS_INITIALIZATION_FAILED:
283         setGPS(false);
284         m_ui->buildInformationBox(tr("GPS initialization failed"), true);
285         break;
286     case SituareError::INVALID_JSON:
287         m_ui->buildInformationBox(tr("Malformatted reply from server"), true);
288         m_ui->loggedIn(false);
289         m_facebookAuthenticator->clearAccountInformation(false); // clean all
290         break;
291     case SituareError::ERROR_ROUTING_FAILED:
292         m_ui->toggleProgressIndicator(false);
293         m_ui->buildInformationBox(tr("Routing failed"), true);
294         break;
295     case SituareError::ERROR_LOCATION_SEARCH_FAILED:
296         m_ui->buildInformationBox(tr("No results found"), true);
297         break;
298     default:
299         m_ui->toggleProgressIndicator(false);
300         if(context == ErrorContext::NETWORK)
301             qCritical() << __PRETTY_FUNCTION__ << "QNetworkReply::NetworkError: " << error;
302         else
303             qCritical() << __PRETTY_FUNCTION__ << "Unknown error: " << error;
304         break;
305     }
306 }
307
308 void SituareEngine::imageReady(User *user)
309 {
310     qDebug() << __PRETTY_FUNCTION__;
311
312     if(user->type())
313         emit userLocationReady(user);
314     else
315         emit friendImageReady(user);
316 }
317
318 void SituareEngine::initializeGpsAndAutocentering()
319 {
320     qDebug() << __PRETTY_FUNCTION__;
321
322     QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
323     QVariant gpsEnabled = settings.value(SETTINGS_GPS_ENABLED);
324     QVariant autoCenteringEnabled = settings.value(SETTINGS_AUTO_CENTERING_ENABLED);
325
326     if (m_gps->isInitialized()) {
327
328         if (gpsEnabled.toString().isEmpty()) { // First start. Situare.conf file does not exists
329
330             connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
331                     this, SLOT(setFirstStartZoomLevel()));
332
333             changeAutoCenteringSetting(true);
334             setGPS(true);
335
336             m_ui->buildInformationBox(tr("GPS enabled"));
337
338         } else { // Normal start
339             changeAutoCenteringSetting(autoCenteringEnabled.toBool());
340             setGPS(gpsEnabled.toBool());
341
342             if (gpsEnabled.toBool())
343                 m_ui->buildInformationBox(tr("GPS enabled"));
344         }
345     } else {
346         setGPS(false);
347     }
348 }
349
350 void SituareEngine::locationSearch(QString location)
351 {
352     qDebug() << __PRETTY_FUNCTION__;
353
354     if(!location.isEmpty())
355         m_geocodingService->requestLocation(location);
356 }
357
358 void SituareEngine::loginActionPressed()
359 {
360     qDebug() << __PRETTY_FUNCTION__;
361
362     if (m_networkAccessManager->isConnected()) {
363         if(m_ui->loginState()) {
364             logout();
365             m_situareService->clearUserData();
366         } else {
367             m_facebookAuthenticator->login();
368         }
369     }
370     else {
371         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
372     }
373 }
374
375 void SituareEngine::loginOk()
376 {
377     /// @ OLD CODE, REFACTOR! loggedIn -> FB authenticator etc.
378     qDebug() << __PRETTY_FUNCTION__;
379
380     m_ui->loggedIn(true);
381
382     m_ui->show();
383     m_situareService->fetchLocations(); // request user locations
384
385     if (m_gps->isRunning())
386         m_ui->readAutomaticLocationUpdateSettings();
387 }
388
389 void SituareEngine::loginProcessCancelled()
390 {
391     qDebug() << __PRETTY_FUNCTION__;
392
393     m_ui->toggleProgressIndicator(false);
394     m_ui->updateItemVisibility();
395 }
396
397 void SituareEngine::logout()
398 {
399     qDebug() << __PRETTY_FUNCTION__;
400
401     m_ui->loggedIn(false);
402
403     // signal to clear locationUpdateDialog's data
404     connect(this, SIGNAL(clearUpdateLocationDialogData()),
405             m_ui, SIGNAL(clearUpdateLocationDialogData()));
406     emit clearUpdateLocationDialogData();
407
408     m_facebookAuthenticator->clearAccountInformation(); // clear all
409     m_automaticUpdateFirstStart = true;
410 }
411
412 void SituareEngine::refreshUserData()
413 {
414     qDebug() << __PRETTY_FUNCTION__;
415
416     if (m_networkAccessManager->isConnected()) {
417         m_ui->toggleProgressIndicator(true);
418         m_situareService->fetchLocations();
419     }
420     else {
421         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
422     }
423 }
424
425 void SituareEngine::requestAddress()
426 {
427     qDebug() << __PRETTY_FUNCTION__;
428
429     if (m_networkAccessManager->isConnected()) {
430         if (m_gps->isRunning())
431             m_situareService->reverseGeo(m_gps->lastPosition());
432         else
433             m_situareService->reverseGeo(m_mapEngine->centerGeoCoordinate());
434     }
435     else {
436         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
437     }
438 }
439
440 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
441 {
442     qDebug() << __PRETTY_FUNCTION__;
443
444     if (m_networkAccessManager->isConnected()) {
445         m_ui->toggleProgressIndicator(true);
446
447         if (m_gps->isRunning())
448             m_situareService->updateLocation(m_gps->lastPosition(), status, publish);
449         else
450             m_situareService->updateLocation(m_mapEngine->centerGeoCoordinate(), status, publish);
451     }
452     else {
453         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
454     }
455 }
456
457 void SituareEngine::requestAutomaticUpdateIfMoved(GeoCoordinate position)
458 {
459     qDebug() << __PRETTY_FUNCTION__;
460
461     if ((fabs(m_lastUpdatedGPSPosition.longitude() - position.longitude()) >
462          USER_MOVEMENT_MINIMUM_LONGITUDE_DIFFERENCE) ||
463         (fabs(m_lastUpdatedGPSPosition.latitude() - position.latitude()) >
464          USER_MOVEMENT_MINIMUM_LATITUDE_DIFFERENCE)) {
465
466         m_lastUpdatedGPSPosition = position;
467         m_userMoved = true;
468     }
469
470     if (m_automaticUpdateRequest && m_userMoved) {
471         requestUpdateLocation(tr("Automatic location update"));
472         m_automaticUpdateRequest = false;
473         m_userMoved = false;
474     }
475 }
476
477 void SituareEngine::routeParsed(Route &route)
478 {
479     qDebug() << __PRETTY_FUNCTION__;
480
481     Q_UNUSED(route);
482
483     m_ui->toggleProgressIndicator(false);
484 }
485
486 void SituareEngine::routeTo(const GeoCoordinate &endPointCoordinates)
487 {
488     qDebug() << __PRETTY_FUNCTION__;
489
490     m_ui->toggleProgressIndicator(true);
491
492     if (m_gps->isRunning())
493         m_routingService->requestRoute(m_gps->lastPosition(), endPointCoordinates);
494     else
495         m_routingService->requestRoute(m_mapEngine->centerGeoCoordinate(), endPointCoordinates);
496 }
497
498 void SituareEngine::routeToCursor()
499 {
500     qDebug() << __PRETTY_FUNCTION__;
501
502     routeTo(m_mapEngine->centerGeoCoordinate());
503 }
504
505 void SituareEngine::setAutoCentering(bool enabled)
506 {
507     qDebug() << __PRETTY_FUNCTION__ << enabled;
508
509     m_ui->setIndicatorButtonEnabled(enabled);
510     m_mapEngine->setAutoCentering(enabled);
511     m_ui->setCrosshairVisibility(!enabled);
512
513     if (enabled) {
514         setGPS(true);
515         m_gps->requestLastPosition();
516     }
517 }
518
519 void SituareEngine::setFirstStartZoomLevel()
520 {
521     qDebug() << __PRETTY_FUNCTION__;
522
523     if (m_autoCenteringEnabled) // autocentering is disabled when map is scrolled
524         m_mapEngine->setZoomLevel(DEFAULT_ZOOM_LEVEL_WHEN_GPS_IS_AVAILABLE);
525
526     disconnect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
527                this, SLOT(setFirstStartZoomLevel()));
528 }
529
530 void SituareEngine::setGPS(bool enabled)
531 {
532     qDebug() << __PRETTY_FUNCTION__ << enabled;
533
534     if (m_gps->isInitialized()) {
535         m_ui->setGPSButtonEnabled(enabled);
536         m_mapEngine->setGPSEnabled(enabled);
537
538         if (enabled && !m_gps->isRunning()) {
539             m_gps->start();
540             m_gps->requestLastPosition();
541
542             if(m_ui->loginState())
543                 m_ui->readAutomaticLocationUpdateSettings();
544         }
545         else if (!enabled && m_gps->isRunning()) {
546             m_gps->stop();
547             changeAutoCenteringSetting(false);
548             enableAutomaticLocationUpdate(false);
549         }
550     }
551     else {
552         if (enabled)
553             m_ui->buildInformationBox(tr("Unable to start GPS"));
554         m_ui->setGPSButtonEnabled(false);
555         m_mapEngine->setGPSEnabled(false);
556     }
557 }
558
559 void SituareEngine::setPowerSaving(bool enabled)
560 {
561     qDebug() << __PRETTY_FUNCTION__ << enabled;
562
563     m_gps->enablePowerSave(enabled);
564
565     if(m_autoCenteringEnabled)
566         m_mapEngine->setAutoCentering(!enabled);
567 }
568
569 void SituareEngine::showContactDialog(const QString &facebookId)
570 {
571     qDebug() << __PRETTY_FUNCTION__;
572
573     QString guid = m_contactManager->contactGuid(facebookId);
574
575     if (!guid.isEmpty())
576         m_ui->showContactDialog(guid);
577     else
578         m_ui->buildInformationBox(tr("Unable to find contact.\nAdd Facebook IM "
579                                      "account from Conversations to use this feature."), true);
580 }
581
582 void SituareEngine::signalsFromFacebookAuthenticator()
583 {
584     qDebug() << __PRETTY_FUNCTION__;
585
586     connect(m_facebookAuthenticator, SIGNAL(error(int, int)),
587             this, SLOT(error(int, int)));
588
589     connect(m_facebookAuthenticator, SIGNAL(loggedIn(QString)),
590             m_situareService, SLOT(updateSession(QString)));
591
592     connect(m_facebookAuthenticator, SIGNAL(loggedIn(QString)),
593             this, SLOT(loginOk()));
594 }
595
596 void SituareEngine::signalsFromGeocodingService()
597 {
598     qDebug() << __PRETTY_FUNCTION__;
599
600     connect(m_geocodingService, SIGNAL(locationDataParsed(const QList<Location>&)),
601             m_ui, SIGNAL(locationDataParsed(const QList<Location>&)));
602
603     connect(m_geocodingService, SIGNAL(error(int, int)),
604             this, SLOT(error(int, int)));
605 }
606
607 void SituareEngine::signalsFromGPS()
608 {
609     qDebug() << __PRETTY_FUNCTION__;
610
611     connect(m_gps, SIGNAL(position(GeoCoordinate, qreal)),
612             m_mapEngine, SLOT(gpsPositionUpdate(GeoCoordinate, qreal)));
613
614     connect(m_gps, SIGNAL(timeout()),
615             m_ui, SLOT(gpsTimeout()));
616
617     connect(m_gps, SIGNAL(error(int, int)),
618             this, SLOT(error(int, int)));
619 }
620
621 void SituareEngine::signalsFromMainWindow()
622 {
623     qDebug() << __PRETTY_FUNCTION__;
624
625     connect(m_ui, SIGNAL(error(int, int)),
626             this, SLOT(error(int, int)));
627
628     connect(m_ui, SIGNAL(loginActionPressed()),
629             this, SLOT(loginActionPressed()));
630
631     // signals from map view
632     connect(m_ui, SIGNAL(mapViewScrolled(SceneCoordinate)),
633             m_mapEngine, SLOT(setCenterPosition(SceneCoordinate)));
634
635     connect(m_ui, SIGNAL(mapViewResized(QSize)),
636             m_mapEngine, SLOT(viewResized(QSize)));
637
638     connect(m_ui, SIGNAL(viewZoomFinished()),
639             m_mapEngine, SLOT(viewZoomFinished()));
640
641     // signals from zoom buttons (zoom panel and volume buttons)
642     connect(m_ui, SIGNAL(zoomIn()),
643             m_mapEngine, SLOT(zoomIn()));
644
645     connect(m_ui, SIGNAL(zoomOut()),
646             m_mapEngine, SLOT(zoomOut()));
647
648     // signals from menu buttons
649     connect(m_ui, SIGNAL(gpsTriggered(bool)),
650             this, SLOT(setGPS(bool)));
651
652     //signals from dialogs
653     connect(m_ui, SIGNAL(cancelLoginProcess()),
654             this, SLOT(loginProcessCancelled()));
655
656     connect(m_ui, SIGNAL(requestReverseGeo()),
657             this, SLOT(requestAddress()));
658
659     connect(m_ui, SIGNAL(statusUpdate(QString,bool)),
660             this, SLOT(requestUpdateLocation(QString,bool)));
661
662     connect(m_ui, SIGNAL(enableAutomaticLocationUpdate(bool, int)),
663             this, SLOT(enableAutomaticLocationUpdate(bool, int)));
664
665     // signals from user info tab
666     connect(m_ui, SIGNAL(refreshUserData()),
667             this, SLOT(refreshUserData()));
668
669     connect(m_ui, SIGNAL(centerToCoordinates(GeoCoordinate)),
670             m_mapEngine, SLOT(centerToCoordinates(GeoCoordinate)));
671
672     // routing signal from friend list tab & search location tab
673     connect(m_ui, SIGNAL(routeTo(const GeoCoordinate&)),
674             this, SLOT(routeTo(const GeoCoordinate&)));
675
676     // signals from location search panel
677     connect(m_ui,
678             SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)),
679             m_mapEngine,
680             SLOT(showMapArea(const GeoCoordinate&, const GeoCoordinate&)));
681
682     connect(m_ui, SIGNAL(searchHistoryItemClicked(QString)),
683             this, SLOT(locationSearch(QString)));
684
685     // signals from routing tab
686     connect(m_ui, SIGNAL(clearRoute()),
687             m_mapEngine, SLOT(clearRoute()));
688
689     connect(m_ui, SIGNAL(routeToCursor()),
690             this, SLOT(routeToCursor()));
691
692     // signals from distance indicator button
693     connect(m_ui, SIGNAL(autoCenteringTriggered(bool)),
694             this, SLOT(changeAutoCenteringSetting(bool)));
695
696     connect(m_ui, SIGNAL(draggingModeTriggered()),
697             this, SLOT(draggingModeTriggered()));
698
699     // signal from search location dialog
700     connect(m_ui, SIGNAL(searchForLocation(QString)),
701             this, SLOT(locationSearch(QString)));
702
703     // signal from friend list panel
704     connect(m_ui, SIGNAL(requestContactDialog(const QString &)),
705             this, SLOT(showContactDialog(const QString &)));
706 }
707
708 void SituareEngine::signalsFromMapEngine()
709 {
710     qDebug() << __PRETTY_FUNCTION__;
711
712     connect(m_mapEngine, SIGNAL(error(int, int)),
713             this, SLOT(error(int, int)));
714
715     connect(m_mapEngine, SIGNAL(locationChanged(SceneCoordinate)),
716             m_ui, SIGNAL(centerToSceneCoordinates(SceneCoordinate)));
717
718     connect(m_mapEngine, SIGNAL(zoomLevelChanged(int)),
719             m_ui, SIGNAL(zoomLevelChanged(int)));
720
721     connect(m_mapEngine, SIGNAL(mapScrolledManually()),
722             this, SLOT(disableAutoCentering()));
723
724     connect(m_mapEngine, SIGNAL(maxZoomLevelReached()),
725             m_ui, SIGNAL(maxZoomLevelReached()));
726
727     connect(m_mapEngine, SIGNAL(minZoomLevelReached()),
728             m_ui, SIGNAL(minZoomLevelReached()));
729
730     connect(m_mapEngine, SIGNAL(locationItemClicked(QList<QString>)),
731             m_ui, SIGNAL(locationItemClicked(QList<QString>)));
732
733     connect(m_mapEngine, SIGNAL(newMapResolution(qreal)),
734             m_ui, SIGNAL(newMapResolution(qreal)));
735
736     connect(m_mapEngine, SIGNAL(directionIndicatorValuesUpdate(qreal, qreal, bool)),
737             m_ui, SIGNAL(directionIndicatorValuesUpdate(qreal, qreal, bool)));
738 }
739
740 void SituareEngine::signalsFromRoutingService()
741 {
742     qDebug() << __PRETTY_FUNCTION__;
743
744     connect(m_routingService, SIGNAL(routeParsed(Route&)),
745             this, SLOT(routeParsed(Route&)));
746
747     connect(m_routingService, SIGNAL(routeParsed(Route&)),
748             m_mapEngine, SLOT(setRoute(Route&)));
749
750     connect(m_routingService, SIGNAL(routeParsed(Route&)),
751             m_ui, SIGNAL(routeParsed(Route&)));
752
753     connect(m_routingService, SIGNAL(error(int, int)),
754             this, SLOT(error(int, int)));
755 }
756
757 void SituareEngine::signalsFromSituareService()
758 {
759     qDebug() << __PRETTY_FUNCTION__;
760
761     connect(m_situareService, SIGNAL(error(int, int)),
762             this, SLOT(error(int, int)));
763
764     connect(m_situareService, SIGNAL(imageReady(User*)),
765             this, SLOT(imageReady(User*)));
766
767     connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
768             m_ui, SIGNAL(reverseGeoReady(QString)));
769
770     connect(m_situareService, SIGNAL(userDataChanged(User*, QList<User*>&)),
771             this, SLOT(userDataChanged(User*, QList<User*>&)));
772
773     connect(m_situareService, SIGNAL(updateWasSuccessful()),
774             this, SLOT(updateWasSuccessful()));
775
776     connect(m_situareService, SIGNAL(updateWasSuccessful()),
777             m_ui, SIGNAL(clearUpdateLocationDialogData()));
778 }
779
780 void SituareEngine::startAutomaticUpdate()
781 {
782     qDebug() << __PRETTY_FUNCTION__;
783
784     m_gps->requestUpdate();
785     m_automaticUpdateRequest = true;
786 }
787
788 void SituareEngine::topmostWindowChanged(bool isMainWindow)
789 {
790     qDebug() << __PRETTY_FUNCTION__;
791
792     setPowerSaving(!isMainWindow);
793 }
794
795 void SituareEngine::updateWasSuccessful()
796 {
797     qDebug() << __PRETTY_FUNCTION__;
798
799     if (m_networkAccessManager->isConnected())
800         m_situareService->fetchLocations();
801     else
802         error(ErrorContext::NETWORK, QNetworkReply::UnknownNetworkError);
803 }
804
805 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
806 {
807     qDebug() << __PRETTY_FUNCTION__;
808
809     m_ui->toggleProgressIndicator(false);
810
811     emit userLocationReady(user);
812     emit friendsLocationsReady(friendsList);
813 }