Cleaned debug prints
[situare] / src / ui / mainwindow.cpp
index 34819c0..8c93369 100644 (file)
    USA.
 */
 
+#include <QtAlgorithms>
+#include <QtWebKit>
+
 #include <QAction>
 #include <QApplication>
 #include <QMenuBar>
 #include <QMessageBox>
-#include <QtAlgorithms>
-#include <QtWebKit>
 
-///< @todo sort
-#include "facebookservice/facebookauthentication.h"
-#include "map/mapcommon.h"
-#include "map/mapview.h"
 #include "common.h"
+#include "engine/updatelocation.h"
 #include "error.h"
 #include "friendlistpanel.h"
 #include "fullscreenbutton.h"
 #include "indicatorbuttonpanel.h"
 #include "locationsearchpanel.h"
-#include "logindialog.h"
+#include "map/mapcommon.h"
+#include "map/mapview.h"
 #include "mapscale.h"
 #include "panelcommon.h"
 #include "routingpanel.h"
-#include "tabbedpanel.h"
 #include "searchdialog.h"
 #include "settingsdialog.h"
+#include "situareservice/situarecommon.h"
+#include "tabbedpanel.h"
+#include "updatelocation/updatelocationdialog.h"
 #include "userinfopanel.h"
 #include "zoombuttonpanel.h"
 
 #include <X11/Xlib.h>
 #endif // Q_WS_MAEMO_5
 
+#if defined(Q_WS_MAEMO_5) & defined(ARMEL)
+#include "ossoabookdialog.h"
+#endif
+
 MainWindow::MainWindow(QWidget *parent)
     : QMainWindow(parent),
       m_errorShown(false),
@@ -68,14 +73,12 @@ MainWindow::MainWindow(QWidget *parent)
       m_refresh(false),
       m_mapCenterHorizontalShifting(0),
       m_progressIndicatorCount(0),
+      m_loginDialog(0),
       m_crosshair(0),
-      m_email(), ///< @todo WTF?!?!?!?
-      m_password(),
-      m_webView(0),
       m_fullScreenButton(0),
       m_indicatorButtonPanel(0),
       m_mapScale(0),
-      m_cookieJar(0)
+      m_updateLocationController(0)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
@@ -119,9 +122,6 @@ MainWindow::~MainWindow()
 
     grabZoomKeys(false);
 
-    if(m_webView)
-        delete m_webView;
-
     qDeleteAll(m_queue.begin(), m_queue.end());
     m_queue.clear();
 
@@ -136,7 +136,7 @@ void MainWindow::automaticUpdateDialogFinished(int result)
     if (result == QMessageBox::Yes) {
         readAutomaticLocationUpdateSettings();
     } else {
-        QSettings settings(DIRECTORY_NAME, FILE_NAME);
+        QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
         settings.setValue(SETTINGS_AUTOMATIC_UPDATE_ENABLED, false);
         readAutomaticLocationUpdateSettings();
     }
@@ -182,6 +182,9 @@ void MainWindow::buildFriendListPanel()
 
     connect(m_friendsListPanel, SIGNAL(routeToFriend(const GeoCoordinate&)),
             this, SIGNAL(routeTo(const GeoCoordinate&)));
+
+    connect(m_friendsListPanel, SIGNAL(requestContactDialog(const QString &)),
+            this, SIGNAL(requestContactDialog(const QString &)));
 }
 
 void MainWindow::buildFullScreenButton()
@@ -269,6 +272,31 @@ void MainWindow::buildLocationSearchPanel()
 
     connect(m_locationSearchPanel, SIGNAL(requestSearchLocation()),
             this, SLOT(startLocationSearch()));
+
+    connect(this, SIGNAL(searchForLocation(QString)),
+            m_locationSearchPanel, SLOT(prependSearchHistory(QString)));
+
+    connect(m_locationSearchPanel, SIGNAL(searchHistoryItemClicked(QString)),
+            this, SIGNAL(searchHistoryItemClicked(QString)));
+}
+
+void MainWindow::buildLoginDialog(QWebView *browser)
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (!m_loginDialog) {
+        m_loginDialog = new QDialog(this);
+        if (m_loginDialog) {
+            m_loginDialog->setWindowTitle(tr("Login"));
+            m_loginDialog->setLayout(new QVBoxLayout());
+            m_loginDialog->layout()->addWidget(browser);
+            m_loginDialog->layout()->setContentsMargins(QMargins()); // zero margins
+            connect(m_loginDialog, SIGNAL(rejected()), this, SLOT(destroyLoginDialog()));
+        }
+    }
+
+    if (m_loginDialog)
+        m_loginDialog->show();
 }
 
 void MainWindow::buildMap()
