[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/mullvad-browser][mullvad-browser-115.8.0esr-13.5-1] fixup! Bug 40926: Implemented the New Identity feature



Title: GitLab

ma1 pushed to branch mullvad-browser-115.8.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser

Commits:

  • 822f5b8b
    by hackademix at 2024-03-05T10:46:19+01:00
    fixup! Bug 40926: Implemented the New Identity feature
    
    Bug 42236: Let users decide whether to load their home page on new identity.
    

2 changed files:

Changes:

  • browser/components/newidentity/content/newidentity.js
    ... ... @@ -10,37 +10,28 @@ XPCOMUtils.defineLazyGetter(this, "NewIdentityStrings", () => {
    10 10
       );
    
    11 11
       const brandShortName = brandBundle.GetStringFromName("brandShortName");
    
    12 12
     
    
    13
    -  let strings = {
    
    14
    -    new_identity: "New Identity",
    
    15
    -    new_identity_sentence_case: "New identity",
    
    16
    -    new_identity_prompt_title: "Reset your identity?",
    
    17
    -    new_identity_prompt: `${brandShortName} will close all windows and tabs. All website sessions will be lost. \nRestart ${brandShortName} now to reset your identity?`,
    
    18
    -    new_identity_restart: `Restart ${brandShortName}`,
    
    19
    -    new_identity_ask_again: "Never ask me again",
    
    20
    -    new_identity_menu_accesskey: "I",
    
    21
    -  };
    
    22
    -  let bundle = null;
    
    13
    +  const fallbackBundle = Services.strings.createBundle(
    
    14
    +    "resource:///chrome/en-US/locale/browser/newIdentity.properties"
    
    15
    +  );
    
    16
    +  const strings = {};
    
    17
    +  const brandedStrings = ["new_identity_prompt", "new_identity_restart"];
    
    18
    +  for (let { key } of fallbackBundle.getSimpleEnumeration()) {
    
    19
    +    strings[key] = fallbackBundle.GetStringFromName(key);
    
    20
    +  }
    
    23 21
       try {
    
    24
    -    bundle = Services.strings.createBundle(
    
    22
    +    const bundle = Services.strings.createBundle(
    
    25 23
           "chrome://browser/locale/newIdentity.properties"
    
    26 24
         );
    
    27
    -  } catch (e) {
    
    28
    -    console.warn("Could not load the New Identity strings");
    
    29
    -  }
    
    30
    -  if (bundle) {
    
    31 25
         for (const key of Object.keys(strings)) {
    
    32 26
           try {
    
    33 27
             strings[key] = bundle.GetStringFromName(key);
    
    34 28
           } catch (e) {}
    
    35 29
         }
    
    36
    -    strings.new_identity_prompt = strings.new_identity_prompt.replaceAll(
    
    37
    -      "%S",
    
    38
    -      brandShortName
    
    39
    -    );
    
    40
    -    strings.new_identity_restart = strings.new_identity_restart.replaceAll(
    
    41
    -      "%S",
    
    42
    -      brandShortName
    
    43
    -    );
    
    30
    +  } catch (e) {
    
    31
    +    console.warn("Could not load localized New Identity strings");
    
    32
    +  }
    
    33
    +  for (let key of brandedStrings) {
    
    34
    +    strings[key] = strings[key].replaceAll("%S", brandShortName);
    
    44 35
       }
    
    45 36
       return strings;
    
    46 37
     });
    
    ... ... @@ -437,10 +428,76 @@ XPCOMUtils.defineLazyGetter(this, "NewIdentityButton", () => {
    437 428
           logger.info("Opening a new window");
    
    438 429
           return new Promise(resolve => {
    
    439 430
             // Open a new window forcing the about:privatebrowsing page (tor-browser#41765)
    
    440
    -        const win = OpenBrowserWindow({private: "no-home"});
    
    431
    +        // unless user explicitly overrides this policy (tor-browser #42236)
    
    432
    +        const homePref = "browser.startup.homepage";
    
    433
    +        const trustedHomePref = "browser.startup.homepage.new_identity";
    
    434
    +        const homeURL = Services.prefs.getStringPref(homePref, "");
    
    435
    +        const isTrustedHome =
    
    436
    +          homeURL === "about:tor" ||
    
    437
    +          homeURL.startsWith("chrome://") || // about:blank and other built-ins
    
    438
    +          homeURL === Services.prefs.getStringPref(trustedHomePref, "");
    
    439
    +        const isCustomHome =
    
    440
    +          Services.prefs.getIntPref("browser.startup.page") === 1;
    
    441
    +        const win = OpenBrowserWindow({
    
    442
    +          private: isCustomHome && isTrustedHome ? "private" : "no-home",
    
    443
    +        });
    
    441 444
             // This mechanism to know when the new window is ready is used by
    
    442 445
             // OpenBrowserWindow itself (see its definition in browser.js).
    
    443
    -        win.addEventListener("MozAfterPaint", () => resolve(), { once: true });
    
    446
    +        win.addEventListener(
    
    447
    +          "MozAfterPaint",
    
    448
    +          () => {
    
    449
    +            resolve();
    
    450
    +            if (isTrustedHome || !isCustomHome) {
    
    451
    +              return;
    
    452
    +            }
    
    453
    +            const tbl = win.TabsProgressListener;
    
    454
    +            const { onLocationChange } = tbl;
    
    455
    +            tbl.onLocationChange = (...args) => {
    
    456
    +              tbl.onLocationChange = onLocationChange;
    
    457
    +              tbl.onLocationChange(...args);
    
    458
    +              let displayAddress;
    
    459
    +              try {
    
    460
    +                const url = new URL(homeURL);
    
    461
    +                displayAddress = url.hostname;
    
    462
    +                if (!displayAddress) {
    
    463
    +                  // no host, use full address and truncate if too long
    
    464
    +                  const MAX_LEN = 32;
    
    465
    +                  displayAddress = url.href;
    
    466
    +                  if (displayAddress.length > MAX_LEN) {
    
    467
    +                    displayAddress = `${displayAddress.substring(0, MAX_LEN)}…`;
    
    468
    +                  }
    
    469
    +                }
    
    470
    +              } catch (e) {
    
    471
    +                // malformed URL, bail out
    
    472
    +                return;
    
    473
    +              }
    
    474
    +              const label =
    
    475
    +                NewIdentityStrings.new_identity_home_notification.replace(
    
    476
    +                  "%S",
    
    477
    +                  displayAddress
    
    478
    +                );
    
    479
    +              const callback = () => {
    
    480
    +                Services.prefs.setStringPref(trustedHomePref, homeURL);
    
    481
    +                win.BrowserHome();
    
    482
    +              };
    
    483
    +              const notificationBox = win.gBrowser.getNotificationBox();
    
    484
    +              notificationBox.appendNotification(
    
    485
    +                "new-identity-safe-home",
    
    486
    +                {
    
    487
    +                  label,
    
    488
    +                  priority: notificationBox.PRIORITY_INFO_MEDIUM,
    
    489
    +                },
    
    490
    +                [
    
    491
    +                  {
    
    492
    +                    label: NewIdentityStrings.new_identity_home_load_button,
    
    493
    +                    callback,
    
    494
    +                  },
    
    495
    +                ]
    
    496
    +              );
    
    497
    +            };
    
    498
    +          },
    
    499
    +          { once: true }
    
    500
    +        );
    
    444 501
           });
    
    445 502
         }
    
    446 503
     
    

  • browser/locales/en-US/chrome/browser/newIdentity.properties
    ... ... @@ -8,3 +8,6 @@ new_identity_restart = Restart %S
    8 8
     new_identity_ask_again = Never ask me again
    
    9 9
     # Shown in the File menu (use Alt to show File, if you do not see)
    
    10 10
     new_identity_menu_accesskey = I
    
    11
    +new_identity_home_notification = Tor Browser blocked your homepage (%S) from loading because it might recognize your previous session.
    
    12
    +# %S is replaced with the custom homepage URL's domain if applicable, or some short-hand of it otherwise
    
    13
    +new_identity_home_load_button  = Load it anyway

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits