Integrated GPSPosition to MainWindow, MapViewScreen and Engine.
[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
9     Situare is free software; you can redistribute it and/or
10     modify it under the terms of the GNU General Public License
11     version 2 as published by the Free Software Foundation.
12
13     Situare is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with Situare; if not, write to the Free Software
20     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
21     USA.
22  */
23
24 #include "engine.h"
25 #include "ui/mainwindow.h"
26 #include "gps/gpsposition.h"
27
28 SituareEngine::SituareEngine(QMainWindow *parent)
29     : QObject(parent)
30 {
31     qDebug() << __PRETTY_FUNCTION__;
32     m_ui = new MainWindow;
33
34     m_situareService = new SituareService(this);
35
36     m_facebookAuthenticator = new FacebookAuthentication();
37
38     m_gps = new GPSPosition(this);
39
40     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
41             m_situareService, SLOT(credentialsReady(FacebookCredentials)));
42     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
43             this, SLOT(loginOk()));
44
45     connect(m_ui, SIGNAL(requestReverseGeo()), this, SLOT(requestAddress()));
46     connect(m_situareService, SIGNAL(reverseGeoReady(QString)), m_ui, SIGNAL(reverseGeoReady(QString)));
47     connect(m_ui, SIGNAL(statusUpdate(QString,bool)), this, SLOT(requestUpdateLocation(QString,bool)));
48     connect(m_situareService, SIGNAL(userDataChanged(User*,QList<User*>&)),
49             this, SLOT(userDataChanged(User*,QList<User*>&)));
50     connect(this, SIGNAL(userLocationReady(User*)), m_ui, SIGNAL(userLocationReady(User*)));
51     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)), m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
52         connect(m_situareService, SIGNAL(error(QString)), this, SLOT(error(QString)));
53     connect(m_situareService, SIGNAL(updateWasSuccessful()), this, SLOT(updateWasSuccessful()));
54
55     connect(m_ui, SIGNAL(refreshUserData()),
56             this, SLOT(refreshUserData()));
57
58     connect(m_gps, SIGNAL(timeout()), m_ui, SLOT(gpsTimeout()));
59     connect(m_gps, SIGNAL(error(QString)), m_ui, SLOT(gpsError(QString)));
60     connect(m_ui, SIGNAL(enableGPS(bool)), this, SLOT(enableGPS(bool)));
61     connect(m_gps, SIGNAL(position(QPointF)),
62             m_ui, SIGNAL(positionReceived(QPointF)));
63
64      m_facebookAuthenticator->start();
65 }
66
67 SituareEngine::~SituareEngine()
68 {
69     qDebug() << __PRETTY_FUNCTION__;
70     delete m_ui;
71     delete m_facebookAuthenticator;
72 }
73
74 void SituareEngine::error(const QString &error)
75 {
76     qDebug() << __PRETTY_FUNCTION__;
77     qDebug() << error;
78     // ToDo: signal UI?
79 }
80
81 void SituareEngine::loginOk()
82 {
83     qDebug() << __PRETTY_FUNCTION__;
84     m_facebookAuthenticator->hide();
85     m_ui->show();
86     m_situareService->fetchLocations(); // request user locations
87     enableGPS(true);
88 }
89
90 void SituareEngine::requestAddress()
91 {
92     qDebug() << __PRETTY_FUNCTION__;
93
94     QPointF coordinates(65.0109, 25.5092); // this will be get from somewhere, map etc...
95     m_situareService->reverseGeo(coordinates);
96 }
97
98 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
99 {
100     qDebug() << __PRETTY_FUNCTION__;
101
102     m_ui->toggleProgressIndicator(true);
103
104     QPointF coordinates(65.0109, 25.5092); // this will be get from somewhere, map etc...
105     m_situareService->updateLocation(coordinates, status, publish);
106 }
107
108 void SituareEngine::updateWasSuccessful()
109 {
110     qDebug() << __PRETTY_FUNCTION__;
111
112     m_situareService->fetchLocations();
113 }
114
115 void SituareEngine::refreshUserData()
116 {
117     qDebug() << __PRETTY_FUNCTION__;
118
119     m_ui->toggleProgressIndicator(true);
120
121     m_situareService->fetchLocations();
122 }
123
124 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
125 {
126     qDebug() << __PRETTY_FUNCTION__;
127
128     m_ui->toggleProgressIndicator(false);
129
130     emit userLocationReady(user);
131     emit friendsLocationsReady(friendsList);
132 }
133
134 void SituareEngine::enableGPS(bool enabled)
135 {
136     qDebug() << __PRETTY_FUNCTION__;
137
138     if (enabled)
139         m_gps->start();
140     else
141         m_gps->stop();
142 }