@@ -345,9 +373,14 @@ void MainWindow::buildPanels()
     buildRoutingPanel();
 
     m_tabbedPanel = new TabbedPanel(this);
-    m_tabbedPanel->addTab(m_userInfoPanel, QIcon(":/res/images/user_info.png"));
-    m_tabbedPanel->addTab(m_friendsListPanel, QIcon(":/res/images/friend_list.png"));
-    m_tabbedPanel->addTab(m_locationSearchPanel, QIcon(":/res/images/search.png"));
+
+    //Save Situare related tab indexes so tabs can be enabled/disabled when logged in/out
+    m_situareTabsIndexes.append(
+            m_tabbedPanel->addTab(m_userInfoPanel, QIcon(":/res/images/user_info.png")));
+    m_situareTabsIndexes.append(
+            m_tabbedPanel->addTab(m_friendsListPanel, QIcon(":/res/images/friend_list.png")));
+
+    m_tabbedPanel->addTab(m_locationSearchPanel, QIcon(":/res/images/location_search.png"));
     m_tabbedPanel->addTab(m_routingPanel, QIcon(":/res/images/routing.png"));
 
     connect(m_mapView, SIGNAL(viewResized(QSize)),
@@ -379,6 +412,16 @@ void MainWindow::buildPanels()
 
     connect(m_tabbedPanel, SIGNAL(currentChanged(int)),
             m_userInfoPanel, SIGNAL(collapse()));
+
+    // signals for showing and hiding list item context buttons
+    connect(m_friendsListPanel, SIGNAL(listItemSelectionChanged(bool)),
+            m_tabbedPanel, SIGNAL(listItemSelectionChanged(bool)));
+
+    connect(m_locationSearchPanel, SIGNAL(listItemSelectionChanged(bool)),
+            m_tabbedPanel, SIGNAL(listItemSelectionChanged(bool)));
+
+    connect(m_routingPanel, SIGNAL(listItemSelectionChanged(bool)),
+            m_tabbedPanel, SIGNAL(listItemSelectionChanged(bool)));
 }
 
 void MainWindow::buildRoutingPanel()
@@ -387,14 +430,8 @@ void MainWindow::buildRoutingPanel()
 
     m_routingPanel = new RoutingPanel(this);
 
-    connect(this, SIGNAL(locationDataParsed(const QList<Location>&)),
-            m_routingPanel, SLOT(populateLocationListView(const QList<Location>&)));
-
-    connect(m_routingPanel, SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)),
-            this, SIGNAL(locationItemClicked(const GeoCoordinate&, const GeoCoordinate&)));
-
-    connect(m_routingPanel, SIGNAL(routeToLocation(const GeoCoordinate&)),
-            this, SIGNAL(routeTo(const GeoCoordinate&)));
+    connect(m_routingPanel, SIGNAL(routeToCursor()),
+            this, SIGNAL(routeToCursor()));
 
     connect(this, SIGNAL(routeParsed(Route&)),
             m_routingPanel, SLOT(setRoute(Route&)));
@@ -402,9 +439,6 @@ void MainWindow::buildRoutingPanel()
     connect(m_routingPanel, SIGNAL(routeWaypointItemClicked(GeoCoordinate)),
             this, SIGNAL(centerToCoordinates(GeoCoordinate)));
 
-    connect(m_routingPanel, SIGNAL(requestSearchLocation()),
-            this, SLOT(startLocationSearch()));
-
     connect(m_routingPanel, SIGNAL(clearRoute()),
             this, SIGNAL(clearRoute()));
 }
@@ -418,49 +452,14 @@ void MainWindow::buildUserInfoPanel()
     connect(this, SIGNAL(userLocationReady(User*)),
             m_userInfoPanel, SLOT(userDataReceived(User*)));
 
-    connect(this, SIGNAL(reverseGeoReady(QString)),
-            m_userInfoPanel, SIGNAL(reverseGeoReady(QString)));
-
-    connect(this, SIGNAL(clearUpdateLocationDialogData()),
-            m_userInfoPanel, SIGNAL(clearUpdateLocationDialogData()));
-
     connect(m_userInfoPanel, SIGNAL(findUser(GeoCoordinate)),
             this, SIGNAL(centerToCoordinates(GeoCoordinate)));
 
-    connect(m_userInfoPanel, SIGNAL(requestReverseGeo()),
-            this, SIGNAL(requestReverseGeo()));
-
-    connect(m_userInfoPanel, SIGNAL(statusUpdate(QString,bool)),
-            this, SIGNAL(statusUpdate(QString,bool)));
-
     connect(m_userInfoPanel, SIGNAL(refreshUserData()),
             this, SIGNAL(refreshUserData()));
 
