/* 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/. */ /* import-globals-from pageInfo.js */ ChromeUtils.import("resource:///modules/SitePermissions.jsm"); ChromeUtils.import("resource://gre/modules/BrowserUtils.jsm"); var gPermURI; var gPermPrincipal; var gUsageRequest; // Array of permissionIDs sorted alphabetically by label. var gPermissions = SitePermissions.listPermissions().sort((a, b) => { let firstLabel = SitePermissions.getPermissionLabel(a); let secondLabel = SitePermissions.getPermissionLabel(b); return firstLabel.localeCompare(secondLabel); }); var permissionObserver = { observe(aSubject, aTopic, aData) { if (aTopic == "perm-changed") { var permission = aSubject.QueryInterface(Ci.nsIPermission); if (permission.matchesURI(gPermURI, true) && gPermissions.includes(permission.type)) { initRow(permission.type); } } } }; function onLoadPermission(uri, principal) { var permTab = document.getElementById("permTab"); if (SitePermissions.isSupportedURI(uri)) { gPermURI = uri; gPermPrincipal = principal; var hostText = document.getElementById("hostText"); hostText.value = gPermURI.displayPrePath; for (var i of gPermissions) initRow(i); Services.obs.addObserver(permissionObserver, "perm-changed"); onUnloadRegistry.push(onUnloadPermission); permTab.hidden = false; } else permTab.hidden = true; } function onUnloadPermission() { Services.obs.removeObserver(permissionObserver, "perm-changed"); if (gUsageRequest) { gUsageRequest.cancel(); gUsageRequest = null; } } function initRow(aPartId) { createRow(aPartId); var checkbox = document.getElementById(aPartId + "Def"); var command = document.getElementById("cmd_" + aPartId + "Toggle"); var {state, scope} = SitePermissions.get(gPermURI, aPartId); let defaultState = SitePermissions.getDefault(aPartId); // When flash permission state is "Hide", we show it as "Always Ask" in page info. if (aPartId.startsWith("plugin") && state == SitePermissions.PROMPT_HIDE) { defaultState == SitePermissions.UNKNOWN ? state = defaultState : state = SitePermissions.PROMPT; } if (state != defaultState) { checkbox.checked = false; command.removeAttribute("disabled"); } else { checkbox.checked = true; command.setAttribute("disabled", "true"); } if (scope == SitePermissions.SCOPE_POLICY) { checkbox.setAttribute("disabled", "true"); command.setAttribute("disabled", "true"); } setRadioState(aPartId, state); } function createRow(aPartId) { let rowId = "perm-" + aPartId + "-row"; if (document.getElementById(rowId)) return; let commandId = "cmd_" + aPartId + "Toggle"; let labelId = "perm-" + aPartId + "-label"; let radiogroupId = aPartId + "RadioGroup"; let command = document.createElement("command"); command.setAttribute("id", commandId); command.setAttribute("oncommand", "onRadioClick('" + aPartId + "');"); document.getElementById("pageInfoCommandSet").appendChild(command); let row = document.createElement("vbox"); row.setAttribute("id", rowId); row.setAttribute("class", "permission"); let label = document.createElement("label"); label.setAttribute("id", labelId); label.setAttribute("control", radiogroupId); label.setAttribute("value", SitePermissions.getPermissionLabel(aPartId)); label.setAttribute("class", "permissionLabel"); row.appendChild(label); let controls = document.createElement("hbox"); controls.setAttribute("role", "group"); controls.setAttribute("aria-labelledby", labelId); let checkbox = document.createElement("checkbox"); checkbox.setAttribute("id", aPartId + "Def"); checkbox.setAttribute("oncommand", "onCheckboxClick('" + aPartId + "');"); checkbox.setAttribute("label", gBundle.getString("permissions.useDefault")); controls.appendChild(checkbox); let spacer = document.createElement("spacer"); spacer.setAttribute("flex", "1"); controls.appendChild(spacer); let radiogroup = document.createElement("radiogroup"); radiogroup.setAttribute("id", radiogroupId); radiogroup.setAttribute("orient", "horizontal"); for (let state of SitePermissions.getAvailableStates(aPartId)) { let radio = document.createElement("radio"); radio.setAttribute("id", aPartId + "#" + state); radio.setAttribute("label", SitePermissions.getMultichoiceStateLabel(state)); radio.setAttribute("command", commandId); radiogroup.appendChild(radio); } controls.appendChild(radiogroup); row.appendChild(controls); document.getElementById("permList").appendChild(row); } function onCheckboxClick(aPartId) { var command = document.getElementById("cmd_" + aPartId + "Toggle"); var checkbox = document.getElementById(aPartId + "Def"); if (checkbox.checked) { SitePermissions.remove(gPermURI, aPartId); command.setAttribute("disabled", "true"); var perm = SitePermissions.getDefault(aPartId); setRadioState(aPartId, perm); } else { onRadioClick(aPartId); command.removeAttribute("disabled"); } } function onRadioClick(aPartId) { var radioGroup = document.getElementById(aPartId + "RadioGroup"); var id = radioGroup.selectedItem.id; var permission = parseInt(id.split("#")[1]); SitePermissions.set(gPermURI, aPartId, permission); } function setRadioState(aPartId, aValue) { var radio = document.getElementById(aPartId + "#" + aValue); if (radio) { radio.radioGroup.selectedItem = radio; } }