Bug 1810718 - Add support for installing an add-on that is enabled in Private Browsing mode. r=webdriver-reviewers,whimboo

Differential Revision: https://phabricator.services.mozilla.com/D229147
This commit is contained in:
Alexandra Borovova 2024-11-18 10:24:54 +00:00
parent ded5faf235
commit 4bb6868042
2 changed files with 50 additions and 21 deletions

View File

@ -6,6 +6,7 @@ const lazy = {};
ChromeUtils.defineESModuleGetters(lazy, { ChromeUtils.defineESModuleGetters(lazy, {
AddonManager: "resource://gre/modules/AddonManager.sys.mjs", AddonManager: "resource://gre/modules/AddonManager.sys.mjs",
ExtensionPermissions: "resource://gre/modules/ExtensionPermissions.sys.mjs",
FileUtils: "resource://gre/modules/FileUtils.sys.mjs", FileUtils: "resource://gre/modules/FileUtils.sys.mjs",
AppInfo: "chrome://remote/content/shared/AppInfo.sys.mjs", AppInfo: "chrome://remote/content/shared/AppInfo.sys.mjs",
@ -31,24 +32,25 @@ const ERRORS = {
"ERROR_UNSUPPORTED_ADDON_TYPE: The add-on type is not supported by the platform.", "ERROR_UNSUPPORTED_ADDON_TYPE: The add-on type is not supported by the platform.",
}; };
async function installAddon(file, temporary) { async function installAddon(file, temporary, allowPrivateBrowsing) {
let addon;
try { try {
if (temporary) { if (temporary) {
return await lazy.AddonManager.installTemporaryAddon(file); addon = await lazy.AddonManager.installTemporaryAddon(file);
} } else {
const install = await lazy.AddonManager.getInstallForFile(file, null, {
source: "internal",
});
const install = await lazy.AddonManager.getInstallForFile(file, null, { if (install == null) {
source: "internal", throw new lazy.error.UnknownError("Unknown error");
}); }
if (install == null) { try {
throw new lazy.error.UnknownError("Unknown error"); addon = await install.install();
} } catch {
throw new lazy.error.UnknownError(ERRORS[install.error]);
try { }
return await install.install();
} catch {
throw new lazy.error.UnknownError(ERRORS[install.error]);
} }
} catch (e) { } catch (e) {
throw new lazy.error.UnknownError( throw new lazy.error.UnknownError(
@ -56,6 +58,17 @@ async function installAddon(file, temporary) {
e e
); );
} }
if (allowPrivateBrowsing) {
const perms = {
permissions: ["internal:privateBrowsingAllowed"],
origins: [],
};
await lazy.ExtensionPermissions.add(addon.id, perms);
await addon.reload();
}
return addon;
} }
/** Installs addons by path and uninstalls by ID. */ /** Installs addons by path and uninstalls by ID. */
@ -70,6 +83,9 @@ export class Addon {
* Base64 string representation of the extension package archive. * Base64 string representation of the extension package archive.
* @param {boolean=} temporary * @param {boolean=} temporary
* True to install the addon temporarily, false (default) otherwise. * True to install the addon temporarily, false (default) otherwise.
* @param {boolean=} allowPrivateBrowsing
* True to install the addon that is enabled in Private Browsing mode,
* false (default) otherwise.
* *
* @returns {Promise.<string>} * @returns {Promise.<string>}
* Addon ID. * Addon ID.
@ -77,7 +93,7 @@ export class Addon {
* @throws {UnknownError} * @throws {UnknownError}
* If there is a problem installing the addon. * If there is a problem installing the addon.
*/ */
static async installWithBase64(base64, temporary = false) { static async installWithBase64(base64, temporary, allowPrivateBrowsing) {
const decodedString = atob(base64); const decodedString = atob(base64);
const fileContent = Uint8Array.from(decodedString, m => m.codePointAt(0)); const fileContent = Uint8Array.from(decodedString, m => m.codePointAt(0));
@ -98,7 +114,7 @@ export class Addon {
let addon; let addon;
try { try {
const file = new lazy.FileUtils.File(path); const file = new lazy.FileUtils.File(path);
addon = await installAddon(file, temporary); addon = await installAddon(file, temporary, allowPrivateBrowsing);
} finally { } finally {
await IOUtils.remove(path); await IOUtils.remove(path);
} }
@ -116,6 +132,9 @@ export class Addon {
* Full path to the extension package archive. * Full path to the extension package archive.
* @param {boolean=} temporary * @param {boolean=} temporary
* True to install the addon temporarily, false (default) otherwise. * True to install the addon temporarily, false (default) otherwise.
* @param {boolean=} allowPrivateBrowsing
* True to install the addon that is enabled in Private Browsing mode,
* false (default) otherwise.
* *
* @returns {Promise.<string>} * @returns {Promise.<string>}
* Addon ID. * Addon ID.
@ -123,7 +142,7 @@ export class Addon {
* @throws {UnknownError} * @throws {UnknownError}
* If there is a problem installing the addon. * If there is a problem installing the addon.
*/ */
static async installWithPath(path, temporary = false) { static async installWithPath(path, temporary, allowPrivateBrowsing) {
let file; let file;
// On Windows we can end up with a path with mixed \ and / // On Windows we can end up with a path with mixed \ and /
@ -142,7 +161,7 @@ export class Addon {
throw new lazy.error.UnknownError(`No such file or directory: ${path}`); throw new lazy.error.UnknownError(`No such file or directory: ${path}`);
} }
const addon = await installAddon(file, temporary); const addon = await installAddon(file, temporary, allowPrivateBrowsing);
return addon.id; return addon.id;
} }

View File

@ -3311,7 +3311,17 @@ GeckoDriver.prototype.quit = async function (cmd) {
}; };
GeckoDriver.prototype.installAddon = function (cmd) { GeckoDriver.prototype.installAddon = function (cmd) {
const { addon = null, path = null, temporary = false } = cmd.parameters; const {
addon = null,
allowPrivateBrowsing = false,
path = null,
temporary = false,
} = cmd.parameters;
lazy.assert.boolean(
allowPrivateBrowsing,
lazy.pprint`Expected "allowPrivateBrowsing" to be a boolean, got ${allowPrivateBrowsing}`
);
lazy.assert.boolean( lazy.assert.boolean(
temporary, temporary,
@ -3330,7 +3340,7 @@ GeckoDriver.prototype.installAddon = function (cmd) {
lazy.pprint`Expected "addon" to be a string, got ${addon}` lazy.pprint`Expected "addon" to be a string, got ${addon}`
); );
return lazy.Addon.installWithBase64(addon, temporary); return lazy.Addon.installWithBase64(addon, temporary, allowPrivateBrowsing);
} }
if (path !== null) { if (path !== null) {
@ -3339,7 +3349,7 @@ GeckoDriver.prototype.installAddon = function (cmd) {
lazy.pprint`Expected "path" to be a string, got ${path}` lazy.pprint`Expected "path" to be a string, got ${path}`
); );
return lazy.Addon.installWithPath(path, temporary); return lazy.Addon.installWithPath(path, temporary, allowPrivateBrowsing);
} }
throw new lazy.error.InvalidArgumentError( throw new lazy.error.InvalidArgumentError(