Fixed a mysterious login error that occured on some machines
[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/gpspositioninterface.h"
27
28 #ifdef Q_WS_MAEMO_5
29 #include "gps/gpsposition.h"
30 #else
31 #include "gps/gpspositionmockup.h"
32 #endif
33
34 SituareEngine::SituareEngine(QMainWindow *parent)
35     : QObject(parent)
36 {
37     qDebug() << __PRETTY_FUNCTION__;
38     m_ui = new MainWindow;
39
40     m_situareService = new SituareService(this);
41
42     m_facebookAuthenticator = new FacebookAuthentication();
43
44 #ifdef Q_WS_MAEMO_5
45     m_gps = new GPSPosition(this);
46 #else
47     m_gps = new GPSPositionMockup(this);
48 #endif
49
50     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
51             m_situareService, SLOT(credentialsReady(FacebookCredentials)));
52     connect(m_facebookAuthenticator, SIGNAL(credentialsReady(FacebookCredentials)),
53             this, SLOT(loginOk()));
54     connect(m_facebookAuthenticator, SIGNAL(quitSituare()),
55             this, SLOT(quitApplication()));
56
57     connect(m_ui, SIGNAL(requestReverseGeo()),
58             this, SLOT(requestAddress()));
59     connect(m_situareService, SIGNAL(reverseGeoReady(QString)),
60             m_ui, SIGNAL(reverseGeoReady(QString)));
61     connect(m_ui, SIGNAL(statusUpdate(QString,bool)),
62             this, SLOT(requestUpdateLocation(QString,bool)));
63     connect(m_situareService, SIGNAL(userDataChanged(User*,QList<User*>&)),
64             this, SLOT(userDataChanged(User*,QList<User*>&)));
65     connect(this, SIGNAL(userLocationReady(User*)),
66             m_ui, SIGNAL(userLocationReady(User*)));
67     connect(this, SIGNAL(friendsLocationsReady(QList<User*>&)),
68             m_ui, SIGNAL(friendsLocationsReady(QList<User*>&)));
69     connect(m_situareService, SIGNAL(error(QString)),
70             this, SLOT(error(QString)));
71     connect(m_situareService, SIGNAL(updateWasSuccessful()),
72             this, SLOT(updateWasSuccessful()));
73
74     connect(m_ui, SIGNAL(refreshUserData()),
75             this, SLOT(refreshUserData()));
76
77     connect(m_gps, SIGNAL(timeout()),
78             m_ui, SLOT(gpsTimeout()));
79     connect(m_gps, SIGNAL(error(QString)),
80             m_ui, SLOT(gpsError(QString)));
81     connect(m_ui, SIGNAL(enableGPS(bool)),
82             this, SLOT(enableGPS(bool)));
83     connect(m_gps, SIGNAL(position(QPointF)),
84             m_ui, SIGNAL(positionReceived(QPointF)));
85
86      m_facebookAuthenticator->start();
87 }
88
89 SituareEngine::~SituareEngine()
90 {
91     qDebug() << __PRETTY_FUNCTION__;
92     delete m_ui;
93 }
94
95 void SituareEngine::quitApplication()
96 {
97     qDebug() << __PRETTY_FUNCTION__;
98
99     m_facebookAuthenticator->setAttribute(Qt::WA_DeleteOnClose);
100     m_facebookAuthenticator->close();
101 }
102
103 void SituareEngine::error(const QString &error)
104 {
105     qDebug() << __PRETTY_FUNCTION__;
106     qDebug() << error;
107     // ToDo: signal UI?
108 }
109
110 void SituareEngine::loginOk()
111 {
112     qDebug() << __PRETTY_FUNCTION__;
113
114     m_facebookAuthenticator->setAttribute(Qt::WA_DeleteOnClose);
115     m_facebookAuthenticator->close();
116     m_ui->show();
117     m_situareService->fetchLocations(); // request user locations
118
119     //Debug, use settings instead
120     enableGPS(true);
121     m_ui->autoCenteringToggled(true);
122 }
123
124 void SituareEngine::requestAddress()
125 {
126     qDebug() << __PRETTY_FUNCTION__;
127
128     QPointF coordinates(65.0109, 25.5092); // this will be get from somewhere, map etc...
129     m_situareService->reverseGeo(coordinates);
130 }
131
132 void SituareEngine::requestUpdateLocation(const QString &status, bool publish)
133 {
134     qDebug() << __PRETTY_FUNCTION__;
135
136     m_ui->toggleProgressIndicator(true);
137
138     QPointF coordinates(65.0109, 25.5092); // this will be get from somewhere, map etc...
139     m_situareService->updateLocation(coordinates, status, publish);
140 }
141
142 void SituareEngine::updateWasSuccessful()
143 {
144     qDebug() << __PRETTY_FUNCTION__;
145
146     m_situareService->fetchLocations();
147 }
148
149 void SituareEngine::refreshUserData()
150 {
151     qDebug() << __PRETTY_FUNCTION__;
152
153     m_ui->toggleProgressIndicator(true);
154
155     m_situareService->fetchLocations();
156 }
157
158 void SituareEngine::userDataChanged(User *user, QList<User *> &friendsList)
159 {
160     qDebug() << __PRETTY_FUNCTION__;
161
162     m_ui->toggleProgressIndicator(false);
163
164     emit userLocationReady(user);
165     emit friendsLocationsReady(friendsList);
166 }
167
168 void SituareEngine::enableGPS(bool enabled)
169 {
170     qDebug() << __PRETTY_FUNCTION__;
171
172     if (enabled)
173         m_gps->start();
174     else
175         m_gps->stop();
176 }