|
|
|
/*
|
|
|
|
* https://github.com/morethanwords/tweb
|
|
|
|
* Copyright (C) 2019-2021 Eduard Kuzmenko
|
|
|
|
* https://github.com/morethanwords/tweb/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { fontFamily } from "../../components/middleEllipsis";
|
|
|
|
import getPeerTitle from "../../components/wrappers/getPeerTitle";
|
|
|
|
import wrapMessageForReply from "../../components/wrappers/messageForReply";
|
|
|
|
import { MOUNT_CLASS_TO } from "../../config/debug";
|
|
|
|
import { IS_MOBILE } from "../../environment/userAgent";
|
|
|
|
import IS_VIBRATE_SUPPORTED from "../../environment/vibrateSupport";
|
|
|
|
import deferredPromise, { CancellablePromise } from "../../helpers/cancellablePromise";
|
|
|
|
import idleController from "../../helpers/idleController";
|
|
|
|
import deepEqual from "../../helpers/object/deepEqual";
|
|
|
|
import tsNow from "../../helpers/tsNow";
|
|
|
|
import { Message, MessagePeerReaction, PeerNotifySettings } from "../../layer";
|
|
|
|
import I18n, { FormatterArguments, LangPackKey } from "../langPack";
|
|
|
|
import apiManagerProxy from "../mtproto/mtprotoworker";
|
|
|
|
import singleInstance from "../mtproto/singleInstance";
|
|
|
|
import webPushApiManager, { PushSubscriptionNotify } from "../mtproto/webPushApiManager";
|
|
|
|
import fixEmoji from "../richTextProcessor/fixEmoji";
|
|
|
|
import wrapPlainText from "../richTextProcessor/wrapPlainText";
|
|
|
|
import rootScope from "../rootScope";
|
|
|
|
import appImManager from "./appImManager";
|
|
|
|
import appRuntimeManager from "./appRuntimeManager";
|
|
|
|
import { AppManagers } from "./managers";
|
|
|
|
import generateMessageId from "./utils/messageId/generateMessageId";
|
|
|
|
import getPeerId from "./utils/peers/getPeerId";
|
|
|
|
|
|
|
|
type MyNotification = Notification & {
|
|
|
|
hidden?: boolean,
|
|
|
|
show?: () => void,
|
|
|
|
};
|
|
|
|
|
|
|
|
export type NotifyOptions = Partial<{
|
|
|
|
tag: string;
|
|
|
|
image: string;
|
|
|
|
key: string;
|
|
|
|
title: string;
|
|
|
|
message: string;
|
|
|
|
silent: boolean;
|
|
|
|
onclick: () => void;
|
|
|
|
noIncrement: boolean;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
export type NotificationSettings = {
|
|
|
|
nodesktop: boolean,
|
|
|
|
volume: number,
|
|
|
|
novibrate: boolean,
|
|
|
|
nopreview: boolean,
|
|
|
|
nopush: boolean,
|
|
|
|
nosound: boolean
|
|
|
|
};
|
|
|
|
|
|
|
|
export class UiNotificationsManager {
|
|
|
|
private notificationsUiSupport: boolean;
|
|
|
|
private notificationsShown: {[key: string]: MyNotification | true} = {};
|
|
|
|
private notificationIndex = 0;
|
|
|
|
private notificationsCount = 0;
|
|
|
|
private soundsPlayed: {[tag: string]: number} = {};
|
|
|
|
private vibrateSupport = IS_VIBRATE_SUPPORTED;
|
|
|
|
private nextSoundAt: number;
|
|
|
|
private prevSoundVolume: number;
|
|
|
|
|
|
|
|
private faviconEl: HTMLLinkElement = document.head.querySelector('link[rel="icon"]');
|
|
|
|
|
|
|
|
private titleBackup = document.title;
|
|
|
|
private titleChanged = false;
|
|
|
|
private titleInterval: number;
|
|
|
|
private prevFavicon: string;
|
|
|
|
|
|
|
|
private notifySoundEl: HTMLElement;
|
|
|
|
|
|
|
|
private stopped = false;
|
|
|
|
|
|
|
|
private topMessagesDeferred: CancellablePromise<void>;
|
|
|
|
|
|
|
|
private settings: NotificationSettings = {} as any;
|
|
|
|
|
|
|
|
private registeredDevice: any;
|
|
|
|
private pushInited = false;
|
|
|
|
|
|
|
|
private managers: AppManagers;
|
|
|
|
|
|
|
|
construct(managers: AppManagers) {
|
|
|
|
this.managers = managers;
|
|
|
|
|
|
|
|
navigator.vibrate = navigator.vibrate || (navigator as any).mozVibrate || (navigator as any).webkitVibrate;
|
|
|
|
|
|
|
|
this.notificationsUiSupport = ('Notification' in window) || ('mozNotification' in navigator);
|
|
|
|
|
|
|
|
this.notifySoundEl = document.createElement('div');
|
|
|
|
this.notifySoundEl.id = 'notify-sound';
|
|
|
|
document.body.append(this.notifySoundEl);
|
|
|
|
|
|
|
|
this.topMessagesDeferred = deferredPromise<void>();
|
|
|
|
|
|
|
|
singleInstance.addEventListener('deactivated', () => {
|
|
|
|
this.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
singleInstance.addEventListener('activated', () => {
|
|
|
|
if(this.stopped) {
|
|
|
|
this.start();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
idleController.addEventListener('change', (idle) => {
|
|
|
|
if(this.stopped) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!idle) {
|
|
|
|
this.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.toggleToggler();
|
|
|
|
});
|
|
|
|
|
|
|
|
rootScope.addEventListener('notification_reset', (peerString) => {
|
|
|
|
this.soundReset(peerString);
|
|
|
|
});
|
|
|
|
|
|
|
|
rootScope.addEventListener('notification_cancel', (str) => {
|
|
|
|
this.cancel(str);
|
|
|
|
});
|
|
|
|
|
|
|
|
webPushApiManager.addEventListener('push_init', (tokenData) => {
|
|
|
|
this.pushInited = true;
|
|
|
|
if(!this.settings.nodesktop && !this.settings.nopush) {
|
|
|
|
if(tokenData) {
|
|
|
|
this.registerDevice(tokenData);
|
|
|
|
} else {
|
|
|
|
webPushApiManager.subscribe();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.unregisterDevice(tokenData);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
webPushApiManager.addEventListener('push_subscribe', (tokenData) => {
|
|
|
|
this.registerDevice(tokenData);
|
|
|
|
});
|
|
|
|
webPushApiManager.addEventListener('push_unsubscribe', (tokenData) => {
|
|
|
|
this.unregisterDevice(tokenData);
|
|
|
|
});
|
|
|
|
|
|
|
|
rootScope.addEventListener('dialogs_multiupdate', () => {
|
|
|
|
//unregisterTopMsgs()
|
|
|
|
this.topMessagesDeferred.resolve();
|
|
|
|
}, {once: true});
|
|
|
|
|
|
|
|
webPushApiManager.addEventListener('push_notification_click', (notificationData) => {
|
|
|
|
if(notificationData.action === 'push_settings') {
|
|
|
|
/* this.topMessagesDeferred.then(() => {
|
|
|
|
$modal.open({
|
|
|
|
templateUrl: templateUrl('settings_modal'),
|
|
|
|
controller: 'SettingsModalController',
|
|
|
|
windowClass: 'settings_modal_window mobile_modal',
|
|
|
|
backdrop: 'single'
|
|
|
|
})
|
|
|
|
}); */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(notificationData.action === 'mute1d') {
|
|
|
|
this.managers.apiManager.invokeApi('account.updateDeviceLocked', {
|
|
|
|
period: 86400
|
|
|
|
}).then(() => {
|
|
|
|
// var toastData = toaster.pop({
|
|
|
|
// type: 'info',
|
|
|
|
// body: _('push_action_mute1d_success'),
|
|
|
|
// bodyOutputType: 'trustedHtml',
|
|
|
|
// clickHandler: () => {
|
|
|
|
// toaster.clear(toastData)
|
|
|
|
// },
|
|
|
|
// showCloseButton: false
|
|
|
|
// })
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const peerId = notificationData.custom && notificationData.custom.peerId.toPeerId();
|
|
|
|
console.log('click', notificationData, peerId);
|
|
|
|
if(peerId) {
|
|
|
|
this.topMessagesDeferred.then(async() => {
|
|
|
|
if(notificationData.custom.channel_id &&
|
|
|
|
!(await this.managers.appChatsManager.hasChat(notificationData.custom.channel_id))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(peerId.isUser() && !(await this.managers.appUsersManager.hasUser(peerId))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
appImManager.setInnerPeer({
|
|
|
|
peerId,
|
|
|
|
lastMsgId: generateMessageId(+notificationData.custom.msg_id)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public async buildNotification({message, fwdCount, peerReaction, peerTypeNotifySettings}: {
|
|
|
|
message: Message.message | Message.messageService,
|
|
|
|
fwdCount?: number,
|
|
|
|
peerReaction?: MessagePeerReaction,
|
|
|
|
peerTypeNotifySettings?: PeerNotifySettings
|
|
|
|
}) {
|
|
|
|
const peerId = message.peerId;
|
|
|
|
const isAnyChat = peerId.isAnyChat();
|
|
|
|
const notification: NotifyOptions = {};
|
|
|
|
const peerString = await this.managers.appPeersManager.getPeerString(peerId);
|
|
|
|
let notificationMessage: string;
|
|
|
|
|
|
|
|
if(peerTypeNotifySettings.show_previews) {
|
|
|
|
if(message._ === 'message' && message.fwd_from && fwdCount > 1) {
|
|
|
|
notificationMessage = I18n.format('Notifications.Forwarded', true, [fwdCount]);
|
|
|
|
} else {
|
|
|
|
notificationMessage = await wrapMessageForReply(message, undefined, undefined, true);
|
|
|
|
|
|
|
|
if(peerReaction) {
|
|
|
|
const langPackKey: LangPackKey = /* isAnyChat ? 'Notification.Group.Reacted' : */'Notification.Contact.Reacted';
|
|
|
|
const args: FormatterArguments = [
|
|
|
|
fixEmoji(peerReaction.reaction), // can be plain heart
|
|
|
|
notificationMessage
|
|
|
|
];
|
|
|
|
|
|
|
|
/* if(isAnyChat) {
|
|
|
|
args.unshift(appPeersManager.getPeerTitle(message.fromId, true));
|
|
|
|
} */
|
|
|
|
|
|
|
|
notificationMessage = I18n.format(langPackKey, true, args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
notificationMessage = I18n.format('Notifications.New', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(peerReaction) {
|
|
|
|
notification.noIncrement = true;
|
|
|
|
notification.silent = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const notificationFromPeerId = peerReaction ? getPeerId(peerReaction.peer_id) : message.fromId;
|
|
|
|
notification.title = await getPeerTitle(peerId, true, undefined, undefined, this.managers);
|
|
|
|
if(isAnyChat && notificationFromPeerId !== message.peerId) {
|
|
|
|
notification.title = await getPeerTitle(notificationFromPeerId, true, undefined, undefined, this.managers) +
|
|
|
|
' @ ' +
|
|
|
|
notification.title;
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.title = wrapPlainText(notification.title);
|
|
|
|
|
|
|
|
notification.onclick = () => {
|
|
|
|
appImManager.setInnerPeer({peerId, lastMsgId: message.mid});
|
|
|
|
};
|
|
|
|
|
|
|
|
notification.message = notificationMessage;
|
|
|
|
notification.key = 'msg' + message.mid;
|
|
|
|
notification.tag = peerString;
|
|
|
|
notification.silent = true;//message.pFlags.silent || false;
|
|
|
|
|
|
|
|
const peerPhoto = await this.managers.appPeersManager.getPeerPhoto(peerId);
|
|
|
|
if(peerPhoto) {
|
|
|
|
this.managers.appAvatarsManager.loadAvatar(peerId, peerPhoto, 'photo_small').then((url) => {
|
|
|
|
// ! WARNING, message can be already read
|
|
|
|
if(message.pFlags.unread || peerReaction) {
|
|
|
|
notification.image = url;
|
|
|
|
this.notify(notification);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.notify(notification);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private toggleToggler(enable = idleController.isIdle) {
|
|
|
|
if(IS_MOBILE) return;
|
|
|
|
|
|
|
|
const resetTitle = () => {
|
|
|
|
this.titleChanged = false;
|
|
|
|
document.title = this.titleBackup;
|
|
|
|
this.setFavicon();
|
|
|
|
};
|
|
|
|
|
|
|
|
window.clearInterval(this.titleInterval);
|
|
|
|
this.titleInterval = 0;
|
|
|
|
|
|
|
|
if(!enable) {
|
|
|
|
resetTitle();
|
|
|
|
} else {
|
|
|
|
this.titleInterval = window.setInterval(() => {
|
|
|
|
const count = this.notificationsCount;
|
|
|
|
if(!count) {
|
|
|
|
this.toggleToggler(false);
|
|
|
|
} else if(this.titleChanged) {
|
|
|
|
resetTitle();
|
|
|
|
} else {
|
|
|
|
this.titleChanged = true;
|
|
|
|
document.title = I18n.format('Notifications.Count', true, [count]);
|
|
|
|
//this.setFavicon('assets/img/favicon_unread.ico');
|
|
|
|
|
|
|
|
// fetch('assets/img/favicon.ico')
|
|
|
|
// .then((res) => res.blob())
|
|
|
|
// .then((blob) => {
|
|
|
|
// const img = document.createElement('img');
|
|
|
|
// img.src = URL.createObjectURL(blob);
|
|
|
|
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
canvas.width = 32 * window.devicePixelRatio;
|
|
|
|
canvas.height = canvas.width;
|
|
|
|
|
|
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
ctx.beginPath();
|
|
|
|
ctx.arc(canvas.width / 2, canvas.height / 2, canvas.width / 2, 0, 2 * Math.PI, false);
|
|
|
|
ctx.fillStyle = '#3390ec';
|
|
|
|
ctx.fill();
|
|
|
|
|
|
|
|
let fontSize = 24;
|
|
|
|
let str = '' + count;
|
|
|
|
if(count < 10) {
|
|
|
|
fontSize = 22;
|
|
|
|
} else if(count < 100) {
|
|
|
|
fontSize = 20;
|
|
|
|
} else {
|
|
|
|
str = '99+';
|
|
|
|
fontSize = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
fontSize *= window.devicePixelRatio;
|
|
|
|
|
|
|
|
ctx.font = `700 ${fontSize}px ${fontFamily}`;
|
|
|
|
ctx.textBaseline = 'middle';
|
|
|
|
ctx.textAlign = 'center';
|
|
|
|
ctx.fillStyle = 'white';
|
|
|
|
ctx.fillText(str, canvas.width / 2, canvas.height * .5625);
|
|
|
|
|
|
|
|
/* const ctx = canvas.getContext('2d');
|
|
|
|
ctx.drawImage(img, 0, 0, canvas.width, canvas.height); */
|
|
|
|
|
|
|
|
this.setFavicon(canvas.toDataURL());
|
|
|
|
// });
|
|
|
|
}
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private setFavicon(href: string = 'assets/img/favicon.ico') {
|
|
|
|
if(this.prevFavicon === href) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const link = this.faviconEl.cloneNode() as HTMLLinkElement;
|
|
|
|
link.href = href;
|
|
|
|
this.faviconEl.parentNode.replaceChild(link, this.faviconEl);
|
|
|
|
this.faviconEl = link;
|
|
|
|
|
|
|
|
this.prevFavicon = href;
|
|
|
|
}
|
|
|
|
|
|
|
|
public notify(data: NotifyOptions) {
|
|
|
|
//console.log('notify', data, rootScope.idle.isIDLE, this.notificationsUiSupport, this.stopped);
|
|
|
|
|
|
|
|
if(this.stopped) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FFOS Notification blob src bug workaround
|
|
|
|
/* if(Config.Navigator.ffos && !Config.Navigator.ffos2p) {
|
|
|
|
data.image = 'https://telegram.org/img/t_logo.png'
|
|
|
|
}
|
|
|
|
else if (data.image && !angular.isString(data.image)) {
|
|
|
|
if (Config.Navigator.ffos2p) {
|
|
|
|
FileManager.getDataUrl(data.image, 'image/jpeg').then(function (url) {
|
|
|
|
data.image = url
|
|
|
|
notify(data)
|
|
|
|
})
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
data.image = FileManager.getUrl(data.image, 'image/jpeg')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else */ if(!data.image) {
|
|
|
|
data.image = 'assets/img/logo_filled_rounded.png';
|
|
|
|
}
|
|
|
|
// console.log('notify image', data.image)
|
|
|
|
|
|
|
|
if(!data.noIncrement) {
|
|
|
|
++this.notificationsCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!this.titleInterval) {
|
|
|
|
this.toggleToggler();
|
|
|
|
}
|
|
|
|
|
|
|
|
const idx = ++this.notificationIndex;
|
|
|
|
const key = data.key || 'k' + idx;
|
|
|
|
this.notificationsShown[key] = true;
|
|
|
|
|
|
|
|
const now = tsNow();
|
|
|
|
if(this.settings.volume > 0 && !this.settings.nosound/* &&
|
|
|
|
(
|
|
|
|
!data.tag ||
|
|
|
|
!this.soundsPlayed[data.tag] ||
|
|
|
|
now > this.soundsPlayed[data.tag] + 60000
|
|
|
|
) */
|
|
|
|
) {
|
|
|
|
this.testSound(this.settings.volume);
|
|
|
|
this.soundsPlayed[data.tag] = now;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!this.notificationsUiSupport ||
|
|
|
|
'Notification' in window && Notification.permission !== 'granted') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this.settings.nodesktop) {
|
|
|
|
if(this.vibrateSupport && !this.settings.novibrate) {
|
|
|
|
navigator.vibrate([200, 100, 200]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let notification: MyNotification;
|
|
|
|
|
|
|
|
if('Notification' in window) {
|
|
|
|
try {
|
|
|
|
if(data.tag) {
|
|
|
|
for(let i in this.notificationsShown) {
|
|
|
|
const notification = this.notificationsShown[i];
|
|
|
|
if(typeof(notification) !== 'boolean' && notification.tag === data.tag) {
|
|
|
|
notification.hidden = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
notification = new Notification(data.title, {
|
|
|
|
icon: data.image || '',
|
|
|
|
body: data.message || '',
|
|
|
|
tag: data.tag || '',
|
|
|
|
silent: data.silent || false
|
|
|
|
});
|
|
|
|
|
|
|
|
//console.log('notify constructed notification');
|
|
|
|
} catch(e) {
|
|
|
|
this.notificationsUiSupport = false;
|
|
|
|
webPushApiManager.setLocalNotificationsDisabled();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} /* else if('mozNotification' in navigator) {
|
|
|
|
notification = navigator.mozNotification.createNotification(data.title, data.message || '', data.image || '')
|
|
|
|
} else if(notificationsMsSiteMode) {
|
|
|
|
window.external.msSiteModeClearIconOverlay()
|
|
|
|
window.external.msSiteModeSetIconOverlay('img/icons/icon16.png', data.title)
|
|
|
|
window.external.msSiteModeActivate()
|
|
|
|
notification = {
|
|
|
|
index: idx
|
|
|
|
}
|
|
|
|
} */ else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.onclick = () => {
|
|
|
|
notification.close();
|
|
|
|
appRuntimeManager.focus();
|
|
|
|
this.clear();
|
|
|
|
if(data.onclick) {
|
|
|
|
data.onclick();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
notification.onclose = () => {
|
|
|
|
if(!notification.hidden) {
|
|
|
|
delete this.notificationsShown[key];
|
|
|
|
this.clear();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if(notification.show) {
|
|
|
|
notification.show();
|
|
|
|
}
|
|
|
|
this.notificationsShown[key] = notification;
|
|
|
|
|
|
|
|
if(!IS_MOBILE) {
|
|
|
|
setTimeout(() => {
|
|
|
|
this.hide(key);
|
|
|
|
}, 8000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public updateLocalSettings = () => {
|
|
|
|
const keys = ['notify_nodesktop', 'notify_volume', 'notify_novibrate', 'notify_nopreview', 'notify_nopush'];
|
|
|
|
const promises = keys.map(() => undefined);
|
|
|
|
// const promises = keys.map((k) => stateStorage.get(k as any));
|
|
|
|
Promise.all(promises)
|
|
|
|
.then((updSettings) => {
|
|
|
|
this.settings.nodesktop = updSettings[0];
|
|
|
|
this.settings.volume = updSettings[1] === undefined ? 0.5 : updSettings[1];
|
|
|
|
this.settings.novibrate = updSettings[2];
|
|
|
|
this.settings.nopreview = updSettings[3];
|
|
|
|
this.settings.nopush = updSettings[4];
|
|
|
|
|
|
|
|
if(this.pushInited) {
|
|
|
|
const needPush = !this.settings.nopush && !this.settings.nodesktop && webPushApiManager.isAvailable || false;
|
|
|
|
const hasPush = this.registeredDevice !== false;
|
|
|
|
if(needPush !== hasPush) {
|
|
|
|
if(needPush) {
|
|
|
|
webPushApiManager.subscribe();
|
|
|
|
} else {
|
|
|
|
webPushApiManager.unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
webPushApiManager.setSettings(this.settings);
|
|
|
|
});
|
|
|
|
|
|
|
|
apiManagerProxy.getState().then((state) => {
|
|
|
|
this.settings.nosound = !state.settings.notifications.sound;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public getLocalSettings() {
|
|
|
|
return this.settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
private hide(key: string) {
|
|
|
|
const notification = this.notificationsShown[key];
|
|
|
|
if(notification && typeof(notification) !== 'boolean') {
|
|
|
|
try {
|
|
|
|
if(notification.close) {
|
|
|
|
notification.hidden = true;
|
|
|
|
notification.close();
|
|
|
|
}
|
|
|
|
} catch(e) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public soundReset(tag: string) {
|
|
|
|
delete this.soundsPlayed[tag];
|
|
|
|
}
|
|
|
|
|
|
|
|
private requestPermission = () => {
|
|
|
|
Notification.requestPermission();
|
|
|
|
window.removeEventListener('click', this.requestPermission);
|
|
|
|
};
|
|
|
|
|
|
|
|
public testSound(volume: number) {
|
|
|
|
const now = tsNow();
|
|
|
|
if(this.nextSoundAt && now < this.nextSoundAt && this.prevSoundVolume === volume) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.nextSoundAt = now + 1000;
|
|
|
|
this.prevSoundVolume = volume;
|
|
|
|
const filename = 'assets/audio/notification.mp3';
|
|
|
|
const audio = document.createElement('audio');
|
|
|
|
audio.autoplay = true;
|
|
|
|
audio.setAttribute('mozaudiochannel', 'notification');
|
|
|
|
audio.volume = volume;
|
|
|
|
audio.innerHTML = `
|
|
|
|
<source src="${filename}" type="audio/mpeg" />
|
|
|
|
<embed hidden="true" autostart="true" loop="false" volume="${volume * 100}" src="${filename}" />
|
|
|
|
`;
|
|
|
|
this.notifySoundEl.append(audio);
|
|
|
|
|
|
|
|
audio.addEventListener('ended', () => {
|
|
|
|
audio.remove();
|
|
|
|
}, {once: true});
|
|
|
|
}
|
|
|
|
|
|
|
|
public cancel(key: string) {
|
|
|
|
const notification = this.notificationsShown[key];
|
|
|
|
if(notification) {
|
|
|
|
if(this.notificationsCount > 0) {
|
|
|
|
--this.notificationsCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if(typeof(notification) !== 'boolean' && notification.close) {
|
|
|
|
notification.hidden = true;
|
|
|
|
notification.close();
|
|
|
|
}/* else if(notificationsMsSiteMode &&
|
|
|
|
notification.index === notificationIndex) {
|
|
|
|
window.external.msSiteModeClearIconOverlay()
|
|
|
|
} */
|
|
|
|
} catch(e) {}
|
|
|
|
|
|
|
|
delete this.notificationsShown[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public clear() {
|
|
|
|
/* if(notificationsMsSiteMode) {
|
|
|
|
window.external.msSiteModeClearIconOverlay()
|
|
|
|
} else { */
|
|
|
|
for(const i in this.notificationsShown) {
|
|
|
|
const notification = this.notificationsShown[i];
|
|
|
|
try {
|
|
|
|
if(typeof(notification) !== 'boolean' && notification.close) {
|
|
|
|
notification.close();
|
|
|
|
}
|
|
|
|
} catch(e) {}
|
|
|
|
}
|
|
|
|
/* } */
|
|
|
|
this.notificationsShown = {};
|
|
|
|
this.notificationsCount = 0;
|
|
|
|
|
|
|
|
webPushApiManager.hidePushNotifications();
|
|
|
|
}
|
|
|
|
|
|
|
|
public start() {
|
|
|
|
this.updateLocalSettings();
|
|
|
|
rootScope.addEventListener('settings_updated', this.updateLocalSettings);
|
|
|
|
webPushApiManager.start();
|
|
|
|
|
|
|
|
if(!this.notificationsUiSupport) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if('Notification' in window && Notification.permission !== 'granted' && Notification.permission !== 'denied') {
|
|
|
|
window.addEventListener('click', this.requestPermission);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if('onbeforeunload' in window) {
|
|
|
|
window.addEventListener('beforeunload', this.clear);
|
|
|
|
}
|
|
|
|
} catch(e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
private stop() {
|
|
|
|
this.clear();
|
|
|
|
window.clearInterval(this.titleInterval);
|
|
|
|
this.titleInterval = 0;
|
|
|
|
this.setFavicon();
|
|
|
|
this.stopped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private registerDevice(tokenData: PushSubscriptionNotify) {
|
|
|
|
if(this.registeredDevice && deepEqual(this.registeredDevice, tokenData)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.managers.apiManager.invokeApi('account.registerDevice', {
|
|
|
|
token_type: tokenData.tokenType,
|
|
|
|
token: tokenData.tokenValue,
|
|
|
|
other_uids: [],
|
|
|
|
app_sandbox: false,
|
|
|
|
secret: new Uint8Array()
|
|
|
|
}).then(() => {
|
|
|
|
this.registeredDevice = tokenData;
|
|
|
|
}, (error) => {
|
|
|
|
error.handled = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private unregisterDevice(tokenData: PushSubscriptionNotify) {
|
|
|
|
if(!this.registeredDevice) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.managers.apiManager.invokeApi('account.unregisterDevice', {
|
|
|
|
token_type: tokenData.tokenType,
|
|
|
|
token: tokenData.tokenValue,
|
|
|
|
other_uids: []
|
|
|
|
}).then(() => {
|
|
|
|
this.registeredDevice = false;
|
|
|
|
}, (error) => {
|
|
|
|
error.handled = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const uiNotificationsManager = new UiNotificationsManager();
|
|
|
|
MOUNT_CLASS_TO && (MOUNT_CLASS_TO.uiNotificationsManager = uiNotificationsManager);
|
|
|
|
export default uiNotificationsManager;
|