Version 0.6, daemon, gps, battery saver
[googlelatitude] / src / latitude.cpp
1 #include "latitude.h"
2
3 LatitudeGUI::LatitudeGUI(QMainWindow *parent) : QMainWindow(parent) {
4     setting = new QSettings();
5     gps = new GpsMaemo5(this);
6     glatitude = new GoogleLatitude(this);
7
8     connect(gps, SIGNAL(fix()), this, SLOT(set()));
9     connect(glatitude, SIGNAL(glat_ok()), this, SLOT(latitude_ok()));
10     connect(glatitude, SIGNAL(glat_error()), this, SLOT(latitude_error()));
11
12     set_config();
13     if ( 0 ) gps->config(15, 3, 0);
14
15     gps->refresh();
16
17 #ifdef Q_WS_MAEMO_5
18     setAttribute(Qt::WA_Maemo5AutoOrientation, true);
19 #endif
20     setWindowTitle(tr("Latitude & Buzz"));
21
22     maps = new QWebView();
23     connect(maps, SIGNAL(loadFinished(bool)), this, SLOT(maps_login()));
24
25     maps->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
26     maps->load(QUrl::fromEncoded("https://www.google.com/accounts/ServiceLogin?service=friendview&continue=http://www.google.com/maps/m?mode=latitude"));
27
28     setCentralWidget(maps);
29
30     menuBar()->addAction(tr("&Latitude"), this, SLOT(mode_latitude()));
31     menuBar()->addAction(tr("&Buzz"), this, SLOT(mode_buzz()));
32     menuBar()->addAction(tr("&Config"), this, SLOT(config()));
33
34     demonio = new QAction(this);
35     if ( system("killall -0 GoogleLatitudeDaemon 2> /dev/null" ) ) {
36         demonio->setText(tr("&Start Daemon"));
37     } else {
38         demonio->setText(tr("&Stop Daemon"));
39     }
40     connect(demonio, SIGNAL(triggered()), this, SLOT(mode_demonio()));
41     menuBar()->addAction(demonio);
42 }
43
44 void LatitudeGUI::set() {
45     qDebug() << "LatitudeGUI: set";
46     glatitude->update(gps->get_lat(),
47                       gps->get_lon(),
48                       gps->get_acc());
49 }
50
51 void LatitudeGUI::set_config() {
52     qDebug() << "LatitudeGUI: set_config";
53     glatitude->set_login(setting->value("user","my_username").toString(),
54                          setting->value("pass","my_password").toString());
55
56     gps->config(setting->value("interval",1800).toInt(),
57                 setting->value("wait",30).toInt(),
58                 setting->value("usegps",false).toBool());
59 }
60
61 void LatitudeGUI::latitude_ok() {
62     qDebug() << "LatitudeGUI: ok";
63 }
64
65 void LatitudeGUI::latitude_error() {
66 #ifdef Q_WS_MAEMO_5
67     QString error_message = tr("<b>Error in Authentification!</b><br><br>") +
68                             tr("Plese verify your login details<br>");
69     QMaemo5InformationBox::information(this, error_message,
70                                        QMaemo5InformationBox::NoTimeout);
71 #endif
72     qDebug() << "LatitudeGUI: no auth";
73     config();
74 }
75
76 void LatitudeGUI::maps_login() {
77     if ( maps->url() == QUrl::fromEncoded("https://www.google.com/accounts/ServiceLogin?service=friendview&continue=http://www.google.com/maps/m?mode=latitude") ) {
78         maps->page()->mainFrame()->evaluateJavaScript(
79                 QString("document.getElementById('Email').value = \"%1\";").arg(
80                         setting->value("user").toString()));
81         maps->page()->mainFrame()->evaluateJavaScript(
82                 QString("document.getElementById('Passwd').value = \"%1\";").arg(
83                         setting->value("pass").toString()));
84         maps->page()->mainFrame()->evaluateJavaScript("document.getElementById('gaia_loginform').submit();");
85     }
86     if ( maps->url() == QUrl::fromEncoded("https://www.google.com/accounts/ServiceLoginAuth") ) {
87         latitude_error();
88     }
89 }
90
91 void LatitudeGUI::mode_buzz() {
92     maps->load(QUrl::fromEncoded("http://www.google.com/maps/m?l-view=map&l-lci=m,com.google.latitudepublicupdates&ac=f,s,l"));
93 }
94
95 void LatitudeGUI::mode_latitude() {
96     maps->load(QUrl::fromEncoded("https://www.google.com/accounts/ServiceLogin?service=friendview&continue=http://www.google.com/maps/m?mode=latitude"));
97 }
98
99 void LatitudeGUI::mode_demonio() {
100     if ( ! system("killall -0 GoogleLatitudeDaemon 2> /dev/null" ) ) {
101         system("killall GoogleLatitudeDaemon 2> /dev/null");
102         demonio->setText(tr("&Start Daemon"));
103     } else {
104         QProcess *cli = new QProcess(this);
105         cli->start(QCoreApplication::applicationDirPath()+QDir::separator()+"GoogleLatitudeDaemon");
106         qDebug() << "LatitudeGUI: demonio" << QCoreApplication::applicationDirPath()+"/GoogleLatitudeDaemon";
107         if ( ! system("killall -0 GoogleLatitudeDaemon 2> /dev/null" ) ) {
108             demonio->setText(tr("&Stop Daemon"));
109         }
110     }
111 }
112
113 void LatitudeGUI::config() {
114     gps->forcestop();
115
116     QDialog *dialoglogin = new QDialog(this);
117
118     QLineEdit *login_user = new QLineEdit(setting->value("user","my_username").toString());
119     QLineEdit *login_pass = new QLineEdit(setting->value("pass","my_password").toString());
120     login_pass->setEchoMode(QLineEdit::Password);
121
122     QLineEdit *gps_interval = new QLineEdit(setting->value("interval",1800).toString());
123     QLineEdit *gps_wait = new QLineEdit(setting->value("wait",30).toString());
124     QCheckBox *gps_use = new QCheckBox();
125     if ( setting->value("usegps",false).toBool() ) {
126         gps_use->setCheckState(Qt::Checked);
127     } else {
128         gps_use->setCheckState(Qt::Unchecked);
129     }
130
131     QCheckBox *daemon_use = new QCheckBox();
132     if ( setting->value("daemon",false).toBool() ) {
133         daemon_use->setCheckState(Qt::Checked);
134     } else {
135         daemon_use->setCheckState(Qt::Unchecked);
136     }
137
138     QFormLayout *layout_config = new QFormLayout();
139     layout_config->addRow(tr("&Username"), login_user);
140     layout_config->addRow(tr("&Password"), login_pass);
141     layout_config->addRow(tr("&Interval for Updates"), gps_interval);
142     layout_config->addRow(tr("&Wait for a Fix"), gps_wait);
143     layout_config->addRow(tr("&Use Gps"), gps_use);
144     layout_config->addRow(tr("&Daemon at Boot"), daemon_use);
145
146     connect(login_user, SIGNAL(textEdited(QString)), this, SLOT(save_user(QString)));
147     connect(login_user, SIGNAL(returnPressed()), login_pass, SLOT(setFocus()));
148     connect(login_pass, SIGNAL(textEdited(QString)), this, SLOT(save_pass(QString)));
149     connect(login_pass, SIGNAL(returnPressed()), dialoglogin, SLOT(accept()));
150
151     connect(gps_interval, SIGNAL(textEdited(QString)), this, SLOT(save_interval(QString)));
152     connect(gps_wait, SIGNAL(textEdited(QString)), this, SLOT(save_wait(QString)));
153     connect(gps_use, SIGNAL(stateChanged(int)), this, SLOT(save_gps(int)));
154     connect(daemon_use, SIGNAL(stateChanged(int)), this, SLOT(save_daemon(int)));
155
156     dialoglogin->setLayout(layout_config);
157     dialoglogin->exec();
158
159     if ( setting->value("interval",1800).toInt() < 300 )
160         setting->setValue("interval", 300);
161     if ( setting->value("interval",1800).toInt() > 3600 )
162         setting->setValue("interval", 3600);
163
164     if ( setting->value("usegps",false).toBool() ) {
165         if ( setting->value("wait",30).toInt() < 15 )
166             setting->setValue("wait", 15);
167     } else {
168         if ( setting->value("wait",30).toInt() < 5 )
169             setting->setValue("wait", 5);
170     }
171     if ( setting->value("wait",30).toInt() > 120 )
172         setting->setValue("wait", 120);
173
174     set_config();
175     glatitude->reset();
176     gps->refresh();
177
178     mode_latitude();
179 }
180