/* 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/. */ const DEFAULT_TAB = "about:newtab"; const backgroundLogic = { NEW_TAB_PAGES: new Set([ "about:startpage", "about:newtab", "about:home", "about:blank" ]), NUMBER_OF_KEYBOARD_SHORTCUTS: 10, unhideQueue: [], init() { browser.commands.onCommand.addListener(function (command) { for (let i=0; i < backgroundLogic.NUMBER_OF_KEYBOARD_SHORTCUTS; i++) { const key = "open_container_" + i; const cookieStoreId = identityState.keyboardShortcut[key]; if (command === key) { if (cookieStoreId === "none") return; browser.tabs.create({cookieStoreId}); } } }); browser.permissions.onAdded.addListener(permissions => this.resetPermissions(permissions)); browser.permissions.onRemoved.addListener(permissions => this.resetPermissions(permissions)); }, resetPermissions(permissions) { permissions.permissions.forEach(async permission => { switch (permission) { case "bookmarks": assignManager.resetBookmarksMenuItem(); break; case "nativeMessaging": await MozillaVPN_Background.removeMozillaVpnProxies(); await browser.runtime.reload(); break; case "proxy": assignManager.maybeAddProxyListeners(); break; } }); }, async getExtensionInfo() { const manifestPath = browser.runtime.getURL("manifest.json"); const response = await fetch(manifestPath); const extensionInfo = await response.json(); return extensionInfo; }, getUserContextIdFromCookieStoreId(cookieStoreId) { if (!cookieStoreId) { return false; } const container = cookieStoreId.replace("firefox-container-", ""); if (container !== cookieStoreId) { return container; } return false; }, async deleteContainer(userContextId, removed = false) { await this._closeTabs(userContextId); if (!removed) { await browser.contextualIdentities.remove(this.cookieStoreId(userContextId)); } assignManager.deleteContainer(userContextId); // Now remove the identity->proxy association in proxifiedContainers also proxifiedContainers.delete(this.cookieStoreId(userContextId)); return {done: true, userContextId}; }, async createOrUpdateContainer(options) { if (options.userContextId !== "new") { return await browser.contextualIdentities.update( this.cookieStoreId(options.userContextId), options.params ); } return await browser.contextualIdentities.create(options.params); }, async openNewTab(options) { let url = options.url || undefined; const userContextId = ("userContextId" in options) ? options.userContextId : 0; const active = ("nofocus" in options) ? options.nofocus : true; const discarded = ("noload" in options) ? options.noload : false; const cookieStoreId = backgroundLogic.cookieStoreId(userContextId); // Autofocus url bar will happen in 54: https://bugzilla.mozilla.org/show_bug.cgi?id=1295072 // We can't open new tab pages, so open a blank tab. Used in tab un-hide if (this.NEW_TAB_PAGES.has(url)) { url = undefined; } if (!this.isPermissibleURL(url)) { return; } return browser.tabs.create({ url, active, discarded, pinned: options.pinned || false, cookieStoreId }); }, isPermissibleURL(url) { const protocol = new URL(url).protocol; // We can't open these we just have to throw them away if (protocol === "about:" || protocol === "chrome:" || protocol === "moz-extension:") { return false; } return true; }, checkArgs(requiredArguments, options, methodName) { requiredArguments.forEach((argument) => { if (!(argument in options)) { return new Error(`${methodName} must be called with ${argument} argument.`); } }); }, async getTabs(options) { const requiredArguments = ["cookieStoreId", "windowId"]; this.checkArgs(requiredArguments, options, "getTabs"); const { cookieStoreId, windowId } = options; const list = []; const tabs = await browser.tabs.query({ cookieStoreId, windowId }); tabs.forEach((tab) => { list.push(identityState._createTabObject(tab)); }); const containerState = await identityState.storageArea.get(cookieStoreId); return list.concat(containerState.hiddenTabs); }, async unhideContainer(cookieStoreId, alreadyShowingUrl) { if (!this.unhideQueue.includes(cookieStoreId)) { this.unhideQueue.push(cookieStoreId); await this.showTabs({ cookieStoreId, alreadyShowingUrl }); this.unhideQueue.splice(this.unhideQueue.indexOf(cookieStoreId), 1); } }, // https://github.com/mozilla/multi-account-containers/issues/847 async addRemoveSiteIsolation(cookieStoreId, remove = false) { const containerState = await identityState.storageArea.get(cookieStoreId); try { if ("isIsolated" in containerState || remove) { delete containerState.isIsolated; } else { containerState.isIsolated = "locked"; } return await identityState.storageArea.set(cookieStoreId, containerState); } catch (error) { // console.error(`No container: ${cookieStoreId}`); } }, async moveTabsToWindow(options) { const requiredArguments = ["cookieStoreId", "windowId"]; this.checkArgs(requiredArguments, options, "moveTabsToWindow"); const { cookieStoreId, windowId } = options; const list = await browser.tabs.query({ cookieStoreId, windowId }); const containerState = await identityState.storageArea.get(cookieStoreId); // Nothing to do if (list.length === 0 && containerState.hiddenTabs.length === 0) { return; } let newWindowObj; let hiddenDefaultTabToClose; if (list.length) { newWindowObj = await browser.windows.create(); // Pin the default tab in the new window so existing pinned tabs can be moved after it. // From the docs (https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/tabs/move): // Note that you can't move pinned tabs to a position after any unpinned tabs in a window, or move any unpinned tabs to a position before any pinned tabs. await browser.tabs.update(newWindowObj.tabs[0].id, { pinned: true }); browser.tabs.move(list.map((tab) => tab.id), { windowId: newWindowObj.id, index: -1 }); } else { // As we get a blank tab here we will need to await the tabs creation newWindowObj = await browser.windows.create({ }); hiddenDefaultTabToClose = true; } const showHiddenPromises = []; // Let's show the hidden tabs. if (!this.unhideQueue.includes(cookieStoreId)) { this.unhideQueue.push(cookieStoreId); for (let object of containerState.hiddenTabs) { // eslint-disable-line prefer-const showHiddenPromises.push(browser.tabs.create({ url: object.url || DEFAULT_TAB, windowId: newWindowObj.id, cookieStoreId })); } } if (hiddenDefaultTabToClose) { // Lets wait for hidden tabs to show before closing the others await showHiddenPromises; } containerState.hiddenTabs = []; // Let's close all the normal tab in the new window. In theory it // should be only the first tab, but maybe there are addons doing // crazy stuff. const tabs = await browser.tabs.query({windowId: newWindowObj.id}); for (let tab of tabs) { // eslint-disable-line prefer-const if (tab.cookieStoreId !== cookieStoreId) { browser.tabs.remove(tab.id); } } const rv = await identityState.storageArea.set(cookieStoreId, containerState); this.unhideQueue.splice(this.unhideQueue.indexOf(cookieStoreId), 1); return rv; }, async _closeTabs(userContextId, windowId = false) { const cookieStoreId = this.cookieStoreId(userContextId); let tabs; /* if we have no windowId we are going to close all this container (used for deleting) */ if (windowId !== false) { tabs = await browser.tabs.query({ cookieStoreId, windowId }); } else { tabs = await browser.tabs.query({ cookieStoreId }); } const tabIds = tabs.map((tab) => tab.id); return browser.tabs.remove(tabIds); }, async backupIdentitiesState() { const identities = await browser.contextualIdentities.query({}); return Promise.all( identities.map(async ({ cookieStoreId, color, icon, name }) => { const userContextId = this.getUserContextIdFromCookieStoreId(cookieStoreId); const [ { isIsolated }, sitesByContainer ] = await Promise.all([ identityState.storageArea.get(cookieStoreId), assignManager.storageArea.getAssignedSites(userContextId) ]); const sites = Object.values(sitesByContainer).map(({ neverAsk, hostname }) => ({ neverAsk, hostname })); return ({ color, icon, name, isolated: isIsolated && true, // either `true` or `undefined` sites }); }) ); }, async restoreIdentitiesState(identities) { const backup = await browser.contextualIdentities.query({}); const incomplete = []; let allSucceed = true; const identitiesPromise = identities.map(async ({ color, icon, name, isolated, sites }) => { try { if ( typeof color !== "string" || typeof icon !== "string" || typeof name !== "string" || (isolated !== true && isolated !== undefined) || !Array.isArray((sites)) ) throw new Error("Corrupted container backup"); const identity = await browser.contextualIdentities.create({ color, icon, name }); try { await identityState.storageArea.get(identity.cookieStoreId); // to create identity state const userContextId = this.getUserContextIdFromCookieStoreId(identity.cookieStoreId); for (const { neverAsk, hostname } of sites) { if (typeof neverAsk !== "boolean" || typeof hostname !== "string" || hostname === "") throw new Error("Corrupted site association"); const pageUrl = `http://${hostname}`; // protocol doesn't really matter here await assignManager.storageArea.set(pageUrl, { neverAsk, userContextId }); } if (isolated) await identityState.storageArea.set(identity.cookieStoreId, { isIsolated: "locked" }); } catch (err) { incomplete.push(name); // site association damaged } return identity; } catch (err) { allSucceed = false; return null; } }); const created = await Promise.all(identitiesPromise); if (!allSucceed) { // Importation failed, restore previous state await Promise.all( created.map(async (identityOrNull) => { if (identityOrNull) { await identityState.storageArea.remove(identityOrNull.cookieStoreId); await browser.contextualIdentities.remove(identityOrNull.cookieStoreId); } }) ); throw new Error("Some containers couldn't be created"); } // Importation succeed, remove old identities await Promise.all( backup.map(async (identity) => { await identityState.storageArea.remove(identity.cookieStoreId); await browser.contextualIdentities.remove(identity.cookieStoreId); }) ); return { created: created.length, incomplete }; }, async queryIdentitiesState(windowId) { const identities = await browser.contextualIdentities.query({}); const identitiesOutput = {}; const identitiesPromise = identities.map(async (identity) => { const { cookieStoreId } = identity; const containerState = await identityState.storageArea.get(cookieStoreId); const openTabs = await browser.tabs.query({ cookieStoreId, windowId }); identitiesOutput[cookieStoreId] = { hasHiddenTabs: !!containerState.hiddenTabs.length, hasOpenTabs: !!openTabs.length, numberOfHiddenTabs: containerState.hiddenTabs.length, numberOfOpenTabs: openTabs.length, isIsolated: !!containerState.isIsolated }; return; }); await Promise.all(identitiesPromise); return identitiesOutput; }, async sortTabs() { const windows = await browser.windows.getAll(); for (let windowObj of windows) { // eslint-disable-line prefer-const // First the pinned tabs, then the normal ones. await this._sortTabsInternal(windowObj, true); await this._sortTabsInternal(windowObj, false); } }, async _sortTabsInternal(windowObj, pinnedTabs) { const tabs = await browser.tabs.query({windowId: windowObj.id}); let pos = 0; // Let's collect UCIs/tabs for this window. const map = new Map; for (const tab of tabs) { if (pinnedTabs && !tab.pinned) { // We don't have, or we already handled all the pinned tabs. break; } if (!pinnedTabs && tab.pinned) { // pinned tabs must be consider as taken positions. ++pos; continue; } if (!map.has(tab.cookieStoreId)) { const userContextId = backgroundLogic.getUserContextIdFromCookieStoreId(tab.cookieStoreId); map.set(tab.cookieStoreId, { order: userContextId, tabs: [] }); } map.get(tab.cookieStoreId).tabs.push(tab); } const containerOrderStorage = await browser.storage.local.get([CONTAINER_ORDER_STORAGE_KEY]); const containerOrder = containerOrderStorage && containerOrderStorage[CONTAINER_ORDER_STORAGE_KEY]; if (containerOrder) { map.forEach((obj, key) => { obj.order = (key in containerOrder) ? containerOrder[key] : -1; }); } // Let's sort the map. const sortMap = new Map([...map.entries()].sort((a, b) => a[1].order > b[1].order)); // Let's move tabs. sortMap.forEach(obj => { for (const tab of obj.tabs) { ++pos; browser.tabs.move(tab.id, { windowId: windowObj.id, index: pos }); } }); }, async hideTabs(options) { const requiredArguments = ["cookieStoreId", "windowId"]; this.checkArgs(requiredArguments, options, "hideTabs"); const { cookieStoreId, windowId } = options; const userContextId = backgroundLogic.getUserContextIdFromCookieStoreId(cookieStoreId); const containerState = await identityState.storeHidden(cookieStoreId, windowId); await this._closeTabs(userContextId, windowId); return containerState; }, async showTabs(options) { if (!("cookieStoreId" in options)) { return Promise.reject("showTabs must be called with cookieStoreId argument."); } const userContextId = backgroundLogic.getUserContextIdFromCookieStoreId(options.cookieStoreId); const promises = []; const containerState = await identityState.storageArea.get(options.cookieStoreId); for (let object of containerState.hiddenTabs) { // eslint-disable-line prefer-const // do not show already opened url const noload = !object.pinned; if (object.url !== options.alreadyShowingUrl) { promises.push(this.openNewTab({ userContextId: userContextId, url: object.url, nofocus: options.nofocus || false, noload: noload, pinned: object.pinned, })); } } containerState.hiddenTabs = []; await Promise.all(promises); return identityState.storageArea.set(options.cookieStoreId, containerState); }, cookieStoreId(userContextId) { if(userContextId === 0) return "firefox-default"; return `firefox-container-${userContextId}`; } }; backgroundLogic.init();