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
|
|
|
{
|
|
|
|
if (value != prefs.cloud_base_url) {
|
|
|
|
// only free and set if not default
|
|
|
|
if (prefs.cloud_base_url != default_prefs.cloud_base_url) {
|
2018-07-18 18:47:59 +00:00
|
|
|
qPrefPrivate::copy_txt(&prefs.cloud_base_url, value);
|
2018-09-09 14:01:58 +00:00
|
|
|
qPrefPrivate::copy_txt(&prefs.cloud_git_url, value + "/git");
|
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
|
|
|
}
|
|
|
|
}
|
2018-07-26 16:26:17 +00:00
|
|
|
void qPrefCloudStorage::disk_cloud_base_url(bool doSync)
|
2018-07-12 19:01:31 +00:00
|
|
|
{
|
2018-07-26 16:26:17 +00:00
|
|
|
if (doSync) {
|
2018-09-07 16:06:00 +00:00
|
|
|
qPrefPrivate::propSetValue(keyFromGroupAndName(group, "cloud_base_url"), prefs.cloud_base_url, default_prefs.cloud_base_url);
|
2018-07-26 16:26:17 +00:00
|
|
|
} else {
|
2018-09-07 16:06:00 +00:00
|
|
|
prefs.cloud_base_url = copy_qstring(qPrefPrivate::propValue(keyFromGroupAndName(group, "cloud_base_url"), default_prefs.cloud_base_url).toString());
|
2018-07-26 16:26:17 +00:00
|
|
|
qPrefPrivate::copy_txt(&prefs.cloud_git_url, QString(prefs.cloud_base_url) + "/git");
|
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
|
|
|
{
|
|
|
|
if (value != prefs.cloud_storage_password) {
|
2018-07-18 18:47:59 +00:00
|
|
|
qPrefPrivate::copy_txt(&prefs.cloud_storage_password, value);
|
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)
|
2018-09-07 16:06:00 +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 {
|
2018-09-07 16:06:00 +00:00
|
|
|
prefs.cloud_storage_password = copy_qstring(qPrefPrivate::propValue(keyFromGroupAndName(group, "password"), default_prefs.cloud_storage_password).toString());
|
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);
|