2015-11-17 03:13:42 +01:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-11-17 03:13:42 +01: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-04-25 23:00:50 +02:00
|
|
|
import q from 'q';
|
|
|
|
import MatrixClientPeg from './MatrixClientPeg';
|
|
|
|
import Notifier from './Notifier';
|
2015-11-17 03:13:42 +01:00
|
|
|
|
2015-12-24 11:50:47 +01:00
|
|
|
/*
|
|
|
|
* TODO: Make things use this. This is all WIP - see UserSettings.js for usage.
|
|
|
|
*/
|
|
|
|
|
2017-05-23 16:16:31 +02:00
|
|
|
/*
|
|
|
|
* TODO: Find a way to translate the names of LABS_FEATURES. In other words, guarantee that languages were already loaded before building this array.
|
|
|
|
*/
|
|
|
|
|
2017-05-26 12:58:45 +02:00
|
|
|
export default {
|
2016-09-17 01:54:56 +02:00
|
|
|
LABS_FEATURES: [
|
|
|
|
{
|
2017-05-23 16:16:31 +02:00
|
|
|
name: "New Composer & Autocomplete",
|
2016-09-17 01:54:56 +02:00
|
|
|
id: 'rich_text_editor',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
],
|
2015-11-17 03:13:42 +01:00
|
|
|
|
|
|
|
loadProfileInfo: function() {
|
2017-04-25 23:00:50 +02:00
|
|
|
const cli = MatrixClientPeg.get();
|
2015-11-17 03:13:42 +01:00
|
|
|
return cli.getProfileInfo(cli.credentials.userId);
|
|
|
|
},
|
|
|
|
|
|
|
|
saveDisplayName: function(newDisplayname) {
|
|
|
|
return MatrixClientPeg.get().setDisplayName(newDisplayname);
|
|
|
|
},
|
|
|
|
|
|
|
|
loadThreePids: function() {
|
2016-01-05 18:34:25 +01:00
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
return q({
|
2017-04-25 23:00:50 +02:00
|
|
|
threepids: [],
|
2016-01-05 18:34:25 +01:00
|
|
|
}); // guests can't poke 3pid endpoint
|
|
|
|
}
|
2015-11-17 03:13:42 +01:00
|
|
|
return MatrixClientPeg.get().getThreePids();
|
|
|
|
},
|
|
|
|
|
|
|
|
saveThreePids: function(threePids) {
|
2015-12-24 11:50:47 +01:00
|
|
|
// TODO
|
2015-11-17 03:13:42 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
getEnableNotifications: function() {
|
|
|
|
return Notifier.isEnabled();
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnableNotifications: function(enable) {
|
|
|
|
if (!Notifier.supportsDesktopNotifications()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Notifier.setEnabled(enable);
|
|
|
|
},
|
|
|
|
|
2016-03-10 11:59:40 +01:00
|
|
|
getEnableAudioNotifications: function() {
|
|
|
|
return Notifier.isAudioEnabled();
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnableAudioNotifications: function(enable) {
|
|
|
|
Notifier.setAudioEnabled(enable);
|
|
|
|
},
|
|
|
|
|
2017-04-25 23:00:50 +02:00
|
|
|
changePassword: function(oldPassword, newPassword) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
2015-11-17 03:13:42 +01:00
|
|
|
|
2017-04-25 23:00:50 +02:00
|
|
|
const authDict = {
|
2015-11-17 03:13:42 +01:00
|
|
|
type: 'm.login.password',
|
|
|
|
user: cli.credentials.userId,
|
2017-04-25 23:00:50 +02:00
|
|
|
password: oldPassword,
|
2015-11-17 03:13:42 +01:00
|
|
|
};
|
|
|
|
|
2017-04-25 23:00:50 +02:00
|
|
|
return cli.setPassword(authDict, newPassword);
|
2015-11-17 03:13:42 +01:00
|
|
|
},
|
2016-04-12 17:17:04 +02:00
|
|
|
|
2017-04-25 23:00:50 +02:00
|
|
|
/*
|
2016-05-04 10:41:36 +02: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 17:17:04 +02:00
|
|
|
getEmailPusher: function(pushers, address) {
|
|
|
|
if (pushers === undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2017-04-25 23:00:50 +02:00
|
|
|
for (let i = 0; i < pushers.length; ++i) {
|
|
|
|
if (pushers[i].kind === 'email' && pushers[i].pushkey === address) {
|
2016-04-12 17:17:04 +02:00
|
|
|
return pushers[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
},
|
|
|
|
|
|
|
|
hasEmailPusher: function(pushers, address) {
|
|
|
|
return this.getEmailPusher(pushers, address) !== undefined;
|
|
|
|
},
|
|
|
|
|
2016-06-02 14:14:52 +02:00
|
|
|
addEmailPusher: function(address, data) {
|
2016-04-12 17:17:04 +02:00
|
|
|
return MatrixClientPeg.get().setPusher({
|
|
|
|
kind: 'email',
|
2017-04-25 23:00:50 +02:00
|
|
|
app_id: 'm.email',
|
2016-04-12 17:17:04 +02:00
|
|
|
pushkey: address,
|
|
|
|
app_display_name: 'Email Notifications',
|
|
|
|
device_display_name: address,
|
|
|
|
lang: navigator.language,
|
2016-06-02 14:14:52 +02:00
|
|
|
data: data,
|
2016-05-03 12:21:05 +02: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 17:17:04 +02:00
|
|
|
});
|
|
|
|
},
|
2016-06-13 18:34:12 +02:00
|
|
|
|
2016-07-18 02:35:42 +02:00
|
|
|
getUrlPreviewsDisabled: function() {
|
2017-04-25 23:00:50 +02:00
|
|
|
const event = MatrixClientPeg.get().getAccountData('org.matrix.preview_urls');
|
2016-07-20 13:03:13 +02:00
|
|
|
return (event && event.getContent().disable);
|
2016-07-18 02:35:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setUrlPreviewsDisabled: function(disabled) {
|
|
|
|
// FIXME: handle errors
|
2017-04-25 23:00:50 +02:00
|
|
|
return MatrixClientPeg.get().setAccountData('org.matrix.preview_urls', {
|
|
|
|
disable: disabled,
|
2016-07-18 02:35:42 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
getSyncedSettings: function() {
|
2017-04-25 23:00:50 +02:00
|
|
|
const event = MatrixClientPeg.get().getAccountData('im.vector.web.settings');
|
2016-07-20 13:03:13 +02:00
|
|
|
return event ? event.getContent() : {};
|
2016-07-18 02:35:42 +02:00
|
|
|
},
|
|
|
|
|
2016-09-07 19:22:14 +02:00
|
|
|
getSyncedSetting: function(type, defaultValue = null) {
|
2017-04-25 23:00:50 +02:00
|
|
|
const settings = this.getSyncedSettings();
|
2017-04-25 23:01:35 +02:00
|
|
|
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
|
2016-07-18 02:35:42 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setSyncedSetting: function(type, value) {
|
2017-04-25 23:00:50 +02:00
|
|
|
const settings = this.getSyncedSettings();
|
2016-07-18 02:35:42 +02:00
|
|
|
settings[type] = value;
|
|
|
|
// FIXME: handle errors
|
2017-04-25 23:00:50 +02:00
|
|
|
return MatrixClientPeg.get().setAccountData('im.vector.web.settings', settings);
|
2016-07-18 02:35:42 +02:00
|
|
|
},
|
|
|
|
|
2017-01-21 18:39:31 +01:00
|
|
|
getLocalSettings: function() {
|
2017-04-25 23:00:50 +02:00
|
|
|
const localSettingsString = localStorage.getItem('mx_local_settings') || '{}';
|
2017-01-21 22:27:55 +01:00
|
|
|
return JSON.parse(localSettingsString);
|
2017-01-21 18:39:31 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
getLocalSetting: function(type, defaultValue = null) {
|
2017-04-25 23:00:50 +02:00
|
|
|
const settings = this.getLocalSettings();
|
2017-04-25 23:01:35 +02:00
|
|
|
return settings.hasOwnProperty(type) ? settings[type] : defaultValue;
|
2017-01-21 18:39:31 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
setLocalSetting: function(type, value) {
|
2017-04-25 23:00:50 +02:00
|
|
|
const settings = this.getLocalSettings();
|
2017-01-21 18:39:31 +01:00
|
|
|
settings[type] = value;
|
|
|
|
// FIXME: handle errors
|
2017-01-21 22:27:55 +01:00
|
|
|
localStorage.setItem('mx_local_settings', JSON.stringify(settings));
|
2017-01-21 18:39:31 +01:00
|
|
|
},
|
|
|
|
|
2016-09-17 01:54:56 +02:00
|
|
|
isFeatureEnabled: function(feature: string): boolean {
|
2016-09-17 15:29:40 +02:00
|
|
|
// Disable labs for guests.
|
|
|
|
if (MatrixClientPeg.get().isGuest()) return false;
|
|
|
|
|
2016-09-16 19:36:03 +02:00
|
|
|
if (localStorage.getItem(`mx_labs_feature_${feature}`) === null) {
|
2017-04-25 23:00:50 +02:00
|
|
|
for (let i = 0; i < this.LABS_FEATURES.length; i++) {
|
|
|
|
const f = this.LABS_FEATURES[i];
|
2016-09-17 01:54:56 +02:00
|
|
|
if (f.id === feature) {
|
|
|
|
return f.default;
|
|
|
|
}
|
|
|
|
}
|
2016-09-16 19:36:03 +02:00
|
|
|
}
|
2016-06-13 18:34:12 +02:00
|
|
|
return localStorage.getItem(`mx_labs_feature_${feature}`) === 'true';
|
|
|
|
},
|
|
|
|
|
|
|
|
setFeatureEnabled: function(feature: string, enabled: boolean) {
|
|
|
|
localStorage.setItem(`mx_labs_feature_${feature}`, enabled);
|
2017-04-25 23:00:50 +02:00
|
|
|
},
|
2015-12-23 12:47:56 +01:00
|
|
|
};
|