Registration is functional
[speedfreak] / Client / carmainwindow.cpp
index d340d19..167bf33 100644 (file)
@@ -1,3 +1,14 @@
+/**
+  * CarMainWindow main class
+  *
+  * @author     Toni Jussila <toni.jussila@fudeco.com>
+  * @author     Janne Änäkkälä <janne.anakkala@fudeco.com>
+  * @author     Tiina Kivilinna-Korhola <tiina.kivilinna-korhola@fudeco.com>
+  * @author     Olavi Pulkkinen <olavi.pulkkinen@fudeco.com>
+  * @copyright  (c) 2010 Speed Freak team
+  * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+  */
+
 #include "carmainwindow.h"
 
 /**
@@ -11,18 +22,17 @@ CarMainWindow::CarMainWindow(QWidget *parent):QMainWindow(parent), ui(new Ui::Ca
     measure = new MeasureDialog();
     xmlreader = new XmlReader();
 
-    initUnitCompoBox();
-    initSpeedListView();
-<<<<<<< HEAD:Client/carmainwindow.cpp
-    initCategoryCompoBox();
+    initComboBoxStartTabUnits();
+    initListViewStartTabAccelerationCategories();
 
     myLogin = new LoginWindow(this);
     myRegistration = new Registration(this);
+    xmlwriter = new XmlWriter();
     manager = new QNetworkAccessManager(this);
     connect(manager,SIGNAL(finished(QNetworkReply*)),this,SLOT(networkResponse(QNetworkReply*)));
+    connect(myRegistration,SIGNAL(sendregistration()),this,SLOT(registrate()));
+    connect(result,SIGNAL(sendresult()),this,SLOT(sendXml()));
 
-=======
->>>>>>> feature/XMLreader:Client/carmainwindow.cpp
 }
 
 /**
@@ -34,6 +44,8 @@ CarMainWindow::~CarMainWindow()
     delete result;
     delete measure;
     delete xmlreader;
+    delete xmlwriter;
+    delete manager;
 }
 
 /**
@@ -55,15 +67,15 @@ void CarMainWindow::changeEvent(QEvent *e)
 /**
   *This slot function is called when ever list view is update. Start-tab view.
   */
-void CarMainWindow::on_listView_clicked(QModelIndex index)
+void CarMainWindow::on_listViewStartTabAccelerationCategories_clicked(QModelIndex index)
 {
     QString str = index.data().toString();
     QStringList list = str.split("-");
     QStringList list2 = list[1].split(" ");
 
-    ui->minLineEdit->setText(list[0]);
-    ui->maxLineEdit->setText(list2[0]);
-    updateUnitCompoBox(list2[1]);
+    ui->lineEditStartTabMin->setText(list[0]);
+    ui->lineEditStartTabMax->setText(list2[0]);
+    updateComboBoxStartTabUnits(list2[1]);
 }
 
 /**
@@ -85,51 +97,47 @@ void CarMainWindow::on_autoStartButton_clicked()
   *This slot function is called when ever list view is update. Start-tab view.
   *@param QString unit.
   */
-void CarMainWindow::updateUnitCompoBox(QString unit)
+void CarMainWindow::updateComboBoxStartTabUnits(QString unit)
 {
-    ui->unitComboBox->setCurrentIndex(ui->unitComboBox->findText(unit, Qt::MatchExactly));
+    ui->comboBoxStartTabUnits->setCurrentIndex(ui->comboBoxStartTabUnits->findText(unit, Qt::MatchExactly));
 }
 
 /**
   *This function is used to init unit combobox. Start-tab view.
   */
-void CarMainWindow::initUnitCompoBox()
+void CarMainWindow::initComboBoxStartTabUnits()
 {
     units << "km/h" << "km" << "h" << "m" << "min" << "Mile" << "Mph" << "in" << "ft" << "yrd";
-    ui->unitComboBox->addItems(units);
+    ui->comboBoxStartTabUnits->addItems(units);
 }
 
 /**
   *This function is used to set items to unit combobox. Start-tab view.
-  *@param QStringlist numbers
+  *@param QStringlist units
   */