-    connect(m_userInfoPanel, SIGNAL(notificateUpdateFailing(QString, bool)),
-            this, SLOT(buildInformationBox(QString, bool)));
-}
-
-void MainWindow::buildWebView()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    if(!m_webView) {
-        m_webView = new QWebView;
-
-        if(!m_cookieJar)
-            m_cookieJar = new NetworkCookieJar(new QNetworkCookieJar(this));
-
-        m_webView->page()->networkAccessManager()->setCookieJar(m_cookieJar);
-
-        connect(m_webView->page()->networkAccessManager(), SIGNAL(finished(QNetworkReply*)),
-                this, SLOT(webViewRequestFinished(QNetworkReply*)));
-        connect(m_webView, SIGNAL(urlChanged(const QUrl &)),
-                this, SIGNAL(updateCredentials(QUrl)));
-        connect(m_webView, SIGNAL(loadFinished(bool)),
-                this, SLOT(loadDone(bool)));
-
-        m_webView->hide();
-    }
+    connect(m_userInfoPanel, SIGNAL(updateLocationMessageButtonClicked()),
+            this, SLOT(showUpdateLocationDialog()));
 }
 
 void MainWindow::buildZoomButtonPanel()
@@ -491,24 +490,6 @@ void MainWindow::buildZoomButtonPanel()
             this, SIGNAL(draggingModeTriggered()));
 }
 
-void MainWindow::clearCookieJar()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    buildWebView();
-
-    m_webView->stop();
-
-    if(!m_cookieJar) {
-        m_cookieJar = new NetworkCookieJar(new QNetworkCookieJar(this));
-    }
-    QList<QNetworkCookie> emptyList;
-    emptyList.clear();
-
-    m_cookieJar->setAllCookies(emptyList);
-    m_webView->page()->networkAccessManager()->setCookieJar(m_cookieJar);
-}
-
 void MainWindow::createMenus()
 {
     qDebug() << __PRETTY_FUNCTION__;
@@ -538,39 +519,25 @@ void MainWindow::createMenus()
     m_viewMenu->setObjectName(tr("Menu"));
 }
 
+void MainWindow::destroyLoginDialog()
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (m_loginDialog) {
+        m_loginDialog->hide();
+        m_loginDialog->deleteLater();
+        m_loginDialog = 0;
+    }
+}
+
 void MainWindow::dialogFinished(int status)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
     QDialog *dialog = m_queue.takeFirst();
-    LoginDialog *loginDialog = qobject_cast<LoginDialog *>(dialog);
     SearchDialog *searchDialog = qobject_cast<SearchDialog *>(dialog);
-    if(loginDialog) {
-        if(status != 0) {
-            buildWebView();
-            loginDialog->userInput(m_email, m_password);
-
-            QStringList urlParts;
-            urlParts.append(FACEBOOK_LOGINBASE);
-            urlParts.append(SITUARE_PUBLIC_FACEBOOKAPI_KEY);
-            urlParts.append(INTERVAL1);
-            urlParts.append(SITUARE_LOGIN_SUCCESS);
-            urlParts.append(INTERVAL2);
-            urlParts.append(SITUARE_LOGIN_FAILURE);
-            urlParts.append(FACEBOOK_LOGIN_ENDING);
-
-            emit saveUsername(m_email);
-            m_refresh = true;
-            m_webView->load(QUrl(urlParts.join(EMPTY)));
-            toggleProgressIndicator(true);
-        } else {
-            emit cancelLoginProcess();
-        }
-    } else if(searchDialog) {
-        if(status != 0) {
-            emit searchForLocation(searchDialog->input());
-        }
-    }
+    if ((searchDialog) && (status != 0))
+        emit searchForLocation(searchDialog->input());
 
     dialog->deleteLater();
 
@@ -681,72 +648,6 @@ void MainWindow::keyPressEvent(QKeyEvent* event)
     QWidget::keyPressEvent(event);
 }
 
