mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-10 23:28:51 +01:00
159 lines
4.7 KiB
JavaScript
159 lines
4.7 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/. */
|
|
(function(){
|
|
"use strict";
|
|
|
|
const logging = require("./logging");
|
|
const {error, warning, message, notice, verbose, } = logging;
|
|
logging.setPrefix("main script");
|
|
|
|
message("start");
|
|
message("loading storage");
|
|
browser.storage.local.get().then(function(data){
|
|
Object.keys(data).forEach(function(key){
|
|
settings[key] = data[key];
|
|
});
|
|
settings.isStillDefault = false;
|
|
logging.clearQueue();
|
|
return settings;
|
|
}).then(function(settings){
|
|
notice("everything loaded");
|
|
const lists = require("./lists");
|
|
lists.updateAll();
|
|
|
|
notice("build persistent storage");
|
|
var persistentRnd = Object.create(null);
|
|
try {
|
|
let storedData = JSON.parse(settings.persistentRndStorage);
|
|
for (var domain in storedData){
|
|
var value = storedData[domain];
|
|
if (
|
|
Array.isArray(value) &&
|
|
value.length === 128 &&
|
|
value.every(function(value){
|
|
return typeof value === "number" && value >= 0 && value < 256;
|
|
})
|
|
){
|
|
persistentRnd[domain] = value;
|
|
}
|
|
}
|
|
}
|
|
catch(e){
|
|
// JSON is not valid -> ignore it
|
|
}
|
|
|
|
function updateContentScripts(){
|
|
message("update content scripts");
|
|
notice("build settings blob");
|
|
var settingsBlob = new Blob(
|
|
[
|
|
"var settings = " + JSON.stringify(settings) + ";",
|
|
"var persistentRnd = " + JSON.stringify(persistentRnd) + ";"
|
|
],
|
|
{
|
|
type: "text/javascript"
|
|
}
|
|
);
|
|
warning("TODO: register content scripts -> have to wait for the API to be released");
|
|
}
|
|
updateContentScripts();
|
|
|
|
message("register non port message listener");
|
|
browser.runtime.onMessage.addListener(function(data){
|
|
notice("got data without port", data);
|
|
if (data["canvasBlocker-new-domain-rnd"]){
|
|
verbose("got new domain rnd", data["canvasBlocker-new-domain-rnd"]);
|
|
data["canvasBlocker-set-domain-rnd"] = data["canvasBlocker-new-domain-rnd"];
|
|
persistentRnd[data["canvasBlocker-new-domain-rnd"].domain] = data["canvasBlocker-new-domain-rnd"].rnd;
|
|
browser.storage.local.get("storePersistentRnd").then(function(prefs){
|
|
if (prefs.storePersistentRnd){
|
|
browser.storage.local.set({persistentRndStorage: JSON.stringify(persistentRnd)});
|
|
}
|
|
});
|
|
updateContentScripts();
|
|
}
|
|
notice("pass the message to the tabs");
|
|
browser.tabs.query({}).then(function(tabs){
|
|
tabs.forEach(function(tab){
|
|
browser.tabs.sendMessage(tab.id, data);
|
|
});
|
|
});
|
|
});
|
|
|
|
message("register port listener");
|
|
browser.runtime.onConnect.addListener(function(port){
|
|
notice("got port", port);
|
|
verbose("send back the tab id", port.sender.tab.id);
|
|
verbose("send back the persistent random seeds", persistentRnd);
|
|
verbose("send back the settings", settings);
|
|
port.postMessage({
|
|
tabId: port.sender.tab.id,
|
|
persistentRnd: persistentRnd,
|
|
settings: settings
|
|
});
|
|
var url = new URL(port.sender.url);
|
|
port.onMessage.addListener(function(data){
|
|
browser.storage.local.get("showNotifications").then(function(data){
|
|
if (
|
|
(
|
|
!data.hasOwnProperty("showNotifications") ||
|
|
data.showNotifications
|
|
) &&
|
|
!lists.get("ignore").match(url)
|
|
){
|
|
browser.pageAction.show(port.sender.tab.id);
|
|
}
|
|
});
|
|
verbose("got data", data, "from port", port);
|
|
});
|
|
});
|
|
|
|
message("register storage change event listener");
|
|
browser.storage.onChanged.addListener(function(change, area){
|
|
if (area === "local"){
|
|
notice("settings changed", change);
|
|
notice("update settings object");
|
|
Object.keys(change).forEach(function(key){
|
|
settings[key] = change[key].newValue;
|
|
});
|
|
updateContentScripts();
|
|
|
|
if (change.hasOwnProperty("showNotifications") && !change.showNotifications.newValue){
|
|
message("notifications were disabled -> hide all page actions");
|
|
browser.tabs.query({}).then(function(tabs){
|
|
tabs.forEach(function(tab){
|
|
browser.pageAction.hide(tab.id);
|
|
});
|
|
});
|
|
}
|
|
if (change.hasOwnProperty("storePersistentRnd")){
|
|
browser.storage.local.set({
|
|
persistentRndStorage: change.storePersistentRnd.newValue? JSON.stringify(persistentRnd): ""
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
// hide page action when a tab is refreshed
|
|
browser.tabs.onUpdated.addListener(function(tabId, data){
|
|
if (data.status === "loading"){
|
|
browser.pageAction.hide(tabId);
|
|
}
|
|
});
|
|
});
|
|
|
|
browser.runtime.onInstalled.addListener(function(){
|
|
message("CanvasBlocker installed");
|
|
browser.storage.local.get("storageVersion").then(function(data){
|
|
if (data.storageVersion !== 0.1){
|
|
browser.storage.local.set({
|
|
storageVersion: 0.1
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
message("end");
|
|
}());
|