2015-07-03 12:12:54 +02:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-03 12:12:54 +02: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';
|
|
|
|
|
2015-11-30 16:04:24 +01:00
|
|
|
var MatrixClientPeg = require("./MatrixClientPeg");
|
2016-11-02 18:35:31 +01:00
|
|
|
var PlatformPeg = require("./PlatformPeg");
|
2015-11-30 16:04:24 +01:00
|
|
|
var TextForEvent = require('./TextForEvent');
|
|
|
|
var Avatar = require('./Avatar');
|
|
|
|
var dis = require("./dispatcher");
|
2015-09-16 15:48:49 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Dispatches:
|
|
|
|
* {
|
|
|
|
* action: "notifier_enabled",
|
|
|
|
* value: boolean
|
|
|
|
* }
|
|
|
|
*/
|
2015-07-03 12:12:54 +02:00
|
|
|
|
2015-12-02 17:35:16 +01:00
|
|
|
var Notifier = {
|
2016-11-02 18:35:31 +01:00
|
|
|
notifsByRoom: {},
|
2015-11-30 16:04:24 +01:00
|
|
|
|
|
|
|
notificationMessageForEvent: function(ev) {
|
|
|
|
return TextForEvent.textForEvent(ev);
|
|
|
|
},
|
|
|
|
|
2016-03-10 11:59:40 +01:00
|
|
|
_displayPopupNotification: function(ev, room) {
|
2016-11-02 18:35:31 +01:00
|
|
|
const plaf = PlatformPeg.get();
|
|
|
|
if (!plaf) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!plaf.supportsNotifications() || !plaf.maySendNotifications()) {
|
2015-11-30 16:04:24 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (global.document.hasFocus()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg = this.notificationMessageForEvent(ev);
|
|
|
|
if (!msg) return;
|
|
|
|
|
|
|
|
var title;
|
|
|
|
if (!ev.sender || room.name == ev.sender.name) {
|
|
|
|
title = room.name;
|
|
|
|
// notificationMessageForEvent includes sender,
|
|
|
|
// but we already have the sender here
|
|
|
|
if (ev.getContent().body) msg = ev.getContent().body;
|
|
|
|
} else if (ev.getType() == 'm.room.member') {
|
|
|
|
// context is all in the message here, we don't need
|
|
|
|
// to display sender info
|
|
|
|
title = room.name;
|
|
|
|
} else if (ev.sender) {
|
|
|
|
title = ev.sender.name + " (" + room.name + ")";
|
|
|
|
// notificationMessageForEvent includes sender,
|
|
|
|
// but we've just out sender in the title
|
|
|
|
if (ev.getContent().body) msg = ev.getContent().body;
|
|
|
|
}
|
|
|
|
|
|
|
|
var avatarUrl = ev.sender ? Avatar.avatarUrlForMember(
|
|
|
|
ev.sender, 40, 40, 'crop'
|
|
|
|
) : null;
|
|
|
|
|
2016-12-06 14:27:36 +01:00
|
|
|
const notif = plaf.displayNotification(title, msg, avatarUrl, room);
|
2016-03-03 14:18:41 +01:00
|
|
|
|
2016-11-02 18:35:31 +01:00
|
|
|
// if displayNotification returns non-null, the platform supports
|
|
|
|
// clearing notifications later, so keep track of this.
|
|
|
|
if (notif) {
|
|
|
|
if (this.notifsByRoom[ev.getRoomId()] === undefined) this.notifsByRoom[ev.getRoomId()] = [];
|
|
|
|
this.notifsByRoom[ev.getRoomId()].push(notif);
|
|
|
|
}
|
2016-03-10 11:59:40 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
_playAudioNotification: function(ev, room) {
|
|
|
|
var e = document.getElementById("messageAudio");
|
|
|
|
if (e) {
|
|
|
|
e.load();
|
|
|
|
e.play();
|
|
|
|
};
|
2015-11-30 16:04:24 +01:00
|
|
|
},
|
|
|
|
|
2015-07-03 12:12:54 +02:00
|
|
|
start: function() {
|
|
|
|
this.boundOnRoomTimeline = this.onRoomTimeline.bind(this);
|
2015-12-15 18:01:16 +01:00
|
|
|
this.boundOnSyncStateChange = this.onSyncStateChange.bind(this);
|
2016-11-02 18:35:31 +01:00
|
|
|
this.boundOnRoomReceipt = this.onRoomReceipt.bind(this);
|
2015-07-03 12:12:54 +02:00
|
|
|
MatrixClientPeg.get().on('Room.timeline', this.boundOnRoomTimeline);
|
2016-11-02 18:35:31 +01:00
|
|
|
MatrixClientPeg.get().on("Room.receipt", this.boundOnRoomReceipt);
|
2015-12-15 18:01:16 +01:00
|
|
|
MatrixClientPeg.get().on("sync", this.boundOnSyncStateChange);
|
2015-11-30 16:04:24 +01:00
|
|
|
this.toolbarHidden = false;
|
2016-03-17 03:06:47 +01:00
|
|
|
this.isPrepared = false;
|
2015-07-03 12:12:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
stop: function() {
|
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener('Room.timeline', this.boundOnRoomTimeline);
|
2016-11-02 18:35:31 +01:00
|
|
|
MatrixClientPeg.get().removeListener("Room.receipt", this.boundOnRoomReceipt);
|
2015-12-15 18:01:16 +01:00
|
|
|
MatrixClientPeg.get().removeListener('sync', this.boundOnSyncStateChange);
|
2015-07-03 12:12:54 +02:00
|
|
|
}
|
2016-03-17 03:06:47 +01:00
|
|
|
this.isPrepared = false;
|
2015-07-03 12:12:54 +02:00
|
|
|
},
|
|
|
|
|
2015-09-16 15:48:49 +02:00
|
|
|
supportsDesktopNotifications: function() {
|
2016-11-02 18:35:31 +01:00
|
|
|
const plaf = PlatformPeg.get();
|
|
|
|
return plaf && plaf.supportsNotifications();
|
2015-09-16 15:48:49 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
setEnabled: function(enable, callback) {
|
2016-11-02 18:35:31 +01:00
|
|
|
const plaf = PlatformPeg.get();
|
|
|
|
if (!plaf) return;
|
2016-03-10 11:59:40 +01:00
|
|
|
// make sure that we persist the current setting audio_enabled setting
|
|
|
|
// before changing anything
|
|
|
|
if (global.localStorage) {
|
|
|
|
if(global.localStorage.getItem('audio_notifications_enabled') == null) {
|
|
|
|
this.setAudioEnabled(this.isEnabled());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 17:40:33 +01:00
|
|
|
if (enable) {
|
2016-03-23 12:56:41 +01:00
|
|
|
// Attempt to get permission from user
|
2016-11-02 18:35:31 +01:00
|
|
|
plaf.requestNotificationPermission().done((result) => {
|
2016-03-23 12:56:41 +01:00
|
|
|
if (result !== 'granted') {
|
|
|
|
// The permission request was dismissed or denied
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-23 17:40:33 +01:00
|
|
|
if (global.localStorage) {
|
|
|
|
global.localStorage.setItem('notifications_enabled', 'true');
|
|
|
|
}
|
|
|
|
|
2016-03-23 12:56:41 +01:00
|
|
|
if (callback) callback();
|
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: true
|
2015-09-16 15:48:49 +02:00
|
|
|
});
|
2016-03-23 12:56:41 +01:00
|
|
|
});
|
2016-03-29 11:51:13 +02:00
|
|
|
// clear the notifications_hidden flag, so that if notifications are
|
|
|
|
// disabled again in the future, we will show the banner again.
|
2016-03-24 01:16:52 +01:00
|
|
|
this.setToolbarHidden(false);
|
2016-03-21 23:19:46 +01:00
|
|
|
} else {
|
2015-09-16 15:48:49 +02:00
|
|
|
if (!global.localStorage) return;
|
|
|
|
global.localStorage.setItem('notifications_enabled', 'false');
|
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
isEnabled: function() {
|
2016-11-02 18:35:31 +01:00
|
|
|
const plaf = PlatformPeg.get();
|
|
|
|
if (!plaf) return false;
|
|
|
|
if (!plaf.supportsNotifications()) return false;
|
|
|
|
if (!plaf.maySendNotifications()) return false;
|
2015-09-16 15:48:49 +02:00
|
|
|
|
|
|
|
if (!global.localStorage) return true;
|
|
|
|
|
|
|
|
var enabled = global.localStorage.getItem('notifications_enabled');
|
|
|
|
if (enabled === null) return true;
|
|
|
|
return enabled === 'true';
|
|
|
|
},
|
|
|
|
|
2016-03-10 11:59:40 +01:00
|
|
|
setAudioEnabled: function(enable) {
|
|
|
|
if (!global.localStorage) return;
|
|
|
|
global.localStorage.setItem('audio_notifications_enabled',
|
|
|
|
enable ? 'true' : 'false');
|
|
|
|
},
|
|
|
|
|
|
|
|
isAudioEnabled: function(enable) {
|
|
|
|
if (!global.localStorage) return true;
|
|
|
|
var enabled = global.localStorage.getItem(
|
|
|
|
'audio_notifications_enabled');
|
|
|
|
// default to true if the popups are enabled
|
|
|
|
if (enabled === null) return this.isEnabled();
|
|
|
|
return enabled === 'true';
|
|
|
|
},
|
|
|
|
|
2016-03-23 09:20:24 +01:00
|
|
|
setToolbarHidden: function(hidden, persistent = true) {
|
2015-11-30 16:04:24 +01:00
|
|
|
this.toolbarHidden = hidden;
|
2016-09-09 03:09:12 +02:00
|
|
|
|
2016-03-29 11:51:13 +02:00
|
|
|
// XXX: why are we dispatching this here?
|
|
|
|
// this is nothing to do with notifier_enabled
|
2015-09-16 15:48:49 +02:00
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: this.isEnabled()
|
|
|
|
});
|
2016-03-21 23:19:46 +01:00
|
|
|
|
2016-03-23 11:15:54 +01:00
|
|
|
// update the info to localStorage for persistent settings
|
|
|
|
if (persistent && global.localStorage) {
|
2016-03-24 01:16:52 +01:00
|
|
|
global.localStorage.setItem('notifications_hidden', hidden);
|
2016-03-21 23:19:46 +01:00
|
|
|
}
|
2015-09-16 15:48:49 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
isToolbarHidden: function() {
|
2016-03-23 12:56:41 +01:00
|
|
|
// Check localStorage for any such meta data
|
|
|
|
if (global.localStorage) {
|
|
|
|
if (global.localStorage.getItem('notifications_hidden') === 'true') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-30 16:04:24 +01:00
|
|
|
return this.toolbarHidden;
|
2015-09-16 15:48:49 +02:00
|
|
|
},
|
|
|
|
|
2015-12-15 18:01:16 +01:00
|
|
|
onSyncStateChange: function(state) {
|
|
|
|
if (state === "PREPARED" || state === "SYNCING") {
|
|
|
|
this.isPrepared = true;
|
|
|
|
}
|
2016-03-17 12:34:20 +01:00
|
|
|
else if (state === "STOPPED" || state === "ERROR") {
|
|
|
|
this.isPrepared = false;
|
|
|
|
}
|
2015-12-15 18:01:16 +01:00
|
|
|
},
|
|
|
|
|
2016-09-08 23:48:44 +02:00
|
|
|
onRoomTimeline: function(ev, room, toStartOfTimeline, removed, data) {
|
2015-07-03 12:12:54 +02:00
|
|
|
if (toStartOfTimeline) return;
|
2016-09-09 03:09:12 +02:00
|
|
|
if (!room) return;
|
2015-12-15 18:01:16 +01:00
|
|
|
if (!this.isPrepared) return; // don't alert for any messages initially
|
2015-07-03 17:46:30 +02:00
|
|
|
if (ev.sender && ev.sender.userId == MatrixClientPeg.get().credentials.userId) return;
|
2016-09-08 23:48:44 +02:00
|
|
|
if (data.timeline.getTimelineSet() !== room.getUnfilteredTimelineSet()) return;
|
2015-07-03 12:12:54 +02:00
|
|
|
|
|
|
|
var actions = MatrixClientPeg.get().getPushActionsForEvent(ev);
|
|
|
|
if (actions && actions.notify) {
|
2016-03-10 11:59:40 +01:00
|
|
|
if (this.isEnabled()) {
|
|
|
|
this._displayPopupNotification(ev, room);
|
|
|
|
}
|
|
|
|
if (actions.tweaks.sound && this.isAudioEnabled()) {
|
|
|
|
this._playAudioNotification(ev, room);
|
|
|
|
}
|
2015-07-03 12:12:54 +02:00
|
|
|
}
|
2016-11-02 18:35:31 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
onRoomReceipt: function(ev, room) {
|
|
|
|
if (room.getUnreadNotificationCount() == 0) {
|
|
|
|
// ideally we would clear each notification when it was read,
|
|
|
|
// but we have no way, given a read receipt, to know whether
|
|
|
|
// the receipt comes before or after an event, so we can't
|
|
|
|
// do this. Instead, clear all notifications for a room once
|
|
|
|
// there are no notifs left in that room., which is not quite
|
|
|
|
// as good but it's something.
|
|
|
|
const plaf = PlatformPeg.get();
|
|
|
|
if (!plaf) return;
|
|
|
|
if (this.notifsByRoom[room.roomId] === undefined) return;
|
|
|
|
for (const notif of this.notifsByRoom[room.roomId]) {
|
|
|
|
plaf.clearNotification(notif);
|
|
|
|
}
|
|
|
|
delete this.notifsByRoom[room.roomId];
|
|
|
|
}
|
2015-07-03 12:12:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-02 17:35:16 +01:00
|
|
|
if (!global.mxNotifier) {
|
|
|
|
global.mxNotifier = Notifier;
|
|
|
|
}
|
|
|
|
|
2016-03-04 16:29:33 +01:00
|
|
|
module.exports = global.mxNotifier;
|