2011-10-25 05:00:37 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (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.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Gian-Carlo Pascutto <gpascutto@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
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",
|
|
|
|
"desktop-notification": "desktopNotification" };
|
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) {
|
|
|
|
let result = Services.perms.testExactPermission(request.uri, request.type);
|
|
|
|
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);
|
|
|
|
let tab = chromeWin.BrowserApp.getTabForWindow(request.window);
|
|
|
|
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
|
|
|
|
if (aChecked)
|
|
|
|
Services.perms.add(request.uri, request.type, Ci.nsIPermissionManager.ALLOW_ACTION);
|
|
|
|
|
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)
|
|
|
|
Services.perms.add(request.uri, request.type, Ci.nsIPermissionManager.DENY_ACTION);
|
|
|
|
|
2011-11-01 13:02:24 -07:00
|
|
|
request.cancel();
|
|
|
|
}
|
2010-09-11 08:31:21 -07:00
|
|
|
}];
|
|
|
|
|
2011-05-16 07:01:44 -07:00
|
|
|
let message = browserBundle.formatStringFromName(entityName + ".wantsTo",
|
2010-09-11 08:31:21 -07:00
|
|
|
[request.uri.host], 1);
|
2012-05-16 12:00:40 -07:00
|
|
|
let options = { checkbox: browserBundle.GetStringFromName(entityName + ".dontAskAgain") };
|
2011-10-25 05:00:37 -07:00
|
|
|
|
2011-11-01 13:26:11 -07:00
|
|
|
chromeWin.NativeWindow.doorhanger.show(message,
|
|
|
|
entityName + request.uri.host,
|
2012-05-16 12:00:40 -07:00
|
|
|
buttons, tab.id, options);
|
2011-01-28 12:39:48 -08:00
|
|
|
}
|
2009-02-18 12:57:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//module initialization
|
2010-09-09 23:56:50 -07:00
|
|
|
const NSGetFactory = XPCOMUtils.generateNSGetFactory([ContentPermissionPrompt]);
|