-void MainWindow::loadCookies()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    QSettings settings(DIRECTORY_NAME, FILE_NAME);
-
-    QStringList list = settings.value(COOKIES, EMPTY).toStringList();
-
-    if(!list.isEmpty()) {
-        QList<QNetworkCookie> cookieList;
-        for(int i=0;i<list.count();i++) {
-            cookieList.append(QNetworkCookie::parseCookies(list.at(i).toAscii()));
-        }
-
-        if(!m_cookieJar)
-               m_cookieJar = new NetworkCookieJar(new QNetworkCookieJar(this));
-
-        m_cookieJar->setAllCookies(cookieList);
-        m_webView->page()->networkAccessManager()->setCookieJar(m_cookieJar);
-    }
-}
-
-void MainWindow::loadDone(bool done)
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    // for the first time the login page is opened, we need to refresh it to get cookies working
-    if(m_refresh) {
-        m_webView->reload();
-        m_refresh = false;
-    }
-
-    if (done)
-    {
-        QWebFrame* frame = m_webView->page()->currentFrame();
-        if (frame!=NULL)
-        {
-            // set email box
-            QWebElementCollection emailCollection = frame->findAllElements("input[name=email]");
-
-            foreach (QWebElement element, emailCollection) {
-                element.setAttribute("value", m_email.toAscii());
-            }
-            // set password box
-            QWebElementCollection passwordCollection = frame->findAllElements("input[name=pass]");
-            foreach (QWebElement element, passwordCollection) {
-                element.setAttribute("value", m_password.toAscii());
-            }
-            // find connect button
-            QWebElementCollection buttonCollection = frame->findAllElements("input[name=login]");
-            foreach (QWebElement element, buttonCollection)
-            {
-                QPoint pos(element.geometry().center());
-
-                // send a mouse click event to the web page
-                QMouseEvent event0(QEvent::MouseButtonPress, pos, Qt::LeftButton, Qt::LeftButton,
-                                   Qt::NoModifier);
-                QApplication::sendEvent(m_webView->page(), &event0);
-                QMouseEvent event1(QEvent::MouseButtonRelease, pos, Qt::LeftButton, Qt::LeftButton,
-                                   Qt::NoModifier);
-                QApplication::sendEvent(m_webView->page(), &event1);
-            }
-        }
-    }
-}
-
 void MainWindow::loggedIn(bool logged)
 {
     qDebug() << __PRETTY_FUNCTION__;
@@ -756,50 +657,11 @@ void MainWindow::loggedIn(bool logged)
     if(logged) {
         m_loginAct->setText(tr("Logout"));
     } else {
-        clearCookieJar();
-        m_email.clear();
-        m_password.clear();
-
         m_loginAct->setText(tr("Login"));
+        m_userInfoPanel->showUserInfo(false);
+        m_updateLocationController->clear();
     }
-    updateItemVisibility();
-}
-
-void MainWindow::loginFailed()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    clearCookieJar();
-    startLoginProcess();
-}
-
-bool MainWindow::loginState()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    return m_loggedIn;
-}
-
-void MainWindow::loginUsingCookies()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    toggleProgressIndicator(true);
-
-    buildWebView();
-    loadCookies();
-
-    QStringList urlParts;
-    urlParts.append(FACEBOOK_LOGINBASE);
-    urlParts.append(SITUARE_PUBLIC_FACEBOOKAPI_KEY);
-    urlParts.append(INTERVAL1);
-    urlParts.append(SITUARE_LOGIN_SUCCESS);
-    urlParts.append(INTERVAL2);
-    urlParts.append(SITUARE_LOGIN_FAILURE);
-    urlParts.append(FACEBOOK_LOGIN_ENDING);
-
-    m_webView->load(QUrl(urlParts.join(EMPTY)));
-
+    updateItemVisibility(logged);
 }
 
 void MainWindow::mapCenterHorizontalShiftingChanged(int shifting)
@@ -854,7 +716,7 @@ void MainWindow::readAutomaticLocationUpdateSettings()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    QSettings settings(DIRECTORY_NAME, FILE_NAME);
+    QSettings settings(SETTINGS_ORGANIZATION_NAME, SETTINGS_APPLICATION_NAME);
     bool automaticUpdateEnabled = settings.value(SETTINGS_AUTOMATIC_UPDATE_ENABLED, false).toBool();
     QTime automaticUpdateInterval = settings.value(SETTINGS_AUTOMATIC_UPDATE_INTERVAL, QTime())
                                       .toTime();
@@ -867,27 +729,6 @@ void MainWindow::readAutomaticLocationUpdateSettings()
     }
 }
 
