2015-11-17 10:13:42 +08:00
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2017-10-13 00:03:38 +08:00
|
|
|
Copyright 2017 New Vector Ltd
|
2015-11-17 10:13:42 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-07-12 20:58:14 +08:00
|
|
|
import Promise from 'bluebird';
|
2017-04-26 05:00:50 +08:00
|
|
|
import MatrixClientPeg from './MatrixClientPeg';
|
|
|
|
import Notifier from './Notifier';
|
2017-10-13 00:03:38 +08:00
|
|
|
import { _t, _td } from './languageHandler';
|
|
|
|
import SdkConfig from './SdkConfig';
|
2015-11-17 10:13:42 +08:00
|
|
|
|
2015-12-24 18:50:47 +08:00
|
|
|
/*
|
|
|
|
* TODO: Make things use this. This is all WIP - see UserSettings.js for usage.
|
|
|
|
*/
|
|
|
|
|
2017-10-13 00:03:38 +08:00
|
|
|
const FEATURES = [
|
|
|
|
{
|
|
|
|
id: 'feature_groups',
|
2017-10-16 20:18:39 +08:00
|
|
|
name: _td("Communities"),
|
2017-10-13 00:03:38 +08:00
|
|
|
},
|
2017-10-15 06:40:10 +08:00
|
|
|
{
|
|
|
|
id: 'feature_pinning',
|
|
|
|
name: _td("Message Pinning"),
|
|
|
|
},
|
2017-10-13 00:03:38 +08:00
|
|
|
];
|
|
|
|
|
2017-05-26 18:58:45 +08:00
|
|
|
export default {
|
2017-10-13 00:03:38 +08:00
|
|
|
getLabsFeatures() {
|
|
|
|
const featuresConfig = SdkConfig.get()['features'] || {};
|
|
|
|
|
2017-10-20 20:40:38 +08:00
|
|
|
// The old flag: honoured for backwards compatibility
|
2017-10-13 20:58:24 +08:00
|
|
|
const enableLabs = SdkConfig.get()['enableLabs'];
|
|
|
|
|
2017-10-13 21:11:21 +08:00
|
|
|
let labsFeatures;
|
|
|
|
if (enableLabs) {
|
|
|
|
labsFeatures = FEATURES;
|
|
|
|
} else {
|
2017-10-13 21:43:26 +08:00
|
|
|
labsFeatures = FEATURES.filter((f) => {
|
2017-10-13 21:11:21 +08:00
|
|
|
const sdkConfigValue = featuresConfig[f.id];
|
|
|
|
if (sdkConfigValue === 'labs') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return labsFeatures.map((f) => {
|
2017-10-13 00:03:38 +08:00
|
|
|
return f.id;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
translatedNameForFeature(featureId) {
|
|
|
|
const feature = FEATURES.filter((f) => {
|
|
|
|
return f.id === featureId;
|
|
|
|
})[0];
|
|
|
|
|
|
|
|
if (feature === undefined) return null;
|
|
|
|
|
|
|
|
return _t(feature.name);
|
2017-06-01 22:53:08 +08:00
|
|
|
},
|
|
|
|
|
2015-11-17 10:13:42 +08:00
|
|
|
loadProfileInfo: function() {
|
2017-04-26 05:00:50 +08:00
|
|
|
const cli = MatrixClientPeg.get();
|
2015-11-17 10:13:42 +08:00
|
|
|
return cli.getProfileInfo(cli.credentials.userId);
|
|
|
|
},
|
|
|
|
|
|
|
|
saveDisplayName: function(newDisplayname) {
|
|
|
|
return MatrixClientPeg.get().setDisplayName(newDisplayname);
|
|
|
|
},
|
|
|
|
|
|
|
|
loadThreePids: function() {
|
2016-01-06 01:34:25 +08:00
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
2017-07-12 21:02:00 +08:00
|
|
|
return Promise.resolve({
|
2017-04-26 05:00:50 +08:00
|
|
|
threepids: [],
|
2016-01-06 01:34:25 +08:00
|
|
|
}); // guests can't poke 3pid endpoint
|
|
|
|
}
|
2015-11-17 10:13:42 +08:00
|
|
|
return MatrixClientPeg.get().getThreePids();
|
|
|
|
},
|
|
|
|
|
|
|
|
saveThreePids: function(threePids) {
|
2015-12-24 18:50:47 +08:00
|
|
|
// TODO
|
2015-11-17 10:13:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getEnableNotifications: function() {
|
|
|
|
return Notifier.isEnabled();
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnableNotifications: function(enable) {
|
|
|
|
if (!Notifier.supportsDesktopNotifications()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Notifier.setEnabled(enable);
|
|
|
|
},
|
|
|
|
|
2017-09-06 17:56:08 +08:00
|
|
|
getEnableNotificationBody: function() {
|
|
|
|
return Notifier.isBodyEnabled();
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnableNotificationBody: function(enable) {
|
|
|
|
if (!Notifier.supportsDesktopNotifications()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Notifier.setBodyEnabled(enable);
|
|
|
|
},
|
|
|
|
|
2016-03-10 18:59:40 +08:00
|
|
|
getEnableAudioNotifications: function() {
|
|
|
|
return Notifier.isAudioEnabled();
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnableAudioNotifications: function(enable) {
|
|
|
|
Notifier.setAudioEnabled(enable);
|
|
|
|
},
|
|
|
|
|
2017-04-26 05:00:50 +08:00
|
|
|
changePassword: function(oldPassword, newPassword) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
2015-11-17 10:13:42 +08:00
|
|
|
|
2017-04-26 05:00:50 +08:00
|
|
|
const authDict = {
|
2015-11-17 10:13:42 +08:00
|
|
|
type: 'm.login.password',
|
|
|
|
user: cli.credentials.userId,
|
2017-04-26 05:00:50 +08:00
|
|
|
password: oldPassword,
|
2015-11-17 10:13:42 +08:00
|
|
|
};
|
|
|
|
|
2017-04-26 05:00:50 +08:00
|
|
|
return cli.setPassword(authDict, newPassword);
|
2015-11-17 10:13:42 +08:00
|
|
|
},
|
2016-04-12 23:17:04 +08:00
|
|
|
|
2017-04-26 05:00:50 +08:00
|
|
|
/*
|
2016-05-04 16:41:36 +08:00
|
|
|
* Returns the email pusher (pusher of type 'email') for a given
|
|
|
|
* email address. Email pushers all have the same app ID, so since
|
|
|
|
* pushers are unique over (app ID, pushkey), there will be at most
|
|
|
|
* one such pusher.
|
|
|
|
*/
|
2016-04-12 23:17:04 +08:00
|
|
|
getEmailPusher: function(pushers, address) {
|
|
|
|
if (pushers === undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2017-04-26 05:00:50 +08:00
|
|
|
for (let i = 0; i < pushers.length; ++i) {
|
|
|
|
if (pushers[i].kind === 'email' && pushers[i].pushkey === address) {
|
2016-04-12 23:17:04 +08:00
|
|
|
return pushers[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
|
|
|
|
hasEmailPusher: function(pushers, address) {
|
|
|
|
return this.getEmailPusher(pushers, address) !== undefined;
|
|
|
|
},
|
|
|
|
|
2016-06-02 20:14:52 +08:00
|
|
|
addEmailPusher: function(address, data) {
|
2016-04-12 23:17:04 +08:00
|
|
|
return MatrixClientPeg.get().setPusher({
|
|
|
|
kind: 'email',
|
2017-04-26 05:00:50 +08:00
|
|
|
app_id: 'm.email',
|
2016-04-12 23:17:04 +08:00
|
|
|
pushkey: address,
|
|
|
|
app_display_name: 'Email Notifications',
|
|
|
|
device_display_name: address,
|
|
|
|
lang: navigator.language,
|
2016-06-02 20:14:52 +08:00
|
|
|
data: data,
|
2016-05-03 18:21:05 +08:00
|
|
|
append: true, // We always append for email pushers since we don't want to stop other accounts notifying to the same email address
|
2016-04-12 23:17:04 +08:00
|
|
|
});
|
|
|
|
},
|
2016-06-14 00:34:12 +08:00
|
|
|
|
2016-07-18 08:35:42 +08:00
|
|
|
getUrlPreviewsDisabled: function() {
|
2017-04-26 05:00:50 +08:00
|
|
|
const event = MatrixClientPeg.get().getAccountData('org.matrix.preview_urls');
|
2016-07-20 19:03:13 +08:00
|
|
|
return (event && event.getContent().disable);
|
2016-07-18 08:35:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
setUrlPreviewsDisabled: function(disabled) {
|
|
|
|
// FIXME: handle errors
|
2017-04-26 05:00:50 +08:00
|
|
|
return MatrixClientPeg.get().setAccountData('org.matrix.preview_urls', {
|
|
|
|
disable: disabled,
|
2016-07-18 08:35:42 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getSyncedSettings: function() {
|
2017-04-26 05:00:50 +08:00
|
|
|
const event = MatrixClientPeg.get().getAccountData('im.vector.web.settings');
|
2016-07-20 19:03:13 +08:00
|
|
|
return event ? event.getContent() : {};
|
2016-07-18 08:35:42 +08:00
|
|
|
},
|
|
|
|
|
2016-09-08 01:22:14 +08:00
|
|
|
getSyncedSetting: function(type, defaultValue = null) {
|
2017-04-26 05:00:50 +08:00
|
|
|
const settings = this.getSyncedSettings();
|
2017-04-26 05:01:35 +08:00
|
|
|
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
|
2016-07-18 08:35:42 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
setSyncedSetting: function(type, value) {
|
2017-04-26 05:00:50 +08:00
|
|
|
const settings = this.getSyncedSettings();
|
2016-07-18 08:35:42 +08:00
|
|
|
settings[type] = value;
|
|
|
|
// FIXME: handle errors
|
2017-04-26 05:00:50 +08:00
|
|
|
return MatrixClientPeg.get().setAccountData('im.vector.web.settings', settings);
|
2016-07-18 08:35:42 +08:00
|
|
|
},
|
|
|
|
|
2017-01-22 01:39:31 +08:00
|
|
|
getLocalSettings: function() {
|
2017-04-26 05:00:50 +08:00
|
|
|
const localSettingsString = localStorage.getItem('mx_local_settings') || '{}';
|
2017-01-22 05:27:55 +08:00
|
|
|
return JSON.parse(localSettingsString);
|
2017-01-22 01:39:31 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getLocalSetting: function(type, defaultValue = null) {
|
2017-04-26 05:00:50 +08:00
|
|
|
const settings = this.getLocalSettings();
|
2017-04-26 05:01:35 +08:00
|
|
|
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
|
2017-01-22 01:39:31 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
setLocalSetting: function(type, value) {
|
2017-04-26 05:00:50 +08:00
|
|
|
const settings = this.getLocalSettings();
|
2017-01-22 01:39:31 +08:00
|
|
|
settings[type] = value;
|
|
|
|
// FIXME: handle errors
|
2017-01-22 05:27:55 +08:00
|
|
|
localStorage.setItem('mx_local_settings', JSON.stringify(settings));
|
2017-01-22 01:39:31 +08:00
|
|
|
},
|
|
|
|
|
2017-08-14 19:26:31 +08:00
|
|
|
isFeatureEnabled: function(featureId: string): boolean {
|
2017-10-13 00:03:38 +08:00
|
|
|
const featuresConfig = SdkConfig.get()['features'];
|
2016-09-17 21:29:40 +08:00
|
|
|
|
2017-10-20 20:40:38 +08:00
|
|
|
// The old flag: honoured for backwards compatibility
|
2017-10-13 23:06:17 +08:00
|
|
|
const enableLabs = SdkConfig.get()['enableLabs'];
|
|
|
|
|
|
|
|
let sdkConfigValue = enableLabs ? 'labs' : 'disable';
|
2017-10-13 00:03:38 +08:00
|
|
|
if (featuresConfig && featuresConfig[featureId] !== undefined) {
|
|
|
|
sdkConfigValue = featuresConfig[featureId];
|
2017-08-14 19:26:31 +08:00
|
|
|
}
|
2017-10-13 00:03:38 +08:00
|
|
|
|
|
|
|
if (sdkConfigValue === 'enable') {
|
|
|
|
return true;
|
2017-10-13 00:27:09 +08:00
|
|
|
} else if (sdkConfigValue === 'disable') {
|
2017-10-13 00:03:38 +08:00
|
|
|
return false;
|
|
|
|
} else if (sdkConfigValue === 'labs') {
|
|
|
|
if (!MatrixClientPeg.get().isGuest()) {
|
2017-10-13 00:28:14 +08:00
|
|
|
// Make it explicit that guests get the defaults (although they shouldn't
|
|
|
|
// have been able to ever toggle the flags anyway)
|
2017-10-13 00:03:38 +08:00
|
|
|
const userValue = localStorage.getItem(`mx_labs_feature_${featureId}`);
|
2017-10-13 00:28:53 +08:00
|
|
|
return userValue === 'true';
|
2017-10-13 00:03:38 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
console.warn(`Unknown features config for ${featureId}: ${sdkConfigValue}`);
|
|
|
|
return false;
|
2016-09-17 01:36:03 +08:00
|
|
|
}
|
2016-06-14 00:34:12 +08:00
|
|
|
},
|
|
|
|
|
2017-08-14 19:26:31 +08:00
|
|
|
setFeatureEnabled: function(featureId: string, enabled: boolean) {
|
|
|
|
localStorage.setItem(`mx_labs_feature_${featureId}`, enabled);
|
2017-04-26 05:00:50 +08:00
|
|
|
},
|
2015-12-23 19:47:56 +08:00
|
|
|
};
|