-void CarMainWindow::setUnitCompoBox(QStringList units)
+void CarMainWindow::setComboBoxStartTabUnits(QStringList units)
 {
-    ui->unitComboBox->addItems(units);
+    ui->comboBoxStartTabUnits->addItems(units);
 }
 
 /**
-  *This function is used to init speed listview. Start-tab view.
+  *This function is used to init listViewStartTabAccelerationCategories. Start-tab view.
   */
-void CarMainWindow::initSpeedListView()
+void CarMainWindow::initListViewStartTabAccelerationCategories()
 {
-<<<<<<< HEAD:Client/carmainwindow.cpp
-    numbers << "0-40 km/h" << "0-1/4 mil" << "0-50 km" << "50-100 mil" << "0-100 m" << "0-50 ft" << "0-50 yrd" << "0-500 in";
-=======
-    numbers << "0-40 km/h" << "0-1/4 Mile" << "0-1/8 Mile" << "0-50 km" << "50-100 Mile" << "0-60 Mph" << "0-100 m" << "0-50 ft" << "0-50 yrd" << "0-500 in";
->>>>>>> feature/XMLreader:Client/carmainwindow.cpp
-    QAbstractItemModel *model = new StringListModel(numbers);
-    ui->listView->setModel(model);
+    accelerationCategoriesStartTab << "0-40 km/h" << "0-100 km/h"; //<< "0-1/4 Mile" << "0-1/8 Mile" << "0-50 km" << "50-100 Mile" << "0-60 Mph" << "0-100 m" << "0-50 ft" << "0-50 yrd" << "0-500 in";
+    QAbstractItemModel *model = new StringListModel(accelerationCategoriesStartTab);
+    ui->listViewStartTabAccelerationCategories->setModel(model);
 }
 
 /**
-  *This function is used to set items to speed listview. Start-tab view.
-  *@param QStringlist numbers
+  *This function is used to set items to listViewStartTabAccelerationCategories. Start-tab view.
+  *@param QStringlist accelerationCategoriesStartTab
   */
-void CarMainWindow::setSpeedListView(QStringList numbers)
+void CarMainWindow::setListViewStartTabAccelerationCategories(QStringList accelerationCategoriesStartTab)
 {
-    QAbstractItemModel *model = new StringListModel(numbers);
-    ui->listView->setModel(model);
+    QAbstractItemModel *model = new StringListModel(accelerationCategoriesStartTab);
+    ui->listViewStartTabAccelerationCategories->setModel(model);
 }
 
 /**
@@ -177,22 +185,20 @@ void CarMainWindow::openResultView()
 }
 
 /**
-<<<<<<< HEAD:Client/carmainwindow.cpp
   *This slot function is called when the server has finished guery.
   */
 void CarMainWindow::networkResponse(QNetworkReply *reply)
 {
+
 }
 
 /**
   *This slot function is called when the user will to send data to server.
+  *@todo Where is this callback connected?
   */
 void CarMainWindow::on_pushButton_clicked()
 {
-     QNetworkRequest postData;
-     postData.setUrl(QString("http://weather.yahooapis.com/forecastrss?p=FIXX0013&u=c"));
-     manager->get(postData);
-
+     sendXml();
 }
 
 /**
@@ -212,7 +218,9 @@ void CarMainWindow::on_loginLogoutButton_clicked()
 void CarMainWindow::on_registratePushButton_clicked()
 {
     myRegistration->show();
-=======
+}
+
+/**
   *This slot function is called when ever refresh button clicked. Top-tab view.
   */
 void CarMainWindow::on_buttonTopRefresh_clicked()
@@ -227,5 +235,121 @@ void CarMainWindow::on_buttonTopRefresh_clicked()
 void CarMainWindow::on_comboBoxTopCategory_currentIndexChanged(QString category)
 {
     setListViewTopList(category);
->>>>>>> feature/XMLreader:Client/carmainwindow.cpp
+}
+
+/**
+  *This slot function is called when ever category combobox activated. Top-tab view.
+  *@param QString category
+  */
+void CarMainWindow::on_comboBoxTopCategory_activated(QString category)
+{
+    setListViewTopList(category);
+}
+
+/**
+  *This slot function is called when set/change user button is clicked.
+  */
+void CarMainWindow::on_setUserPushButton_clicked()
+{
+    myLogin->show();
+
+    ui->userNameLabel->setText( "User: " + myLogin->getUserName());
+    ui->setUserPushButton->setText( "Change User");
+}
+
+/**
+  *@brief Sends registration information to the server in xml format.
+  *Reads user name, password and emaol address from resuldialogs internal variables.
+  *@todo Replace msg box with better reaction to server`s responce.
+  *@todo Write error handling.
+  */
+void CarMainWindow::registrate()
+{
+    qDebug() << "_registrate" ;
+    qDebug() << this->myRegistration->getUserName() << "+" << this->myRegistration->getPassword() << "+" << this->myRegistration->getEmail();
+
+    QBuffer *regbuffer = new QBuffer();
+
+    QNetworkReply *currentDownload;
+
+    QUrl qurl("http//:api.speedfreak-app.com/register");
+    QNetworkRequest request(qurl);
+
+    //write also to a file during development, :
+    xmlwriter->writeXml(this->myRegistration->getUserName(),
+                      this->myRegistration->getPassword(),
+                      this->myRegistration->getEmail());
+    xmlwriter->writeRegistering(regbuffer,
+                      this->myRegistration->getUserName(),
+                      this->myRegistration->getPassword(),
+                      this->myRegistration->getEmail());
+    //Tmp msgbox - later server responce
+    QMessageBox::about(this,"Registrate",this->myRegistration->getUserName() + this->myRegistration->getPassword() + this->myRegistration->getEmail());
+
+    currentDownload = manager->post(request, ("data=" + regbuffer->data()));
+
+    //ackFromServer function gets called when HTTP request is completed
+    connect(currentDownload, SIGNAL(finished()),SLOT(ackOfRegistration()));
+}
+
+/**
+  *@brief Sends result(s) to the server in xml format with authentication information in the header.
+  *@todo Write error handling.
+  */
+void CarMainWindow::sendXml()
+{
+    qDebug() << "_sendXml";
+
+    QBuffer *xmlbuffer = new QBuffer();
+    QNetworkReply *currentDownload;
+
+    QString credentials = this->myRegistration->getUserName() + ":" + this->myRegistration->getPassword();
+    credentials = "Basic " + credentials.toAscii().toBase64();
+
+    QUrl qurl("http//:api.speedfreak-app.com/update/acceleration-0-40");
+    QNetworkRequest request(qurl);
+
+    request.setRawHeader(QByteArray("Authorization"),credentials.toAscii());
+
+    xmlwriter->writeResult(xmlbuffer);
+
+    currentDownload = manager->post(request, ("data=" + xmlbuffer->data()));
+    //QString data("abcdefg");    //testing
+    //currentDownload = manager->post(request,"data=" + QUrl::toPercentEncoding(data));   //testing
+
+
+    //ackFromServer function gets called when HTTP request is completed
+    connect(currentDownload, SIGNAL(finished()),SLOT(ackOfResult()));
+
+}
+
+/**
+  *@brief React to servers responce after result has been sent.
+  *@todo Implement function and write error handling.
+  */
+void CarMainWindow::ackOfResult()
+{
+    qDebug() << "Server acknowledged posting of result";
+}
+
+/**
+  *@brief React to servers responce after registration has been sent.
+  *@todo Implement function and write error handling.
+  */
+
+void CarMainWindow::ackOfRegistration()
+{
+    qDebug() << "Server acknowledged registration";
+}
+
+
+/**
+  *@brief Just for development, for the real button is not shown until
+  *measurin started and there are results.
+  *@todo Implement with real code and yet leave sendXml in the bottom in use.
+  */
+
+void CarMainWindow::on_manualStartButton_clicked()
+{
+    sendXml();
 }