Support multiple email pushers and remove the legacy UserSettingsStore
Fixes https://github.com/vector-im/riot-web/issues/5496 Fixes https://github.com/vector-im/riot-web/issues/8424
This commit is contained in:
parent
8d7837829e
commit
12d939b36f
2 changed files with 36 additions and 65 deletions
|
@ -1,53 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2015, 2016 OpenMarket Ltd
|
|
||||||
Copyright 2017, 2019 New Vector Ltd
|
|
||||||
|
|
||||||
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 MatrixClientPeg from './MatrixClientPeg';
|
|
||||||
|
|
||||||
// TODO: Decommission.
|
|
||||||
// Ref: https://github.com/vector-im/riot-web/issues/8424
|
|
||||||
export default {
|
|
||||||
/*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
getEmailPusher: function(pushers, address) {
|
|
||||||
if (pushers === undefined) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
for (let i = 0; i < pushers.length; ++i) {
|
|
||||||
if (pushers[i].kind === 'email' && pushers[i].pushkey === address) {
|
|
||||||
return pushers[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return undefined;
|
|
||||||
},
|
|
||||||
|
|
||||||
addEmailPusher: function(address, data) {
|
|
||||||
return MatrixClientPeg.get().setPusher({
|
|
||||||
kind: 'email',
|
|
||||||
app_id: 'm.email',
|
|
||||||
pushkey: address,
|
|
||||||
app_display_name: 'Email Notifications',
|
|
||||||
device_display_name: address,
|
|
||||||
lang: navigator.language,
|
|
||||||
data: data,
|
|
||||||
append: true, // We always append for email pushers since we don't want to stop other accounts notifying to the same email address
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -19,7 +19,6 @@ import Promise from 'bluebird';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
import UserSettingsStore from '../../../UserSettingsStore';
|
|
||||||
import SettingsStore, {SettingLevel} from '../../../settings/SettingsStore';
|
import SettingsStore, {SettingLevel} from '../../../settings/SettingsStore';
|
||||||
import Modal from '../../../Modal';
|
import Modal from '../../../Modal';
|
||||||
import {
|
import {
|
||||||
|
@ -132,14 +131,41 @@ module.exports = React.createClass({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
getEmailPusher: function(pushers, address) {
|
||||||
|
if (pushers === undefined) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
for (let i = 0; i < pushers.length; ++i) {
|
||||||
|
if (pushers[i].kind === 'email' && pushers[i].pushkey === address) {
|
||||||
|
return pushers[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
},
|
||||||
|
|
||||||
onEnableEmailNotificationsChange: function(address, checked) {
|
onEnableEmailNotificationsChange: function(address, checked) {
|
||||||
let emailPusherPromise;
|
let emailPusherPromise;
|
||||||
if (checked) {
|
if (checked) {
|
||||||
const data = {};
|
const data = {};
|
||||||
data['brand'] = SdkConfig.get().brand || 'Riot';
|
data['brand'] = SdkConfig.get().brand || 'Riot';
|
||||||
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
|
emailPusherPromise = MatrixClientPeg.get().setPusher({
|
||||||
|
kind: 'email',
|
||||||
|
app_id: 'm.email',
|
||||||
|
pushkey: address,
|
||||||
|
app_display_name: 'Email Notifications',
|
||||||
|
device_display_name: address,
|
||||||
|
lang: navigator.language,
|
||||||
|
data: data,
|
||||||
|
append: true, // We always append for email pushers since we don't want to stop other accounts notifying to the same email address
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
const emailPusher = UserSettingsStore.getEmailPusher(this.state.pushers, address);
|
const emailPusher = this.getEmailPusher(this.state.pushers, address);
|
||||||
emailPusher.kind = null;
|
emailPusher.kind = null;
|
||||||
emailPusherPromise = MatrixClientPeg.get().setPusher(emailPusher);
|
emailPusherPromise = MatrixClientPeg.get().setPusher(emailPusher);
|
||||||
}
|
}
|
||||||
|
@ -697,7 +723,7 @@ module.exports = React.createClass({
|
||||||
emailNotificationsRow: function(address, label) {
|
emailNotificationsRow: function(address, label) {
|
||||||
return <LabelledToggleSwitch value={this.hasEmailPusher(this.state.pushers, address)}
|
return <LabelledToggleSwitch value={this.hasEmailPusher(this.state.pushers, address)}
|
||||||
onChange={this.onEnableEmailNotificationsChange.bind(this, address)}
|
onChange={this.onEnableEmailNotificationsChange.bind(this, address)}
|
||||||
label={label} />;
|
label={label} key={`emailNotif_${label}`} />;
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
@ -729,17 +755,15 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
const emailThreepids = this.state.threepids.filter((tp) => tp.medium === "email");
|
const emailThreepids = this.state.threepids.filter((tp) => tp.medium === "email");
|
||||||
let emailNotificationsRow;
|
let emailNotificationsRows;
|
||||||
if (emailThreepids.length === 0) {
|
if (emailThreepids.length === 0) {
|
||||||
emailNotificationsRow = <div>
|
emailNotificationsRows = <div>
|
||||||
{ _t('Add an email address to configure email notifications') }
|
{ _t('Add an email address to configure email notifications') }
|
||||||
</div>;
|
</div>;
|
||||||
} else {
|
} else {
|
||||||
// This only supports the first email address in your profile for now
|
emailNotificationsRows = emailThreepids.map((threePid) => this.emailNotificationsRow(
|
||||||
emailNotificationsRow = this.emailNotificationsRow(
|
threePid.address, `${_t('Enable email notifications')} (${threePid.address})`,
|
||||||
emailThreepids[0].address,
|
));
|
||||||
`${_t('Enable email notifications')} (${emailThreepids[0].address})`,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build external push rules
|
// Build external push rules
|
||||||
|
@ -823,7 +847,7 @@ module.exports = React.createClass({
|
||||||
onChange={this.onEnableAudioNotificationsChange}
|
onChange={this.onEnableAudioNotificationsChange}
|
||||||
label={_t('Enable audible notifications in web client')} />
|
label={_t('Enable audible notifications in web client')} />
|
||||||
|
|
||||||
{ emailNotificationsRow }
|
{ emailNotificationsRows }
|
||||||
|
|
||||||
<div className="mx_UserNotifSettings_pushRulesTableWrapper">
|
<div className="mx_UserNotifSettings_pushRulesTableWrapper">
|
||||||
<table className="mx_UserNotifSettings_pushRulesTable">
|
<table className="mx_UserNotifSettings_pushRulesTable">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue