Verified Commit 4c4bac7c authored by Alex Catarineu's avatar Alex Catarineu Committed by Pier Angelo Vendrame
Browse files

TB 21952: Implement Onion-Location

Whenever a valid Onion-Location HTTP header (or corresponding HTML
<meta> http-equiv attribute) is found in a document load, we either
redirect to it (if the user opted-in via preference) or notify the
presence of an onionsite alternative with a badge in the urlbar.
parent e7abb50d
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@ ChromeUtils.defineESModuleGetters(this, {
  NewTabUtils: "resource://gre/modules/NewTabUtils.sys.mjs",
  NimbusFeatures: "resource://nimbus/ExperimentAPI.sys.mjs",
  nsContextMenu: "chrome://browser/content/nsContextMenu.sys.mjs",
  OnionLocationParent: "resource:///modules/OnionLocationParent.sys.mjs",
  openContextMenu: "chrome://browser/content/nsContextMenu.sys.mjs",
  OpenInTabsUtils: "resource:///modules/OpenInTabsUtils.sys.mjs",
  PageActions: "resource:///modules/PageActions.sys.mjs",
@@ -3719,6 +3720,7 @@ var XULBrowserWindow = {
    CFRPageActions.updatePageActions(gBrowser.selectedBrowser);

    AboutReaderParent.updateReaderButton(gBrowser.selectedBrowser);
    OnionLocationParent.updateOnionLocationBadge(gBrowser.selectedBrowser);
    TranslationsParent.onLocationChange(gBrowser.selectedBrowser);

    PictureInPicture.updateUrlbarToggle(gBrowser.selectedBrowser);
@@ -4312,6 +4314,16 @@ var CombinedStopReload = {

var TabsProgressListener = {
  onStateChange(aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) {
    // Clear OnionLocation UI
    if (
      aStateFlags & Ci.nsIWebProgressListener.STATE_START &&
      aStateFlags & Ci.nsIWebProgressListener.STATE_IS_NETWORK &&
      aRequest &&
      aWebProgress.isTopLevel
    ) {
      OnionLocationParent.onStateChange(aBrowser);
    }

    // Collect telemetry data about tab load times.
    if (
      aWebProgress.isTopLevel &&
+2 −1
Original line number Diff line number Diff line
@@ -283,5 +283,6 @@
  "TorConnectTopics",
  "gTorConnectUrlbarButton",
  "gTorConnectTitlebarStatus",
  "OnionAuthPrompt"
  "OnionAuthPrompt",
  "OnionLocationParent"
]
+2 −0
Original line number Diff line number Diff line
@@ -449,6 +449,8 @@
                  hidden="true">
              <label id="tor-connect-urlbar-button-label"/>
            </hbox>

#include ../../components/onionservices/content/onionlocation-urlbar.inc.xhtml
          </hbox>
        </hbox>
        <toolbartabstop/>
+9 −0
Original line number Diff line number Diff line
@@ -8,6 +8,15 @@
           noautofocus="true"
           role="alert"/>

    <!-- Shown when visiting first web page with an onion-available header.
       - This allows us to add some extra content to the popup.
       - See tor-browser#21952 and tor-browser#41341 -->
    <popupnotification id="onion-location-notification" hidden="true">
      <popupnotificationcontent orient="vertical">
        <description id="onion-location-body-text"/>
      </popupnotificationcontent>
    </popupnotification>

    <popupnotification id="webRTC-shareDevices-notification" hidden="true"
                       descriptionid="webRTC-shareDevices-notification-description">
      <popupnotificationcontent id="webRTC-selectCamera" orient="vertical">
+13 −0
Original line number Diff line number Diff line
@@ -799,6 +799,19 @@ let JSWINDOWACTORS = {
    messageManagerGroups: ["browsers"],
  },

  OnionLocation: {
    parent: {
      esModuleURI: "resource:///modules/OnionLocationParent.sys.mjs",
    },
    child: {
      esModuleURI: "resource:///modules/OnionLocationChild.sys.mjs",
      events: {
        pageshow: { mozSystemGroup: true },
      },
    },
    messageManagerGroups: ["browsers"],
  },

  PageInfo: {
    child: {
      esModuleURI: "resource:///actors/PageInfoChild.sys.mjs",
Loading