mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
Add an about:compat page to the Webcompat GoFaster addon. Differential Revision: https://phabricator.services.mozilla.com/D18303 --HG-- extra : moz-landing-system : lando
92 lines
2.5 KiB
JavaScript
92 lines
2.5 KiB
JavaScript
/* 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/. */
|
|
|
|
"use strict";
|
|
|
|
/* global browser, disableInjection, disableOverride, enableInjection,
|
|
enableOverride, InjectionsEnabled, UAOverridesEnabled */
|
|
|
|
const UAOverrides = [];
|
|
const Injections = [];
|
|
|
|
function getOverrideOrInterventionById(id) {
|
|
for (const [type, things] of Object.entries({
|
|
overrides: UAOverrides,
|
|
interventions: Injections,
|
|
})) {
|
|
for (const what of things) {
|
|
if (what.id === id) {
|
|
return {type, what};
|
|
}
|
|
}
|
|
}
|
|
return {};
|
|
}
|
|
|
|
const portsToAboutCompatTabs = (function() {
|
|
const ports = new Set();
|
|
|
|
browser.runtime.onConnect.addListener(port => {
|
|
ports.add(port);
|
|
port.onDisconnect.addListener(function() {
|
|
ports.delete(port);
|
|
});
|
|
});
|
|
|
|
async function broadcast(message) {
|
|
for (const port of ports) {
|
|
port.postMessage(message);
|
|
}
|
|
}
|
|
|
|
return {broadcast};
|
|
}());
|
|
|
|
function filterOverrides(overrides) {
|
|
return overrides.filter(override => override.availableOnPlatform).map(override => {
|
|
const {id, active, bug, domain} = override;
|
|
return {id, active, bug, domain};
|
|
});
|
|
}
|
|
|
|
browser.runtime.onMessage.addListener(msg => {
|
|
switch (msg.command || msg) {
|
|
case "toggle": {
|
|
const id = msg.id;
|
|
const {type, what} = getOverrideOrInterventionById(id);
|
|
if (!what) {
|
|
return Promise.reject(`No such override or intervention to toggle: ${id}`);
|
|
}
|
|
portsToAboutCompatTabs.broadcast({toggling: id, active: what.active}).then(async () => {
|
|
switch (type) {
|
|
case "interventions": {
|
|
if (what.active) {
|
|
await disableInjection(what);
|
|
} else {
|
|
await enableInjection(what);
|
|
}
|
|
break;
|
|
}
|
|
case "overrides": {
|
|
if (what.active) {
|
|
await disableOverride(what);
|
|
} else {
|
|
await enableOverride(what);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
portsToAboutCompatTabs.broadcast({toggled: id, active: what.active});
|
|
});
|
|
break;
|
|
}
|
|
case "getOverridesAndInterventions": {
|
|
return Promise.resolve({
|
|
overrides: UAOverridesEnabled && filterOverrides(UAOverrides) || false,
|
|
interventions: InjectionsEnabled && filterOverrides(Injections) || false,
|
|
});
|
|
}
|
|
}
|
|
return undefined;
|
|
});
|