-void MainWindow::saveCookies()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    if(!m_cookieJar)
-        m_cookieJar = new NetworkCookieJar(new QNetworkCookieJar(this));
-
-    QList<QNetworkCookie> cookieList = m_cookieJar->allCookies();
-    QStringList list;
-
-    for(int i=0;i<cookieList.count();i++) {
-        QNetworkCookie cookie = cookieList.at(i);
-        QByteArray byteArray = cookie.toRawForm(QNetworkCookie::Full);
-        list.append(QString(byteArray));
-    }
-    list.removeDuplicates();
-
-    QSettings settings(DIRECTORY_NAME, FILE_NAME);
-    settings.setValue(COOKIES, list);
-}
-
 void MainWindow::setCrosshairVisibility(bool visibility)
 {
     qDebug() << __PRETTY_FUNCTION__;
@@ -928,11 +769,16 @@ void MainWindow::settingsDialogAccepted()
     readAutomaticLocationUpdateSettings();
 }
 
-void MainWindow::setUsername(const QString &username)
+void MainWindow::showContactDialog(const QString &guid)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_email = username;
+#if defined(Q_WS_MAEMO_5) & defined(ARMEL)
+    OssoABookDialog::showContactDialog(guid);
+#else
+    Q_UNUSED(guid);
+    buildInformationBox(tr("Contact dialog works only on phone!"), true);
+#endif
 }
 
 void MainWindow::showEnableAutomaticUpdateLocationDialog(const QString &text)
@@ -974,47 +820,45 @@ void MainWindow::showInformationBox()
     }
 }
 
-void MainWindow::showPanels()
+void MainWindow::showUpdateLocationDialog()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-///< @todo check how this is called and can this method be removed
+    if (!m_updateLocationController) {
+        m_updateLocationController = new UpdateLocation(this);
+        if (!m_updateLocationController)
+            return;
+        else
+            connect(this, SIGNAL(updateWasSuccessful()), m_updateLocationController, SLOT(clear()));
+            connect(m_updateLocationController, SIGNAL(locationUpdate(QString,bool)),
+                    this, SIGNAL(locationUpdate(QString,bool)));
+    }
+
+    UpdateLocationDialog *updateLocationDialog
+            = new UpdateLocationDialog(m_updateLocationController, this);
 
-//    if(m_loggedIn) {
-//        if(!m_friendsListPanel->isVisible()) {
-//            m_friendsListPanel->show();
-//            m_friendsListPanelSidebar->show();
-//        }
+    connect(this, SIGNAL(reverseGeoReady(QString)),
+            updateLocationDialog, SLOT(setAddress(QString)));
 
-//        if(!m_userPanel->isVisible()) {
-//            m_userPanel->show();
-//            m_userPanelSidebar->show();
-//        }
-//    }
+    updateLocationDialog->show();
+
+    emit requestReverseGeo();
 }
 
-void MainWindow::startLocationSearch()
+void MainWindow::sslErrors(QNetworkReply *reply, const QList<QSslError> &errors)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    SearchDialog *searchDialog = new SearchDialog();
-    queueDialog(searchDialog);
+    Q_UNUSED(errors)
+    reply->ignoreSslErrors();
 }
 
-void MainWindow::startLoginProcess()
+void MainWindow::startLocationSearch()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    LoginDialog *loginDialog = new LoginDialog();
-
-    emit fetchUsernameFromSettings();
-
-    loginDialog->clearTextFields();
-
-    if(!m_email.isEmpty())
-        loginDialog->setEmailField(m_email);
-
-    queueDialog(loginDialog);
+    SearchDialog *searchDialog = new SearchDialog();
+    queueDialog(searchDialog);
 }
 
 void MainWindow::toggleFullScreen()
@@ -1047,38 +891,9 @@ void MainWindow::toggleProgressIndicator(bool value)
 #endif // Q_WS_MAEMO_5
 }
 
-void MainWindow::updateItemVisibility()
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-///< @todo can this be removed?
-
-//    if(!m_loggedIn) {
-//        m_friendsListPanel->closePanel();
-//        m_friendsListPanel->hide();
-//        m_friendsListPanelSidebar->hide();
-
-//        m_userPanel->closePanel();
-//        m_userPanel->hide();
-//        m_userPanelSidebar->hide();
-//    }
-}
-
-const QString MainWindow::username()
+void MainWindow::updateItemVisibility(bool loggedIn)
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    return m_email;
-}
-
-void MainWindow::webViewRequestFinished(QNetworkReply *reply)
-{
-    qDebug() << __PRETTY_FUNCTION__;
-
-    // omit QNetworkReply::OperationCanceledError due to it's nature to be called when ever
-    // qwebview starts to load a new page while the current page loading is not finished
-    if(reply->error() != QNetworkReply::OperationCanceledError &&
-       reply->error() != QNetworkReply::NoError) {
-        emit error(ErrorContext::NETWORK, reply->error());
-    }
+    m_tabbedPanel->setTabsEnabled(m_situareTabsIndexes, loggedIn);
 }