diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-20 16:35:12 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-24 10:22:39 -0800 |
commit | ac28896a5d448a918843b4dc34afdf3e1e35e245 (patch) | |
tree | 1f2aa2082763761adeef2f502473d341deee0068 | |
parent | 4b713ece96a435f92589afcf89e3d93c37dfcbd8 (diff) | |
download | subsurface-ac28896a5d448a918843b4dc34afdf3e1e35e245.tar.gz |
mobile UI/login: replace use of cloudUserName
Replace prefs.cloudUserName with PrefCloudStorage.cloud_storage_email in QML
Replace QMLPrefs.....cloudUserName with PrefCloudStorage::cloud_storage_email in C++
Signed-off-by: Jan Iversen <jani@apache.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 4 | ||||
-rw-r--r-- | mobile-widgets/qml/StartPage.qml | 2 | ||||
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 | ||||
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 21 |
4 files changed, 12 insertions, 17 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 50db7c952..502d15af2 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -58,7 +58,7 @@ Item { Controls.TextField { id: login - text: prefs.cloudUserName + text: PrefCloudStorage.cloud_storage_email visible: !prefs.showPin Layout.fillWidth: true inputMethodHints: Qt.ImhEmailCharactersOnly | @@ -101,7 +101,7 @@ Item { visible: prefs.showPin SsrfButton { id: registerpin - text: qsTr("Register") + text: qsTr("Register") onClicked: { saveCredentials() } diff --git a/mobile-widgets/qml/StartPage.qml b/mobile-widgets/qml/StartPage.qml index 9c5e1a22c..5b6a82bb0 100644 --- a/mobile-widgets/qml/StartPage.qml +++ b/mobile-widgets/qml/StartPage.qml @@ -50,7 +50,7 @@ Kirigami.ScrollablePage { "If you do not receive an email from us within 15 minutes, please check " + "the correct spelling of your email address and your spam box first.<br/><br/>" + "In case of any problems regarding cloud account setup, please contact us " + - "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(prefs.cloudUserName) + "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(PrefCloudStorage.cloud_storage_email) wrapMode: Text.WordWrap } Item { width: Kirigami.Units.gridUnit; height: 3 * Kirigami.Units.gridUnit} diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 3737f3357..728a06d08 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -225,7 +225,7 @@ Kirigami.ApplicationWindow { visible: text.length > 0 level: 3 color: "white" - text: prefs.cloudUserName + text: PrefCloudStorage.cloud_storage_email wrapMode: Text.NoWrap elide: Text.ElideRight font.weight: Font.Normal diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 3a362f0f7..e2a02ed44 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -442,13 +442,12 @@ QString QMLManager::getCombinedLogs() void QMLManager::finishSetup() { // Initialize cloud credentials. - QMLPrefs::instance()->setCloudUserName(qPrefCloudStorage::cloud_storage_email()); QMLPrefs::instance()->setCloudPassword(qPrefCloudStorage::cloud_storage_password()); git_local_only = !prefs.cloud_auto_sync; QMLPrefs::instance()->setCredentialStatus((qPrefCloudStorage::cloud_status) prefs.cloud_verification_status); // if the cloud credentials are valid, we should get the GPS Webservice ID as well QString url; - if (!QMLPrefs::instance()->cloudUserName().isEmpty() && + if (!qPrefCloudStorage::cloud_storage_email().isEmpty() && !QMLPrefs::instance()->cloudPassword().isEmpty() && getCloudURL(url) == 0) { // we know that we are the first ones to access git storage, so we don't need to test, @@ -499,7 +498,6 @@ void QMLManager::saveCloudCredentials(const QString &newEmail, const QString &ne bool cloudCredentialsChanged = false; bool noCloud = QMLPrefs::instance()->credentialStatus() == qPrefCloudStorage::CS_NOCLOUD; - QMLPrefs::instance()->setCloudUserName(newEmail); QMLPrefs::instance()->setCloudPassword(newPassword); // make sure we only have letters, numbers, and +-_. in password and email address @@ -508,21 +506,18 @@ void QMLManager::saveCloudCredentials(const QString &newEmail, const QString &ne // in case of NO_CLOUD, the email address + passwd do not care, so do not check it. if (QMLPrefs::instance()->cloudPassword().isEmpty() || !regExp.match(QMLPrefs::instance()->cloudPassword()).hasMatch() || - !regExp.match(QMLPrefs::instance()->cloudUserName()).hasMatch()) { + !regExp.match(newEmail).hasMatch()) { setStartPageText(RED_FONT + tr("Cloud storage email and password can only consist of letters, numbers, and '.', '-', '_', and '+'.") + END_FONT); return; } // use the same simplistic regex as the backend to check email addresses regExp = QRegularExpression("^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.+_-]+\\.[a-zA-Z0-9]+"); - if (!regExp.match(QMLPrefs::instance()->cloudUserName()).hasMatch()) { + if (!regExp.match(newEmail).hasMatch()) { setStartPageText(RED_FONT + tr("Invalid format for email address") + END_FONT); return; } } - if (!same_string(prefs.cloud_storage_email, - qPrintable(QMLPrefs::instance()->cloudUserName()))) { - free((void *)prefs.cloud_storage_email); - prefs.cloud_storage_email = copy_qstring(QMLPrefs::instance()->cloudUserName()); + if (!same_string(prefs.cloud_storage_email, qPrintable(newEmail))) { cloudCredentialsChanged = true; } @@ -536,10 +531,10 @@ void QMLManager::saveCloudCredentials(const QString &newEmail, const QString &ne } if (!noCloud && - !verifyCredentials(QMLPrefs::instance()->cloudUserName(), QMLPrefs::instance()->cloudPassword(), QMLPrefs::instance()->cloudPin())) + !verifyCredentials(newEmail, QMLPrefs::instance()->cloudPassword(), QMLPrefs::instance()->cloudPin())) return; - qPrefCloudStorage::set_cloud_storage_email(QMLPrefs::instance()->cloudUserName()); + qPrefCloudStorage::set_cloud_storage_email(newEmail); qPrefCloudStorage::set_cloud_storage_password(QMLPrefs::instance()->cloudPassword()); qPrefCloudStorage::set_cloud_verification_status(QMLPrefs::instance()->credentialStatus()); @@ -554,7 +549,7 @@ void QMLManager::saveCloudCredentials(const QString &newEmail, const QString &ne noCloudToCloud = true; appendTextToLog("transitioning from no-cloud to cloud and have dives"); } - if (QMLPrefs::instance()->cloudUserName().isEmpty() || + if (qPrefCloudStorage::cloud_storage_email().isEmpty() || QMLPrefs::instance()->cloudPassword().isEmpty()) { setStartPageText(RED_FONT + tr("Please enter valid cloud credentials.") + END_FONT); } else if (cloudCredentialsChanged) { @@ -832,7 +827,7 @@ void QMLManager::revertToNoCloudIfNeeded() prefs.cloud_storage_email = NULL; free((void *)prefs.cloud_storage_password); prefs.cloud_storage_password = NULL; - QMLPrefs::instance()->setCloudUserName(""); + qPrefCloudStorage::set_cloud_storage_email(""); QMLPrefs::instance()->setCloudPassword(""); QMLPrefs::instance()->setCredentialStatus(qPrefCloudStorage::CS_NOCLOUD); set_filename(NOCLOUD_LOCALSTORAGE); |