2015-07-03 18:12:54 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-11-30 23:04:24 +08:00
|
|
|
var MatrixClientPeg = require("./MatrixClientPeg");
|
|
|
|
var TextForEvent = require('./TextForEvent');
|
|
|
|
var Avatar = require('./Avatar');
|
|
|
|
var dis = require("./dispatcher");
|
2015-09-16 21:48:49 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Dispatches:
|
|
|
|
* {
|
|
|
|
* action: "notifier_enabled",
|
|
|
|
* value: boolean
|
|
|
|
* }
|
|
|
|
*/
|
2015-07-03 18:12:54 +08:00
|
|
|
|
2015-12-03 00:35:16 +08:00
|
|
|
var Notifier = {
|
2015-11-30 23:04:24 +08:00
|
|
|
|
|
|
|
notificationMessageForEvent: function(ev) {
|
|
|
|
return TextForEvent.textForEvent(ev);
|
|
|
|
},
|
|
|
|
|
|
|
|
displayNotification: function(ev, room) {
|
|
|
|
if (!global.Notification || global.Notification.permission != 'granted') {
|
|
|
|
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;
|
|
|
|
|
|
|
|
var notification = new global.Notification(
|
|
|
|
title,
|
|
|
|
{
|
|
|
|
"body": msg,
|
|
|
|
"icon": avatarUrl,
|
2015-12-01 02:11:04 +08:00
|
|
|
"tag": "matrixreactsdk"
|
2015-11-30 23:04:24 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
notification.onclick = function() {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_id: room.roomId
|
|
|
|
});
|
|
|
|
global.focus();
|
|
|
|
};
|
|
|
|
|
|
|
|
/*var audioClip;
|
|
|
|
|
|
|
|
if (audioNotification) {
|
|
|
|
audioClip = playAudio(audioNotification);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
global.setTimeout(function() {
|
|
|
|
notification.close();
|
|
|
|
}, 5 * 1000);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2015-07-03 18:12:54 +08:00
|
|
|
start: function() {
|
|
|
|
this.boundOnRoomTimeline = this.onRoomTimeline.bind(this);
|
2015-12-16 01:01:16 +08:00
|
|
|
this.boundOnSyncStateChange = this.onSyncStateChange.bind(this);
|
2015-07-03 18:12:54 +08:00
|
|
|
MatrixClientPeg.get().on('Room.timeline', this.boundOnRoomTimeline);
|
2015-12-16 01:01:16 +08:00
|
|
|
MatrixClientPeg.get().on("sync", this.boundOnSyncStateChange);
|
2015-11-30 23:04:24 +08:00
|
|
|
this.toolbarHidden = false;
|
2015-07-03 18:12:54 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
stop: function() {
|
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener('Room.timeline', this.boundOnRoomTimeline);
|
2015-12-16 01:01:16 +08:00
|
|
|
MatrixClientPeg.get().removeListener('sync', this.boundOnSyncStateChange);
|
2015-07-03 18:12:54 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-09-16 21:48:49 +08:00
|
|
|
supportsDesktopNotifications: function() {
|
|
|
|
return !!global.Notification;
|
|
|
|
},
|
|
|
|
|
|
|
|
havePermission: function() {
|
|
|
|
if (!this.supportsDesktopNotifications()) return false;
|
|
|
|
return global.Notification.permission == 'granted';
|
|
|
|
},
|
|
|
|
|
|
|
|
setEnabled: function(enable, callback) {
|
|
|
|
if(enable) {
|
|
|
|
if (!this.havePermission()) {
|
|
|
|
global.Notification.requestPermission(function() {
|
|
|
|
if (callback) {
|
|
|
|
callback();
|
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!global.localStorage) return;
|
|
|
|
global.localStorage.setItem('notifications_enabled', 'true');
|
|
|
|
|
|
|
|
if (this.havePermission) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!global.localStorage) return;
|
|
|
|
global.localStorage.setItem('notifications_enabled', 'false');
|
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setToolbarHidden(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
isEnabled: function() {
|
|
|
|
if (!this.havePermission()) return false;
|
|
|
|
|
|
|
|
if (!global.localStorage) return true;
|
|
|
|
|
|
|
|
var enabled = global.localStorage.getItem('notifications_enabled');
|
|
|
|
if (enabled === null) return true;
|
|
|
|
return enabled === 'true';
|
|
|
|
},
|
|
|
|
|
|
|
|
setToolbarHidden: function(hidden) {
|
2015-11-30 23:04:24 +08:00
|
|
|
this.toolbarHidden = hidden;
|
2015-09-16 21:48:49 +08:00
|
|
|
dis.dispatch({
|
|
|
|
action: "notifier_enabled",
|
|
|
|
value: this.isEnabled()
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
isToolbarHidden: function() {
|
2015-11-30 23:04:24 +08:00
|
|
|
return this.toolbarHidden;
|
2015-09-16 21:48:49 +08:00
|
|
|
},
|
|
|
|
|
2015-12-16 01:01:16 +08:00
|
|
|
onSyncStateChange: function(state) {
|
|
|
|
if (state === "PREPARED" || state === "SYNCING") {
|
|
|
|
this.isPrepared = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-07-03 18:12:54 +08:00
|
|
|
onRoomTimeline: function(ev, room, toStartOfTimeline) {
|
|
|
|
if (toStartOfTimeline) return;
|
2015-12-16 01:01:16 +08:00
|
|
|
if (!this.isPrepared) return; // don't alert for any messages initially
|
2015-07-03 23:46:30 +08:00
|
|
|
if (ev.sender && ev.sender.userId == MatrixClientPeg.get().credentials.userId) return;
|
2015-07-03 18:12:54 +08:00
|
|
|
|
2015-09-16 21:48:49 +08:00
|
|
|
if (!this.isEnabled()) {
|
|
|
|
return;
|
|
|
|
}
|
2015-07-03 18:12:54 +08:00
|
|
|
|
|
|
|
var actions = MatrixClientPeg.get().getPushActionsForEvent(ev);
|
|
|
|
if (actions && actions.notify) {
|
|
|
|
this.displayNotification(ev, room);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-03 00:35:16 +08:00
|
|
|
if (!global.mxNotifier) {
|
|
|
|
global.mxNotifier = Notifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = global.mxNotifier;
|