web-api-manager/background_scripts/background.js

139 lines
5.2 KiB
JavaScript
Raw Normal View History

2017-09-12 22:34:25 +00:00
/*jslint es6: true*/
2017-10-14 20:24:18 +00:00
/*global window*/
2017-09-12 22:34:25 +00:00
(function () {
2017-10-14 20:24:18 +00:00
"use strict";
2017-09-12 22:34:25 +00:00
2017-10-14 20:24:18 +00:00
const {packingLib, standards, storageLib, domainMatcherLib} = window.WEB_API_MANAGER;
2017-10-13 22:30:57 +00:00
const rootObject = window.browser || window.chrome;
const defaultKey = "(default)";
2017-09-12 22:34:25 +00:00
2017-10-13 22:30:57 +00:00
// Once loaded from storage, will be a mapping from regular expressions
// (or the default option, "(default)"), to an array of standards
// that should be blocked on matching domains.
let domainRules;
2017-09-12 22:34:25 +00:00
2017-10-14 20:24:18 +00:00
// The extension depends on this fetch happening before the DOM on any
// pages is loaded. The Chrome and Firefox docs *do not* promise this,
// but in testing this is always the case.
2017-10-13 22:30:57 +00:00
storageLib.get(function (loadedDomainRules) {
domainRules = loadedDomainRules;
});
// Manage the state of the browser activity, by displaying the number
// of origins / frames
const updateBrowserActionBadge = function (activeInfo) {
2017-10-14 20:24:18 +00:00
const tabId = activeInfo.tabId;
rootObject.tabs.executeScript(
tabId,
{
allFrames: true,
code: "window.location.host"
},
function (allHosts) {
if (rootObject.runtime.lastError && !allHosts) {
rootObject.browserAction.disable();
rootObject.browserAction.setBadgeText({text: "-"});
return;
}
const numFrames = allHosts
? Array.from(new Set(allHosts)).length.toString()
: "-";
rootObject.browserAction.setBadgeText({
text: numFrames,
tabId: tabId
});
rootObject.browserAction.enable();
}
);
};
2017-09-12 22:34:25 +00:00
rootObject.windows.onFocusChanged.addListener(updateBrowserActionBadge);
rootObject.tabs.onUpdated.addListener(updateBrowserActionBadge);
rootObject.tabs.onActivated.addListener(updateBrowserActionBadge);
window.setInterval(function () {
rootObject.tabs.getCurrent(function (currentTab) {
if (currentTab === undefined) {
return;
}
updateBrowserActionBadge({tabId: currentTab.id});
});
}, 1000);
// Listen for updates to the domain rules from the config page.
// The two types of messages that are sent to the background page are
// "rulesUpdate", which comes from the config page, indicating the domain
// blocking / matching rules have changed, and the "rulesForDomains"
// message, which comes from the browserAction popup, and is a request
// for information about "here are the domains of the frames on the
// current page, which rules are being used to match them".
2017-10-14 20:24:18 +00:00
rootObject.runtime.onMessage.addListener(function (request, ignore, sendResponse) {
const [label, data] = request;
if (label === "rulesUpdate") {
domainRules = data;
return;
}
if (label === "rulesForDomains") {
2017-10-14 20:24:18 +00:00
const matchHostNameBound = domainMatcherLib.matchHostName.bind(undefined, Object.keys(domainRules));
const rulesForDomains = data.map(matchHostNameBound);
const domainToRuleMapping = {};
data.forEach(function (aHostName, index) {
domainToRuleMapping[aHostName] = rulesForDomains[index] || defaultKey;
});
sendResponse(domainToRuleMapping);
return;
}
});
2017-10-13 22:30:57 +00:00
const requestFilter = {
urls: ["<all_urls>"],
types: ["main_frame", "sub_frame"]
2017-09-12 22:34:25 +00:00
};
2017-10-13 22:30:57 +00:00
const requestOptions = ["blocking", "responseHeaders"];
2017-10-14 20:24:18 +00:00
// Inject the blocking settings for each visited domain / frame.
// This needs to be done syncronously, so that the DOM of the visited
// page can be instrumented at "document_start" time. This means we
// can't do any of the "obvious" techniques for loading the "what should"
// be blocked in this frame" information (ie using the storage API).
// So, instead, we halt at the http query point, match the domain being
// loaded against the current rule set, pack the set of standards
// that should be blocked into a base64 encoded bitfield, and then
// push that to the page as a cookie.
//
// The page then reads the information about what standards to block
// out of the cookie (by decoding and unpacking the bitfield), and then
// deletes the cookie, so nothing is left behind.
2017-10-14 20:24:18 +00:00
rootObject.webRequest.onHeadersReceived.addListener(function (details) {
2017-10-13 22:30:57 +00:00
const url = details.url;
// Decide which set of blocking rules to use, depending on the host
// of the URL being requested.
2017-10-14 20:24:18 +00:00
const matchingDomainRule = domainMatcherLib.matchUrl(Object.keys(domainRules), url);
const standardsToBlock = domainRules[matchingDomainRule || defaultKey];
2017-10-13 22:30:57 +00:00
const options = Object.keys(standards);
const packedValues = packingLib.pack(options, standardsToBlock);
details.responseHeaders.push({
name: "Set-Cookie",
value: `web-api-manager=${packedValues}`
});
2017-09-12 22:34:25 +00:00
2017-10-13 22:30:57 +00:00
return {
responseHeaders: details.responseHeaders
};
2017-10-13 22:30:57 +00:00
}, requestFilter, requestOptions);
2017-10-14 20:24:18 +00:00
}());