зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 3bfa589adaae (bug 892837) for landing with the wrong bug #.
This commit is contained in:
Родитель
c51d813f63
Коммит
3966083bc4
|
@ -6,8 +6,6 @@ const Cc = Components.classes;
|
|||
const Ci = Components.interfaces;
|
||||
const Cu = Components.utils;
|
||||
|
||||
const UNKNOWN_FAIL = ["geolocation", "desktop-notification"];
|
||||
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
Cu.import("resource://webapprt/modules/WebappRT.jsm");
|
||||
|
@ -18,83 +16,64 @@ ContentPermission.prototype = {
|
|||
classID: Components.ID("{07ef5b2e-88fb-47bd-8cec-d3b0bef11ac4}"),
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIContentPermissionPrompt]),
|
||||
|
||||
_getChromeWindow: function(aWindow) {
|
||||
return aWindow
|
||||
.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIWebNavigation)
|
||||
.QueryInterface(Ci.nsIDocShellTreeItem)
|
||||
.rootTreeItem
|
||||
.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIDOMWindow)
|
||||
.QueryInterface(Ci.nsIDOMChromeWindow);
|
||||
},
|
||||
|
||||
prompt: function(request) {
|
||||
// Reuse any remembered permission preferences
|
||||
let result =
|
||||
Services.perms.testExactPermissionFromPrincipal(request.principal,
|
||||
request.type);
|
||||
|
||||
// We used to use the name "geo" for the geolocation permission, now we're
|
||||
// using "geolocation". We need to check both to support existing
|
||||
// installations.
|
||||
if ((result == Ci.nsIPermissionManager.UNKNOWN_ACTION ||
|
||||
result == Ci.nsIPermissionManager.PROMPT_ACTION) &&
|
||||
request.type == "geolocation") {
|
||||
let geoResult = Services.perms.testExactPermission(request.principal.URI,
|
||||
"geo");
|
||||
// We override the result only if the "geo" permission was allowed or
|
||||
// denied.
|
||||
if (geoResult == Ci.nsIPermissionManager.ALLOW_ACTION ||
|
||||
geoResult == Ci.nsIPermissionManager.DENY_ACTION) {
|
||||
result = geoResult;
|
||||
}
|
||||
// Only handle geolocation requests for now
|
||||
if (request.type != "geolocation") {
|
||||
return;
|
||||
}
|
||||
|
||||
// Reuse any remembered permission preferences
|
||||
let result = Services.perms.testExactPermissionFromPrincipal(request.principal, "geo");
|
||||
if (result == Ci.nsIPermissionManager.ALLOW_ACTION) {
|
||||
request.allow();
|
||||
return;
|
||||
} else if (result == Ci.nsIPermissionManager.DENY_ACTION ||
|
||||
(result == Ci.nsIPermissionManager.UNKNOWN_ACTION &&
|
||||
UNKNOWN_FAIL.indexOf(request.type) >= 0)) {
|
||||
}
|
||||
else if (result == Ci.nsIPermissionManager.DENY_ACTION) {
|
||||
request.cancel();
|
||||
return;
|
||||
}
|
||||
|
||||
function getChromeWindow(aWindow) {
|
||||
var chromeWin = aWindow
|
||||
.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIWebNavigation)
|
||||
.QueryInterface(Ci.nsIDocShellTreeItem)
|
||||
.rootTreeItem
|
||||
.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIDOMWindow)
|
||||
.QueryInterface(Ci.nsIDOMChromeWindow);
|
||||
return chromeWin;
|
||||
}
|
||||
|
||||
// Display a prompt at the top level
|
||||
let {name} = WebappRT.config.app.manifest;
|
||||
let requestingWindow = request.window.top;
|
||||
let chromeWin = this._getChromeWindow(requestingWindow);
|
||||
let chromeWin = getChromeWindow(requestingWindow);
|
||||
let bundle = Services.strings.createBundle("chrome://webapprt/locale/webapp.properties");
|
||||
|
||||
// Construct a prompt with share/don't and remember checkbox
|
||||
let remember = {value: false};
|
||||
let choice = Services.prompt.confirmEx(
|
||||
chromeWin,
|
||||
bundle.formatStringFromName(request.type + ".title", [name], 1),
|
||||
bundle.GetStringFromName(request.type + ".description"),
|
||||
bundle.formatStringFromName("geolocation.title", [name], 1),
|
||||
bundle.GetStringFromName("geolocation.description"),
|
||||
// Set both buttons to strings with the cancel button being default
|
||||
Ci.nsIPromptService.BUTTON_POS_1_DEFAULT |
|
||||
Ci.nsIPromptService.BUTTON_TITLE_IS_STRING * Ci.nsIPromptService.BUTTON_POS_0 |
|
||||
Ci.nsIPromptService.BUTTON_TITLE_IS_STRING * Ci.nsIPromptService.BUTTON_POS_1,
|
||||
bundle.GetStringFromName(request.type + ".allow"),
|
||||
bundle.GetStringFromName(request.type + ".deny"),
|
||||
bundle.GetStringFromName("geolocation.sharelocation"),
|
||||
bundle.GetStringFromName("geolocation.dontshare"),
|
||||
null,
|
||||
bundle.GetStringFromName(request.type + ".remember"),
|
||||
bundle.GetStringFromName("geolocation.remember"),
|
||||
remember);
|
||||
|
||||
let action = Ci.nsIPermissionManager.ALLOW_ACTION;
|
||||
if (choice != 0) {
|
||||
action = Ci.nsIPermissionManager.DENY_ACTION;
|
||||
}
|
||||
|
||||
// Persist the choice if the user wants to remember
|
||||
if (remember.value) {
|
||||
// Persist the choice if the user wants to remember
|
||||
Services.perms.addFromPrincipal(request.principal, request.type, action);
|
||||
} else {
|
||||
// Otherwise allow the permission for the current session
|
||||
Services.perms.addFromPrincipal(request.principal, request.type, action,
|
||||
Ci.nsIPermissionManager.EXPIRE_SESSION);
|
||||
let action = Ci.nsIPermissionManager.ALLOW_ACTION;
|
||||
if (choice != 0) {
|
||||
action = Ci.nsIPermissionManager.DENY_ACTION;
|
||||
}
|
||||
Services.perms.addFromPrincipal(request.principal, "geo", action);
|
||||
}
|
||||
|
||||
// Trigger the selected choice
|
||||
|
|
|
@ -20,18 +20,10 @@ hideApplicationCmdMac.label=Hide %S
|
|||
# the webapp.
|
||||
geolocation.title=%S - Share Location
|
||||
geolocation.description=Do you want to share your location?
|
||||
geolocation.allow=Share Location
|
||||
geolocation.deny=Don't Share
|
||||
geolocation.sharelocation=Share Location
|
||||
geolocation.dontshare=Don't Share
|
||||
geolocation.remember=Remember my choice
|
||||
|
||||
# LOCALIZATION NOTE (desktop-notification.title): %S will be replaced with the
|
||||
# name of the webapp.
|
||||
desktop-notification.title=%S - Show notifications
|
||||
desktop-notification.description=Do you want to allow notifications?
|
||||
desktop-notification.allow=Show
|
||||
desktop-notification.deny=Don't show
|
||||
desktop-notification.remember=Remember my choice
|
||||
|
||||
# LOCALIZATION NOTE (webapps.install.title): %S will be replaced with the name
|
||||
# of the webapp being installed.
|
||||
webapps.install.title=Install %S
|
||||
|
|
Загрузка…
Ссылка в новой задаче