2018-07-12 19:01:31 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2018-08-14 10:25:15 +00:00
|
|
|
#include "qPrefCloudStorage.h"
|
2018-07-12 19:01:31 +00:00
|
|
|
#include "qPrefPrivate.h"
|
|
|
|
|
|
|
|
static const QString group = QStringLiteral("CloudStorage");
|
|
|
|
|
2018-07-25 17:49:48 +00:00
|
|
|
qPrefCloudStorage *qPrefCloudStorage::instance()
|
2018-07-12 19:01:31 +00:00
|
|
|
{
|
|
|
|
static qPrefCloudStorage *self = new qPrefCloudStorage;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
void qPrefCloudStorage::loadSync(bool doSync)
|
|
|
|
{
|
2018-10-08 14:15:53 +00:00
|
|
|
disk_cloud_auto_sync(doSync);
|
2018-07-12 19:01:31 +00:00
|
|
|
disk_cloud_base_url(doSync);
|
|
|
|
disk_cloud_storage_email(doSync);
|
|
|
|
disk_cloud_storage_email_encoded(doSync);
|
|
|
|
disk_cloud_storage_password(doSync);
|
|
|
|
disk_cloud_storage_pin(doSync);
|
|
|
|
disk_cloud_timeout(doSync);
|
|
|
|
disk_cloud_verification_status(doSync);
|
|
|
|
disk_save_password_local(doSync);
|
|
|
|
}
|
|
|
|
|
2018-10-08 14:15:53 +00:00
|
|
|
HANDLE_PREFERENCE_BOOL(CloudStorage, "cloud_auto_sync", cloud_auto_sync);
|
|
|
|
|
2018-07-25 17:49:48 +00:00
|
|
|
void qPrefCloudStorage::set_cloud_base_url(const QString &value)
|
2018-07-12 19:01:31 +00:00
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
if (value.toStdString() != prefs.cloud_base_url) {
|
2018-07-12 19:01:31 +00:00
|
|
|
// only free and set if not default
|
2024-06-13 20:59:32 +00:00
|
|
|
if (prefs.cloud_base_url != default_prefs.cloud_base_url)
|
|
|
|
prefs.cloud_base_url = value.toStdString();
|
2018-07-12 19:01:31 +00:00
|
|
|
|
|
|
|
disk_cloud_base_url(true);
|
2018-09-02 11:58:04 +00:00
|
|
|
emit instance()->cloud_base_urlChanged(value);
|
2018-07-12 19:01:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-11 20:53:39 +00:00
|
|
|
|
|
|
|
void qPrefCloudStorage::store_cloud_base_url(const QString &value)
|
|
|
|
{
|
|
|
|
// this is used if we want to update the on-disk settings without changing
|
|
|
|
// the runtime preference
|
2024-06-13 20:59:32 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "cloud_base_url"), value, QString::fromStdString(default_prefs.cloud_base_url));
|
2021-04-11 20:53:39 +00:00
|
|
|
}
|
2018-07-26 16:26:17 +00:00
|
|
|
void qPrefCloudStorage::disk_cloud_base_url(bool doSync)
|
2018-07-12 19:01:31 +00:00
|
|
|
{
|
cloudstorage: try to pick between multiple cloud servers
The backend infrastructure will soon be able to support more than one
cloud server which automagically stay in sync with each other.
One critical requirement for that to work is that once a session was
started with one of the servers, the complete session happens with that
server - we must not switch from server to server while doing a git
transaction. To make sure that's the case, we aren't trying to use DNS
tricks to make this load balancing scheme work, but instead try to
determine at program start which server is the best one to use.
Right now this is super simplistic. Two servers, one in the US, one in
Europe. By default we use the European server (most of our users appear
to be in Europe), but if we can figure out that the client is actually
in the Americas, use the US server. We might improve that heuristic over
time, but as a first attempt it seems not entirely bogus.
The way this is implemented is a simple combination of two free
webservices that together appear to give us a very reliable estimate
which continent the user is located on.
api.ipify.org gives us our external IP address
ip-api.com gives us the continent that IP address is on
If any of this fails or takes too long to respond, we simply ignore it
since either server will work. One oddity is that if we decide to change
servers we only change the settings that are stored on disk, not the
runtime preferences. This goes back to the comment above that we have to
avoid changing servers in mid sync.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2021-04-11 01:03:08 +00:00
|
|
|
// we don't allow to automatically write back the prefs value for the cloud_base_url.
|
|
|
|
// in order to do that you need to use the explicit function above store_cloud_base_url()
|
|
|
|
if (!doSync)
|
2024-06-13 20:59:32 +00:00
|
|
|
prefs.cloud_base_url = qPrefPrivate::propValue(keyFromGroupAndName(group, "cloud_base_url"),
|
|
|
|
QString::fromStdString(default_prefs.cloud_base_url)).toString().toStdString();
|
2018-07-12 19:01:31 +00:00
|
|
|
}
|
2018-07-25 17:49:48 +00:00
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_TXT(CloudStorage, "email", cloud_storage_email);
|
2018-07-12 19:01:31 +00:00
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_TXT(CloudStorage, "email_encoded", cloud_storage_email_encoded);
|
2018-07-12 19:01:31 +00:00
|
|
|
|
2018-07-25 17:49:48 +00:00
|
|
|
void qPrefCloudStorage::set_cloud_storage_password(const QString &value)
|
2018-07-12 19:01:31 +00:00
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
if (value.toStdString() != prefs.cloud_storage_password) {
|
|
|
|
prefs.cloud_storage_password = value.toStdString();
|
2018-07-12 19:01:31 +00:00
|
|
|
disk_cloud_storage_password(true);
|
2018-09-02 11:58:04 +00:00
|
|
|
emit instance()->cloud_storage_passwordChanged(value);
|
2018-07-12 19:01:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void qPrefCloudStorage::disk_cloud_storage_password(bool doSync)
|
|
|
|
{
|
2018-07-18 20:52:13 +00:00
|
|
|
if (doSync) {
|
2018-07-25 17:49:48 +00:00
|
|
|
if (prefs.save_password_local)
|
2024-06-13 20:59:32 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "password"), prefs.cloud_storage_password,
|
|
|
|
default_prefs.cloud_storage_password);
|
2018-07-18 20:52:13 +00:00
|
|
|
} else {
|
2024-06-13 20:59:32 +00:00
|
|
|
prefs.cloud_storage_password = qPrefPrivate::propValue(keyFromGroupAndName(group, "password"),
|
|
|
|
default_prefs.cloud_storage_password).toString().toStdString();
|
2018-07-18 20:52:13 +00:00
|
|
|
}
|
2018-07-12 19:01:31 +00:00
|
|
|
}
|
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_TXT(CloudStorage, "pin", cloud_storage_pin);
|
2018-07-12 19:01:31 +00:00
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_INT(CloudStorage, "timeout", cloud_timeout);
|
2018-07-12 19:01:31 +00:00
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_INT(CloudStorage, "cloud_verification_status", cloud_verification_status);
|
2018-07-12 19:01:31 +00:00
|
|
|
|
2018-09-07 16:06:00 +00:00
|
|
|
HANDLE_PREFERENCE_BOOL(CloudStorage, "save_password_local", save_password_local);
|
2019-12-08 12:27:03 +00:00
|
|
|
|
|
|
|
QString qPrefCloudStorage::diveshare_uid()
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
return qPrefPrivate::propValue(keyFromGroupAndName("", "diveshareExport/uid"), QString()).toString();
|
2019-12-08 12:27:03 +00:00
|
|
|
}
|
|
|
|
void qPrefCloudStorage::set_diveshare_uid(const QString &value)
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName("", "diveshareExport/uid"), value, QString());
|
2019-12-08 12:27:03 +00:00
|
|
|
emit instance()->diveshare_uidChanged(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool qPrefCloudStorage::diveshare_private()
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
return qPrefPrivate::propValue(keyFromGroupAndName("", "diveshareExport/private"), QString()).toBool();
|
2019-12-08 12:27:03 +00:00
|
|
|
}
|
|
|
|
void qPrefCloudStorage::set_diveshare_private(bool value)
|
|
|
|
{
|
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName("", "diveshareExport/private"), value, false);
|
|
|
|
emit instance()->diveshare_privateChanged(value);
|
|
|
|
}
|
2019-11-27 17:32:57 +00:00
|
|
|
|
|
|
|
QString qPrefCloudStorage::divelogde_user()
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
return qPrefPrivate::propValue(keyFromGroupAndName("", "divelogde_user"), QString()).toString();
|
2019-11-27 17:32:57 +00:00
|
|
|
}
|
|
|
|
void qPrefCloudStorage::set_divelogde_user(const QString &value)
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName("", "divelogde_user"), value, QString());
|
2019-11-27 17:32:57 +00:00
|
|
|
emit instance()->divelogde_userChanged(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString qPrefCloudStorage::divelogde_pass()
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
return qPrefPrivate::propValue(keyFromGroupAndName("", "divelogde_pass"), QString()).toString();
|
2019-11-27 17:32:57 +00:00
|
|
|
}
|
|
|
|
void qPrefCloudStorage::set_divelogde_pass(const QString &value)
|
|
|
|
{
|
2024-06-13 20:59:32 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName("", "divelogde_pass"), value, QString());
|
2019-11-27 17:32:57 +00:00
|
|
|
emit instance()->divelogde_passChanged(value);
|
|
|
|
}
|