зеркало из https://github.com/mozilla/gecko-dev.git
231 строка
6.9 KiB
JavaScript
231 строка
6.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = [];
|
|
|
|
const Ci = Components.interfaces;
|
|
const Cu = Components.utils;
|
|
const Cc = Components.classes;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "gSystemMessenger",
|
|
"@mozilla.org/system-message-internal;1",
|
|
"nsISystemMessagesInternal");
|
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "SystemAppProxy",
|
|
"resource://gre/modules/SystemAppProxy.jsm");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "notificationStorage",
|
|
"@mozilla.org/notificationStorage;1",
|
|
"nsINotificationStorage");
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "ppmm", function() {
|
|
return Cc["@mozilla.org/parentprocessmessagemanager;1"]
|
|
.getService(Ci.nsIMessageListenerManager);
|
|
});
|
|
|
|
function debug(str) {
|
|
//dump("=*= AlertsHelper.jsm : " + str + "\n");
|
|
}
|
|
|
|
const kNotificationIconSize = 128;
|
|
|
|
const kNotificationSystemMessageName = "notification";
|
|
|
|
const kDesktopNotification = "desktop-notification";
|
|
const kDesktopNotificationShow = "desktop-notification-show";
|
|
const kDesktopNotificationClick = "desktop-notification-click";
|
|
const kDesktopNotificationClose = "desktop-notification-close";
|
|
|
|
const kTopicAlertClickCallback = "alertclickcallback";
|
|
const kTopicAlertShow = "alertshow";
|
|
const kTopicAlertFinished = "alertfinished";
|
|
|
|
const kMozChromeNotificationEvent = "mozChromeNotificationEvent";
|
|
const kMozContentNotificationEvent = "mozContentNotificationEvent";
|
|
|
|
const kMessageAlertNotificationSend = "alert-notification-send";
|
|
const kMessageAlertNotificationClose = "alert-notification-close";
|
|
|
|
const kMessages = [
|
|
kMessageAlertNotificationSend,
|
|
kMessageAlertNotificationClose
|
|
];
|
|
|
|
var AlertsHelper = {
|
|
|
|
_listeners: {},
|
|
|
|
init: function() {
|
|
Services.obs.addObserver(this, "xpcom-shutdown", false);
|
|
for (let message of kMessages) {
|
|
ppmm.addMessageListener(message, this);
|
|
}
|
|
SystemAppProxy.addEventListener(kMozContentNotificationEvent, this);
|
|
},
|
|
|
|
observe: function(aSubject, aTopic, aData) {
|
|
switch (aTopic) {
|
|
case "xpcom-shutdown":
|
|
Services.obs.removeObserver(this, "xpcom-shutdown");
|
|
for (let message of kMessages) {
|
|
ppmm.removeMessageListener(message, this);
|
|
}
|
|
SystemAppProxy.removeEventListener(kMozContentNotificationEvent, this);
|
|
break;
|
|
}
|
|
},
|
|
|
|
handleEvent: function(evt) {
|
|
let detail = evt.detail;
|
|
|
|
switch(detail.type) {
|
|
case kDesktopNotificationShow:
|
|
case kDesktopNotificationClick:
|
|
case kDesktopNotificationClose:
|
|
this.handleNotificationEvent(detail);
|
|
break;
|
|
default:
|
|
debug("FIXME: Unhandled notification event: " + detail.type);
|
|
break;
|
|
}
|
|
},
|
|
|
|
handleNotificationEvent: function(detail) {
|
|
if (!detail || !detail.id) {
|
|
return;
|
|
}
|
|
|
|
let uid = detail.id;
|
|
let listener = this._listeners[uid];
|
|
if (!listener) {
|
|
return;
|
|
}
|
|
|
|
let topic;
|
|
if (detail.type === kDesktopNotificationClick) {
|
|
topic = kTopicAlertClickCallback;
|
|
} else if (detail.type === kDesktopNotificationShow) {
|
|
topic = kTopicAlertShow;
|
|
} else {
|
|
/* kDesktopNotificationClose */
|
|
topic = kTopicAlertFinished;
|
|
}
|
|
|
|
if (listener.cookie) {
|
|
try {
|
|
listener.observer.observe(null, topic, listener.cookie);
|
|
} catch (e) { }
|
|
} else {
|
|
if (detail.type === kDesktopNotificationClose && listener.dbId) {
|
|
notificationStorage.delete(listener.manifestURL, listener.dbId);
|
|
}
|
|
}
|
|
|
|
// we"re done with this notification
|
|
if (detail.type === kDesktopNotificationClose) {
|
|
delete this._listeners[uid];
|
|
}
|
|
},
|
|
|
|
registerListener: function(alertId, cookie, alertListener) {
|
|
this._listeners[alertId] = { observer: alertListener, cookie: cookie };
|
|
},
|
|
|
|
registerAppListener: function(uid, listener) {
|
|
this._listeners[uid] = listener;
|
|
},
|
|
|
|
deserializeStructuredClone: function(dataString) {
|
|
if (!dataString) {
|
|
return null;
|
|
}
|
|
let scContainer = Cc["@mozilla.org/docshell/structured-clone-container;1"].
|
|
createInstance(Ci.nsIStructuredCloneContainer);
|
|
|
|
// The maximum supported structured-clone serialization format version
|
|
// as defined in "js/public/StructuredClone.h"
|
|
let JS_STRUCTURED_CLONE_VERSION = 4;
|
|
scContainer.initFromBase64(dataString, JS_STRUCTURED_CLONE_VERSION);
|
|
let dataObj = scContainer.deserializeToVariant();
|
|
|
|
// We have to check whether dataObj contains DOM objects (supported by
|
|
// nsIStructuredCloneContainer, but not by Cu.cloneInto), e.g. ImageData.
|
|
// After the structured clone callback systems will be unified, we'll not
|
|
// have to perform this check anymore.
|
|
try {
|
|
let data = Cu.cloneInto(dataObj, {});
|
|
} catch(e) { dataObj = null; }
|
|
|
|
return dataObj;
|
|
},
|
|
|
|
showNotification: function(imageURL, title, text, textClickable, cookie,
|
|
uid, dir, lang, dataObj, manifestURL, timestamp,
|
|
behavior) {
|
|
function send(appName, appIcon) {
|
|
SystemAppProxy._sendCustomEvent(kMozChromeNotificationEvent, {
|
|
type: kDesktopNotification,
|
|
id: uid,
|
|
icon: imageURL,
|
|
title: title,
|
|
text: text,
|
|
dir: dir,
|
|
lang: lang,
|
|
appName: appName,
|
|
appIcon: appIcon,
|
|
manifestURL: manifestURL,
|
|
timestamp: timestamp,
|
|
data: dataObj,
|
|
mozbehavior: behavior
|
|
});
|
|
}
|
|
|
|
if (!manifestURL || !manifestURL.length) {
|
|
send(null, null);
|
|
return;
|
|
}
|
|
},
|
|
|
|
showAlertNotification: function(aMessage) {
|
|
let data = aMessage.data;
|
|
let currentListener = this._listeners[data.name];
|
|
if (currentListener && currentListener.observer) {
|
|
currentListener.observer.observe(null, kTopicAlertFinished, currentListener.cookie);
|
|
}
|
|
|
|
let dataObj = this.deserializeStructuredClone(data.dataStr);
|
|
this.registerListener(data.name, data.cookie, data.alertListener);
|
|
this.showNotification(data.imageURL, data.title, data.text,
|
|
data.textClickable, data.cookie, data.name, data.dir,
|
|
data.lang, dataObj, null, data.inPrivateBrowsing);
|
|
},
|
|
|
|
closeAlert: function(name) {
|
|
SystemAppProxy._sendCustomEvent(kMozChromeNotificationEvent, {
|
|
type: kDesktopNotificationClose,
|
|
id: name
|
|
});
|
|
},
|
|
|
|
receiveMessage: function(aMessage) {
|
|
switch(aMessage.name) {
|
|
case kMessageAlertNotificationSend:
|
|
this.showAlertNotification(aMessage);
|
|
break;
|
|
|
|
case kMessageAlertNotificationClose:
|
|
this.closeAlert(aMessage.data.name);
|
|
break;
|
|
}
|
|
|
|
},
|
|
}
|
|
|
|
AlertsHelper.init();
|