2017-10-29 04:13:06 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017 Travis Ralston
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Promise from 'bluebird';
|
|
|
|
import SettingsHandler from "./SettingsHandler";
|
2017-11-05 07:47:18 +03:00
|
|
|
import MatrixClientPeg from "../../MatrixClientPeg";
|
2017-10-29 04:13:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets and sets settings at the "device" level for the current device.
|
|
|
|
* This handler does not make use of the roomId parameter. This handler
|
|
|
|
* will special-case features to support legacy settings.
|
|
|
|
*/
|
|
|
|
export default class DeviceSettingsHandler extends SettingsHandler {
|
|
|
|
/**
|
|
|
|
* Creates a new device settings handler
|
|
|
|
* @param {string[]} featureNames The names of known features.
|
|
|
|
*/
|
|
|
|
constructor(featureNames) {
|
|
|
|
super();
|
|
|
|
this._featureNames = featureNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
getValue(settingName, roomId) {
|
|
|
|
if (this._featureNames.includes(settingName)) {
|
2017-10-29 04:45:48 +03:00
|
|
|
return this._readFeature(settingName);
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
2017-11-05 07:47:18 +03:00
|
|
|
// Special case notifications
|
|
|
|
if (settingName === "notificationsEnabled") {
|
2017-11-16 08:08:13 +03:00
|
|
|
const value = localStorage.getItem("notifications_enabled");
|
|
|
|
if (typeof(value) === "string") return value === "true";
|
|
|
|
return null; // wrong type or otherwise not set
|
2017-11-05 07:47:18 +03:00
|
|
|
} else if (settingName === "notificationBodyEnabled") {
|
2017-11-16 08:08:13 +03:00
|
|
|
const value = localStorage.getItem("notifications_body_enabled");
|
|
|
|
if (typeof(value) === "string") return value === "true";
|
|
|
|
return null; // wrong type or otherwise not set
|
2017-11-05 07:47:18 +03:00
|
|
|
} else if (settingName === "audioNotificationsEnabled") {
|
2017-11-16 08:08:13 +03:00
|
|
|
const value = localStorage.getItem("audio_notifications_enabled");
|
|
|
|
if (typeof(value) === "string") return value === "true";
|
|
|
|
return null; // wrong type or otherwise not set
|
2017-11-05 07:47:18 +03:00
|
|
|
}
|
|
|
|
|
2018-01-17 21:17:26 +03:00
|
|
|
const settings = this._getSettings() || {};
|
|
|
|
return settings[settingName];
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
setValue(settingName, roomId, newValue) {
|
|
|
|
if (this._featureNames.includes(settingName)) {
|
2017-10-29 05:21:34 +03:00
|
|
|
this._writeFeature(settingName, newValue);
|
|
|
|
return Promise.resolve();
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
2017-11-05 07:47:18 +03:00
|
|
|
// Special case notifications
|
|
|
|
if (settingName === "notificationsEnabled") {
|
|
|
|
localStorage.setItem("notifications_enabled", newValue);
|
|
|
|
return Promise.resolve();
|
|
|
|
} else if (settingName === "notificationBodyEnabled") {
|
|
|
|
localStorage.setItem("notifications_body_enabled", newValue);
|
|
|
|
return Promise.resolve();
|
|
|
|
} else if (settingName === "audioNotificationsEnabled") {
|
|
|
|
localStorage.setItem("audio_notifications_enabled", newValue);
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2018-01-17 21:17:26 +03:00
|
|
|
const settings = this._getSettings() || {};
|
2017-10-30 01:08:45 +03:00
|
|
|
settings[settingName] = newValue;
|
|
|
|
localStorage.setItem("mx_local_settings", JSON.stringify(settings));
|
2017-10-29 04:13:06 +03:00
|
|
|
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
canSetValue(settingName, roomId) {
|
|
|
|
return true; // It's their device, so they should be able to
|
|
|
|
}
|
|
|
|
|
|
|
|
isSupported() {
|
2017-11-04 08:19:45 +03:00
|
|
|
return localStorage !== undefined && localStorage !== null;
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 01:08:45 +03:00
|
|
|
_getSettings() {
|
|
|
|
const value = localStorage.getItem("mx_local_settings");
|
2018-01-17 21:17:26 +03:00
|
|
|
if (!value) return null;
|
2017-10-30 01:08:45 +03:00
|
|
|
return JSON.parse(value);
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Note: features intentionally don't use the same key as settings to avoid conflicts
|
|
|
|
// and to be backwards compatible.
|
|
|
|
|
|
|
|
_readFeature(featureName) {
|
|
|
|
if (MatrixClientPeg.get() && MatrixClientPeg.get().isGuest()) {
|
|
|
|
// Guests should not have any labs features enabled.
|
2018-04-06 13:03:17 +03:00
|
|
|
return false;
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const value = localStorage.getItem("mx_labs_feature_" + featureName);
|
2017-10-29 04:45:48 +03:00
|
|
|
return value === "true";
|
2017-10-29 04:13:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_writeFeature(featureName, enabled) {
|
|
|
|
localStorage.setItem("mx_labs_feature_" + featureName, enabled);
|
|
|
|
}
|
2017-10-29 04:53:12 +03:00
|
|
|
}
|