summaryrefslogtreecommitdiffstats
path: root/qt-ui/subsurfacewebservices.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-04 17:26:30 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-07 09:54:35 -0700
commit318bf5cccc9a8ac2c8ee18939e3c6c4a4e7a0fb3 (patch)
tree25ee266d20b6e8b85a225d562a5574ae4d4da785 /qt-ui/subsurfacewebservices.cpp
parentd9801b67b4dc7b925b356d2574cafaa03e598a3b (diff)
downloadsubsurface-318bf5cccc9a8ac2c8ee18939e3c6c4a4e7a0fb3.tar.gz
Cloud storage: first stab at creating an account on the backend
This triggers when the email address / password is changed in the preferences. It opens an https connection with the backend server (the URL is hardcoded) which should create an account with these credentials. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/subsurfacewebservices.cpp')
-rw-r--r--qt-ui/subsurfacewebservices.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/qt-ui/subsurfacewebservices.cpp b/qt-ui/subsurfacewebservices.cpp
index 0159977a7..5681974ec 100644
--- a/qt-ui/subsurfacewebservices.cpp
+++ b/qt-ui/subsurfacewebservices.cpp
@@ -928,3 +928,43 @@ QNetworkReply* UserSurveyServices::sendSurvey(QString values)
reply = manager()->get(request);
return reply;
}
+
+CloudStorageAuthenticate::CloudStorageAuthenticate(QObject *parent) : QObject(parent)
+{
+ userAgent = getUserAgent();
+
+}
+
+#define CLOUDBACKEND "https://cloud.subsurface-divelog.org/storage"
+
+QNetworkReply* CloudStorageAuthenticate::authenticate(QString email, QString password)
+{
+ QNetworkRequest *request = new QNetworkRequest(QUrl(CLOUDBACKEND));
+ request->setRawHeader("Accept", "text/xml, text/plain");
+ request->setRawHeader("User-Agent", userAgent.toUtf8());
+ request->setHeader(QNetworkRequest::ContentTypeHeader, "text/plain");
+ reply = WebServices::manager()->post(*request, qPrintable(QString(email + " " + password)));
+ connect(reply, SIGNAL(finished()), this, SLOT(uploadFinished()));
+ connect(reply, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT(sslErrors(QList<QSslError>)));
+ connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this,
+ SLOT(uploadError(QNetworkReply::NetworkError)));
+ return reply;
+}
+
+void CloudStorageAuthenticate::uploadFinished()
+{
+ qDebug() << "Completed connection with cloud storage backend, response" << reply->readAll();
+}
+
+void CloudStorageAuthenticate::uploadError(QNetworkReply::NetworkError error)
+{
+ qDebug() << "Received error response from cloud storage backend:" << reply->errorString();
+}
+
+void CloudStorageAuthenticate::sslErrors(QList<QSslError> errorList)
+{
+ qDebug() << "Received error response trying to set up https connection with cloud storage backend:";
+ Q_FOREACH (QSslError err, errorList) {
+ qDebug() << err.errorString();
+ }
+}