summaryrefslogtreecommitdiffstats
path: root/qt-ui/preferences.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/preferences.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/preferences.cpp')
-rw-r--r--qt-ui/preferences.cpp17
1 files changed, 15 insertions, 2 deletions
diff --git a/qt-ui/preferences.cpp b/qt-ui/preferences.cpp
index f0f1212a2..8342dff78 100644
--- a/qt-ui/preferences.cpp
+++ b/qt-ui/preferences.cpp
@@ -9,6 +9,8 @@
#include <QNetworkProxy>
#include <QNetworkCookieJar>
+#include "subsurfacewebservices.h"
+
#if defined(FBSUPPORT)
#include "socialnetworks.h"
#endif
@@ -360,10 +362,21 @@ void PreferencesDialog::syncSettings()
s.endGroup();
s.beginGroup("CloudStorage");
- SAVE_OR_REMOVE("email", default_prefs.cloud_storage_email, ui.cloud_storage_email->text());
+ QString email = ui.cloud_storage_email->text();
+ QString password = ui.cloud_storage_password->text();
+ if (email != prefs.cloud_storage_email || password != prefs.cloud_storage_password) {
+ // connect to backend server to check / create credentials
+ QRegularExpression reg("^[a-zA-Z0-9@.+_-]+$");
+ if (!reg.match(email).hasMatch() || !reg.match(password).hasMatch()) {
+ report_error(qPrintable(tr("Cloud storage email and password can only consist of letters, numbers, and '.', '-', '_', and '+'.")));
+ }
+ CloudStorageAuthenticate *cloudAuth = new CloudStorageAuthenticate(this);
+ QNetworkReply *reply = cloudAuth->authenticate(email, password);
+ }
+ SAVE_OR_REMOVE("email", default_prefs.cloud_storage_email, email);
SAVE_OR_REMOVE("save_password_local", default_prefs.save_password_local, ui.save_password_local->isChecked());
if (ui.save_password_local->isChecked())
- SAVE_OR_REMOVE("password", default_prefs.cloud_storage_password, ui.cloud_storage_password->text());
+ SAVE_OR_REMOVE("password", default_prefs.cloud_storage_password, password);
else
s.remove("password");
s.endGroup();