2015-01-16 13:01:01 +01:00
|
|
|
/* 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/. */
|
2014-08-20 10:21:38 +02:00
|
|
|
(function(){
|
2014-10-14 01:06:11 +02:00
|
|
|
"use strict";
|
2017-06-25 22:33:12 +02:00
|
|
|
|
2017-11-07 00:36:44 +01:00
|
|
|
const settings = require("./settings");
|
2017-07-27 19:14:04 +02:00
|
|
|
const logging = require("./logging");
|
|
|
|
const {error, warning, message, notice, verbose, } = logging;
|
2017-11-07 00:36:44 +01:00
|
|
|
const lists = require("./lists");
|
2017-07-27 19:14:04 +02:00
|
|
|
logging.setPrefix("main script");
|
2017-11-08 17:46:41 +01:00
|
|
|
const persistentRndStorage = require("./persistentRndStorage");
|
2017-07-02 12:21:16 +02:00
|
|
|
|
2017-11-07 00:36:44 +01:00
|
|
|
message("start of background script");
|
|
|
|
message("waiting for settings to be loaded");
|
|
|
|
settings.onloaded(function(){
|
2017-07-27 19:14:04 +02:00
|
|
|
notice("everything loaded");
|
2017-07-07 08:50:23 +02:00
|
|
|
|
2017-11-08 17:46:41 +01:00
|
|
|
persistentRndStorage.init();
|
2017-07-07 08:50:23 +02:00
|
|
|
|
2017-07-27 19:14:04 +02:00
|
|
|
message("register non port message listener");
|
2017-07-07 08:50:23 +02:00
|
|
|
browser.runtime.onMessage.addListener(function(data){
|
2017-07-27 19:14:04 +02:00
|
|
|
notice("got data without port", data);
|
2017-11-08 17:46:41 +01:00
|
|
|
var keys = Object.keys(data);
|
2017-07-07 08:50:23 +02:00
|
|
|
if (data["canvasBlocker-new-domain-rnd"]){
|
2017-11-08 17:46:41 +01:00
|
|
|
persistentRndStorage.setDomainData(
|
|
|
|
data["canvasBlocker-new-domain-rnd"].domain,
|
|
|
|
data["canvasBlocker-new-domain-rnd"].rnd
|
|
|
|
);
|
|
|
|
if (keys.length === 1){
|
|
|
|
return;
|
2017-11-07 00:36:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (data["canvasBlocker-clear-domain-rnd"]){
|
2017-11-08 17:46:41 +01:00
|
|
|
persistentRndStorage.clear();
|
|
|
|
if (keys.length === 1){
|
|
|
|
return;
|
2017-11-07 00:36:44 +01:00
|
|
|
}
|
2017-07-07 08:50:23 +02:00
|
|
|
}
|
2017-07-27 19:14:04 +02:00
|
|
|
notice("pass the message to the tabs");
|
2017-07-02 12:21:16 +02:00
|
|
|
browser.tabs.query({}).then(function(tabs){
|
|
|
|
tabs.forEach(function(tab){
|
2017-07-07 08:50:23 +02:00
|
|
|
browser.tabs.sendMessage(tab.id, data);
|
2017-07-02 12:21:16 +02:00
|
|
|
});
|
|
|
|
});
|
2017-07-07 08:50:23 +02:00
|
|
|
});
|
|
|
|
|
2017-07-27 19:14:04 +02:00
|
|
|
message("register port listener");
|
2017-07-07 08:50:23 +02:00
|
|
|
browser.runtime.onConnect.addListener(function(port){
|
2017-07-27 19:14:04 +02:00
|
|
|
notice("got port", port);
|
|
|
|
verbose("send back the tab id", port.sender.tab.id);
|
2017-11-08 17:46:41 +01:00
|
|
|
verbose("send back the persistent random seeds", persistentRndStorage.persistentRnd);
|
2017-09-23 23:37:46 +02:00
|
|
|
port.postMessage({
|
|
|
|
tabId: port.sender.tab.id,
|
2017-11-08 17:46:41 +01:00
|
|
|
persistentRnd: persistentRndStorage.persistentRnd
|
2017-09-23 23:37:46 +02:00
|
|
|
});
|
2017-07-07 08:50:23 +02:00
|
|
|
var url = new URL(port.sender.url);
|
|
|
|
port.onMessage.addListener(function(data){
|
2017-11-07 00:36:44 +01:00
|
|
|
if (data.hasOwnProperty("canvasBlocker-notify")){
|
2017-07-07 08:50:23 +02:00
|
|
|
if (
|
2017-11-07 00:36:44 +01:00
|
|
|
settings.showNotifications &&
|
2017-07-07 08:50:23 +02:00
|
|
|
!lists.get("ignore").match(url)
|
|
|
|
){
|
|
|
|
browser.pageAction.show(port.sender.tab.id);
|
|
|
|
}
|
2017-11-07 00:36:44 +01:00
|
|
|
}
|
2017-07-27 19:14:04 +02:00
|
|
|
verbose("got data", data, "from port", port);
|
2017-07-07 08:50:23 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-07-27 19:14:04 +02:00
|
|
|
message("register storage change event listener");
|
2017-11-07 00:36:44 +01:00
|
|
|
|
|
|
|
settings.on("showNotifications", function({newValue}){
|
|
|
|
if (!newValue){
|
|
|
|
message("notifications were disabled -> hide all page actions");
|
|
|
|
browser.tabs.query({}).then(function(tabs){
|
|
|
|
tabs.forEach(function(tab){
|
|
|
|
browser.pageAction.hide(tab.id);
|
2017-07-07 08:50:23 +02:00
|
|
|
});
|
2017-11-07 00:36:44 +01:00
|
|
|
});
|
2017-02-10 17:37:35 +01:00
|
|
|
}
|
2017-07-07 08:50:23 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// hide page action when a tab is refreshed
|
|
|
|
browser.tabs.onUpdated.addListener(function(tabId, data){
|
2017-11-07 19:51:49 +01:00
|
|
|
if (data.status && data.status === "loading"){
|
2017-07-07 08:50:23 +02:00
|
|
|
browser.pageAction.hide(tabId);
|
2017-02-01 10:49:33 +01:00
|
|
|
}
|
2017-07-07 08:50:23 +02:00
|
|
|
});
|
2017-02-10 17:37:35 +01:00
|
|
|
});
|
2017-02-01 10:49:33 +01:00
|
|
|
|
2017-07-16 00:12:12 +02:00
|
|
|
browser.runtime.onInstalled.addListener(function(){
|
2017-07-27 19:14:04 +02:00
|
|
|
message("CanvasBlocker installed");
|
2017-07-16 00:12:12 +02:00
|
|
|
});
|
2017-07-07 08:50:23 +02:00
|
|
|
|
2017-07-27 19:14:04 +02:00
|
|
|
message("end");
|
2017-09-24 03:38:44 +02:00
|
|
|
}());
|