Skip to content
Snippets Groups Projects
Commit 593ecc99 authored by Mathéo Joseph's avatar Mathéo Joseph Committed by Sébastien Blin
Browse files

whitelabeling: add uicustom info in account property

GitLab: #1097

Change-Id: I1f7db2b14c437d033264ff58457d8067e4ff6c05
parent 8fd7c70d
No related branches found
No related tags found
No related merge requests found
daemon @ d191e2e2
Subproject commit 417447a167c52512e8c81250cc08bb5b24c6b667 Subproject commit d191e2e262a26c5c17bc0ea2ecea08fe6f42142c
...@@ -222,6 +222,9 @@ CurrentAccount::updateData() ...@@ -222,6 +222,9 @@ CurrentAccount::updateData()
set_autoTransferSizeThreshold(settingsManager_->getValue(Settings::Key::AcceptTransferBelow) set_autoTransferSizeThreshold(settingsManager_->getValue(Settings::Key::AcceptTransferBelow)
.toInt(), .toInt(),
true); true);
// UI Customization settings
set_uiCustomization(accConfig.uiCustomization, true);
} catch (...) { } catch (...) {
qWarning() << "Can't update current account info data for" << id_; qWarning() << "Can't update current account info data for" << id_;
} }
......
...@@ -191,6 +191,9 @@ class CurrentAccount final : public QObject ...@@ -191,6 +191,9 @@ class CurrentAccount final : public QObject
QML_NEW_ACCOUNT_MODEL_SETTINGS_PROPERTY(bool, autoTransferFromTrusted, AutoAcceptFiles) QML_NEW_ACCOUNT_MODEL_SETTINGS_PROPERTY(bool, autoTransferFromTrusted, AutoAcceptFiles)
QML_NEW_ACCOUNT_MODEL_SETTINGS_PROPERTY(int, autoTransferSizeThreshold, AcceptTransferBelow) QML_NEW_ACCOUNT_MODEL_SETTINGS_PROPERTY(int, autoTransferSizeThreshold, AcceptTransferBelow)
// UI Customization settings
QML_ACCOUNT_CONFIG_SETTINGS_PROPERTY(QJsonObject, uiCustomization)
public: public:
explicit CurrentAccount(LRCInstance* lrcInstance, explicit CurrentAccount(LRCInstance* lrcInstance,
AppSettingsManager* settingsManager, AppSettingsManager* settingsManager,
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
#include <QtGui/QPixmap> #include <QtGui/QPixmap>
#include <QtGui/QImage> #include <QtGui/QImage>
#include <QtCore/QBuffer> #include <QtCore/QBuffer>
#include <QJsonDocument>
#include <atomic> #include <atomic>
...@@ -928,6 +929,11 @@ account::Info::fromDetails(const MapStringString& details) ...@@ -928,6 +929,11 @@ account::Info::fromDetails(const MapStringString& details)
// Jams // Jams
confProperties.managerUri = details[ConfProperties::MANAGER_URI]; confProperties.managerUri = details[ConfProperties::MANAGER_URI];
confProperties.managerUsername = details[ConfProperties::MANAGER_USERNAME]; confProperties.managerUsername = details[ConfProperties::MANAGER_USERNAME];
// uiCustomization
QJsonDocument doc = QJsonDocument::fromJson(details[ConfProperties::UI_CUSTOMIZATION].toUtf8());
if (!doc.isNull() && doc.isObject()) {
confProperties.uiCustomization = doc.object();
}
} }
MapStringString MapStringString
...@@ -1033,6 +1039,9 @@ account::ConfProperties_t::toDetails() const ...@@ -1033,6 +1039,9 @@ account::ConfProperties_t::toDetails() const
// Manager // Manager
details[ConfProperties::MANAGER_URI] = this->managerUri; details[ConfProperties::MANAGER_URI] = this->managerUri;
details[ConfProperties::MANAGER_USERNAME] = this->managerUsername; details[ConfProperties::MANAGER_USERNAME] = this->managerUsername;
// UI Customization
QJsonDocument doc(this->uiCustomization);
details[ConfProperties::UI_CUSTOMIZATION] = doc.toJson(QJsonDocument::Compact);
return details; return details;
} }
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <memory> #include <memory>
#include <QString> #include <QString>
#include <QJsonObject>
namespace lrc { namespace lrc {
...@@ -118,6 +119,7 @@ struct ConfProperties_t ...@@ -118,6 +119,7 @@ struct ConfProperties_t
QString defaultModerators; QString defaultModerators;
bool localModeratorsEnabled; bool localModeratorsEnabled;
VectorMapStringString credentials; VectorMapStringString credentials;
QJsonObject uiCustomization;
struct Audio_t struct Audio_t
{ {
int audioPortMax; int audioPortMax;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment