2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2011-10-25 05:00:37 -07:00
|
|
|
|
2009-02-18 12:57:20 -08:00
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
const Cu = Components.utils;
|
2011-10-25 05:00:37 -07:00
|
|
|
const Cc = Components.classes;
|
2009-02-18 12:57:20 -08:00
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
2010-07-13 07:36:09 -07:00
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
2009-02-18 12:57:20 -08:00
|
|
|
|
2012-05-16 12:00:40 -07:00
|
|
|
const kEntities = { "geolocation": "geolocation",
|
2013-07-23 11:09:00 -07:00
|
|
|
"desktop-notification": "desktopNotification",
|
|
|
|
"contacts": "contacts" };
|
2011-01-28 12:39:48 -08:00
|
|
|
|
2010-09-09 23:56:50 -07:00
|
|
|
function ContentPermissionPrompt() {}
|
2009-02-18 12:57:20 -08:00
|
|
|
|
2010-09-09 23:56:50 -07:00
|
|
|
ContentPermissionPrompt.prototype = {
|
2010-07-21 16:41:25 -07:00
|
|
|
classID: Components.ID("{C6E8C44D-9F39-4AF7-BCC0-76E38A8310F5}"),
|
2009-02-18 12:57:20 -08:00
|
|
|
|
2010-09-09 23:56:50 -07:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPermissionPrompt]),
|
2010-07-21 16:41:25 -07:00
|
|
|
|
2011-10-25 05:00:37 -07:00
|
|
|
handleExistingPermission: function handleExistingPermission(request) {
|
2012-07-30 07:58:26 -07:00
|
|
|
let result = Services.perms.testExactPermissionFromPrincipal(request.principal, request.type);
|
2011-10-25 05:00:37 -07:00
|
|
|
if (result == Ci.nsIPermissionManager.ALLOW_ACTION) {
|
|
|
|
request.allow();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (result == Ci.nsIPermissionManager.DENY_ACTION) {
|
|
|
|
request.cancel();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2010-09-11 08:31:21 -07:00
|
|
|
getChromeWindow: function getChromeWindow(aWindow) {
|
|
|
|
let chromeWin = aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
|
|
.QueryInterface(Ci.nsIDocShellTreeItem)
|
|
|
|
.rootTreeItem
|
|
|
|
.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindow)
|
|
|
|
.QueryInterface(Ci.nsIDOMChromeWindow);
|
|
|
|
return chromeWin;
|
|
|
|
},
|
|
|
|
|
2011-11-01 13:02:24 -07:00
|
|
|
getChromeForRequest: function getChromeForRequest(request) {
|
2010-09-11 08:31:21 -07:00
|
|
|
if (request.window) {
|
|
|
|
let requestingWindow = request.window.top;
|
2011-11-01 13:02:24 -07:00
|
|
|
return this.getChromeWindow(requestingWindow).wrappedJSObject;
|
|
|
|
}
|
|
|
|
return request.element.ownerDocument.defaultView;
|
|
|
|
},
|
|
|
|
|
2010-09-11 08:31:21 -07:00
|
|
|
prompt: function(request) {
|
2012-05-16 12:00:40 -07:00
|
|
|
// Returns true if the request was handled
|
2010-09-11 08:31:21 -07:00
|
|
|
if (this.handleExistingPermission(request))
|
|
|
|
return;
|
2009-02-18 12:57:20 -08:00
|
|
|
|
2012-05-16 12:00:40 -07:00
|
|
|
let chromeWin = this.getChromeForRequest(request);
|
2013-07-18 05:05:33 -07:00
|
|
|
let tab = chromeWin.BrowserApp.getTabForWindow(request.window.top);
|
2012-05-16 12:00:40 -07:00
|
|
|
if (!tab)
|
|
|
|
return;
|
2010-09-11 08:31:21 -07:00
|
|
|
|
2012-05-16 12:00:40 -07:00
|
|
|
let browserBundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
|
2011-01-28 12:39:48 -08:00
|
|
|
let entityName = kEntities[request.type];
|
|
|
|
|
2010-09-11 08:31:21 -07:00
|
|
|
let buttons = [{
|
2011-01-28 12:39:48 -08:00
|
|
|
label: browserBundle.GetStringFromName(entityName + ".allow"),
|
2012-05-16 12:00:40 -07:00
|
|
|
callback: function(aChecked) {
|
|
|
|
// If the user checked "Don't ask again", make a permanent exception
|
2013-03-18 06:24:53 -07:00
|
|
|
if (aChecked) {
|
2012-07-30 07:58:26 -07:00
|
|
|
Services.perms.addFromPrincipal(request.principal, request.type, Ci.nsIPermissionManager.ALLOW_ACTION);
|
2013-03-18 06:24:53 -07:00
|
|
|
} else if (entityName == "desktopNotification") {
|
|
|
|
// For notifications, it doesn't make sense to grant permission once. So when the user clicks allow,
|
|
|
|
// we let the requestor create notifications for the session.
|
2013-05-02 05:01:06 -07:00
|
|
|
Services.perms.addFromPrincipal(request.principal, request.type, Ci.nsIPermissionManager.ALLOW_ACTION, Ci.nsIPermissionManager.EXPIRE_SESSION);
|
2013-03-18 06:24:53 -07:00
|
|
|
}
|
2012-05-16 12:00:40 -07:00
|
|
|
|
2011-11-01 13:02:24 -07:00
|
|
|
request.allow();
|
|
|
|
}
|
2010-09-11 08:31:21 -07:00
|
|
|
},
|
|
|
|
{
|
2011-01-28 12:39:48 -08:00
|
|
|
label: browserBundle.GetStringFromName(entityName + ".dontAllow"),
|
2012-05-16 12:00:40 -07:00
|
|
|
callback: function(aChecked) {
|
|
|
|
// If the user checked "Don't ask again", make a permanent exception
|
|
|
|
if (aChecked)
|
2012-07-30 07:58:26 -07:00
|
|
|
Services.perms.addFromPrincipal(request.principal, request.type, Ci.nsIPermissionManager.DENY_ACTION);
|
2012-05-16 12:00:40 -07:00
|
|
|
|
2011-11-01 13:02:24 -07:00
|
|
|
request.cancel();
|
|
|
|
}
|
2010-09-11 08:31:21 -07:00
|
|
|
}];
|
|
|
|
|
2013-05-02 05:01:06 -07:00
|
|
|
let requestor = chromeWin.BrowserApp.manifest ? "'" + chromeWin.BrowserApp.manifest.name + "'" : request.principal.URI.host;
|
|
|
|
let message = browserBundle.formatStringFromName(entityName + ".ask", [requestor], 1);
|
2012-05-16 12:00:40 -07:00
|
|
|
let options = { checkbox: browserBundle.GetStringFromName(entityName + ".dontAskAgain") };
|
2011-10-25 05:00:37 -07:00
|
|
|
|
2013-05-02 05:01:06 -07:00
|
|
|
chromeWin.NativeWindow.doorhanger.show(message, entityName + request.principal.URI.host, buttons, tab.id, options);
|
2011-01-28 12:39:48 -08:00
|
|
|
}
|
2009-02-18 12:57:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//module initialization
|
2012-10-31 09:13:28 -07:00
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([ContentPermissionPrompt]);
|