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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
2016-01-05 18:34:25 +01:00
|
|
|
var q = require("q");
|
2015-11-17 03:13:42 +01:00
|
|
|
var MatrixClientPeg = require("./MatrixClientPeg");
|
2015-12-23 12:47:56 +01:00
|
|
|
var Notifier = require("./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.
|
|
|
|
*/
|
|
|
|
|
2015-11-17 03:13:42 +01:00
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
loadProfileInfo: function() {
|
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
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({
|
|
|
|
threepids: []
|
|
|
|
}); // 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);
|
|
|
|
},
|
|
|
|
|
2015-11-17 03:13:42 +01:00
|
|
|
changePassword: function(old_password, new_password) {
|
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
var authDict = {
|
|
|
|
type: 'm.login.password',
|
|
|
|
user: cli.credentials.userId,
|
|
|
|
password: old_password
|
|
|
|
};
|
|
|
|
|
|
|
|
return cli.setPassword(authDict, new_password);
|
|
|
|
},
|
2015-12-23 12:47:56 +01:00
|
|
|
};
|