signal-desktop/js/notifications.js

155 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-05-02 20:43:32 +00:00
/* global Backbone: false */
/* global nodeNotifier: false */
/* global config: false */
/* global ConversationController: false */
/* global drawAttention: false */
2018-05-02 20:43:32 +00:00
/* global i18n: false */
/* global isFocused: false */
2018-05-02 20:43:32 +00:00
/* global Signal: false */
/* global storage: false */
/* global Whisper: false */
// eslint-disable-next-line func-names
2018-04-27 21:25:04 +00:00
(function() {
'use strict';
2018-05-02 20:43:32 +00:00
2018-04-27 21:25:04 +00:00
window.Whisper = window.Whisper || {};
2018-05-02 20:43:32 +00:00
const { Settings } = Signal.Types;
2018-05-02 22:02:49 +00:00
const SettingNames = {
2018-04-27 21:25:04 +00:00
OFF: 'off',
COUNT: 'count',
NAME: 'name',
MESSAGE: 'message',
};
2018-04-27 21:25:04 +00:00
Whisper.Notifications = new (Backbone.Collection.extend({
2018-05-02 20:43:32 +00:00
initialize() {
2018-04-27 21:25:04 +00:00
this.isEnabled = false;
this.on('add', this.update);
this.on('remove', this.onRemove);
},
2018-05-02 20:43:32 +00:00
onClick(conversationId) {
const conversation = ConversationController.get(conversationId);
2018-04-27 21:25:04 +00:00
this.trigger('click', conversation);
},
2018-05-02 20:43:32 +00:00
update() {
2018-04-27 21:25:04 +00:00
const { isEnabled } = this;
const isAppFocused = isFocused();
2018-04-27 21:25:04 +00:00
const isAudioNotificationEnabled =
storage.get('audio-notification') || false;
const isAudioNotificationSupported = Settings.isAudioNotificationSupported();
const numNotifications = this.length;
2018-05-02 22:04:00 +00:00
const userSetting = this.getUserSetting();
const hasNotificationSupport = !Boolean(config.polyfillNotifications);
2018-05-02 22:04:00 +00:00
const status = Signal.Notifications.getStatus({
hasNotificationSupport,
2018-05-02 22:04:00 +00:00
isAppFocused,
isAudioNotificationEnabled,
isAudioNotificationSupported,
isEnabled,
2018-04-27 21:25:04 +00:00
numNotifications,
2018-05-02 22:04:00 +00:00
userSetting,
2018-04-27 21:25:04 +00:00
});
2018-02-23 21:25:11 +00:00
2018-05-02 22:04:00 +00:00
console.log('Update notifications:', status);
2018-05-02 22:04:00 +00:00
if (status.type !== 'ok') {
if (status.shouldClearNotifications) {
this.clear();
}
2018-04-27 21:25:04 +00:00
return;
}
2018-05-02 20:43:32 +00:00
let title;
let message;
let iconUrl;
2018-04-27 21:25:04 +00:00
// NOTE: i18n has more complex rules for pluralization than just
// distinguishing between zero (0) and other (non-zero),
// e.g. Russian:
// http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html
2018-05-02 20:43:32 +00:00
const newMessageCount = [
2018-04-27 21:25:04 +00:00
numNotifications,
numNotifications === 1 ? i18n('newMessage') : i18n('newMessages'),
].join(' ');
2018-05-02 20:43:32 +00:00
const last = this.last();
2018-05-02 22:04:00 +00:00
switch (userSetting) {
2018-05-02 22:02:49 +00:00
case SettingNames.COUNT:
2018-04-27 21:25:04 +00:00
title = 'Signal';
message = newMessageCount;
break;
2018-05-02 22:02:49 +00:00
case SettingNames.NAME:
2018-04-27 21:25:04 +00:00
title = newMessageCount;
2018-05-02 20:43:32 +00:00
message = `Most recent from ${last.get('title')}`;
2018-04-27 21:25:04 +00:00
iconUrl = last.get('iconUrl');
break;
2018-05-02 22:02:49 +00:00
case SettingNames.MESSAGE:
2018-04-27 21:25:04 +00:00
if (numNotifications === 1) {
title = last.get('title');
} else {
title = newMessageCount;
}
message = last.get('message');
iconUrl = last.get('iconUrl');
break;
2018-05-02 20:43:32 +00:00
default:
2018-05-02 22:04:00 +00:00
console.log(`Error: Unknown user setting: '${userSetting}'`);
2018-05-02 20:43:32 +00:00
break;
2018-04-27 21:25:04 +00:00
}
2018-05-02 22:04:00 +00:00
drawAttention();
if (hasNotificationSupport) {
2018-05-02 20:43:32 +00:00
const notification = new Notification(title, {
2018-04-27 21:25:04 +00:00
body: message,
icon: iconUrl,
tag: 'signal',
2018-05-02 22:04:00 +00:00
silent: !status.shouldPlayNotificationSound,
2018-04-27 21:25:04 +00:00
});
2018-04-27 21:25:04 +00:00
notification.onclick = this.onClick.bind(
this,
last.get('conversationId')
);
} else {
nodeNotifier.notify({
title,
message,
sound: false,
});
nodeNotifier.on('click', () => {
last.get('conversationId');
});
2018-04-27 21:25:04 +00:00
}
2018-04-27 21:25:04 +00:00
// We don't want to notify the user about these same messages again
this.clear();
},
2018-05-02 22:04:00 +00:00
getUserSetting() {
2018-05-02 22:02:49 +00:00
return storage.get('notification-setting') || SettingNames.MESSAGE;
2018-04-27 21:25:04 +00:00
},
2018-05-02 20:43:32 +00:00
onRemove() {
2018-05-02 22:04:00 +00:00
console.log('Remove notification');
2018-04-27 21:25:04 +00:00
},
2018-05-02 20:43:32 +00:00
clear() {
2018-05-02 22:04:00 +00:00
console.log('Remove all notifications');
2018-04-27 21:25:04 +00:00
this.reset([]);
},
2018-05-02 20:43:32 +00:00
enable() {
2018-04-27 21:25:04 +00:00
const needUpdate = !this.isEnabled;
this.isEnabled = true;
if (needUpdate) {
this.update();
}
},
2018-05-02 20:43:32 +00:00
disable() {
2018-04-27 21:25:04 +00:00
this.isEnabled = false;
},
}))();
})();