1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-29 14:42:44 +02:00
CanvasBlocker/lib/main.js

163 lines
3.6 KiB
JavaScript
Raw Normal View History

2014-08-20 10:21:38 +02:00
(function(){
"use strict";
function getDomainRegExpList(domainList){
var list = domainList
.split(",")
.map(function(entry){
return entry.replace(/^\s+|\s+$/g, "");
})
.filter(function(entry){
return !!entry.length;
})
.map(function(entry){
var regExp;
var domain = !!entry.match(/^[\w.]+$/);
if (domain){
regExp = new RegExp("(?:^|\\.)" + entry.replace(/([\\\+\*\?\[\^\]\$\(\)\{\}\=\!\|\.])/g, "\\$1") + "\\.?$", "i")
}
else {
regExp = new RegExp(entry, "i");
}
2014-08-20 10:21:38 +02:00
return {
match: function(url){
if (domain){
return url.hostname.match(regExp);
}
else {
return url.href.match(regExp);
}
}
};
});
list.match = function(url){
return this.some(function(entry){
return entry.match(url);
})
}
return list;
}
2014-08-01 12:03:23 +02:00
2014-08-20 10:21:38 +02:00
var self = require("sdk/self");
var pageMod = require("sdk/page-mod");
var preferences = require("sdk/simple-prefs");
var prefs = preferences.prefs;
var {URL} = require("sdk/url");
var _ = require("sdk/l10n").get;
2014-08-01 12:03:23 +02:00
2014-08-20 10:21:38 +02:00
// preferences
var whiteList;
function updateWhiteList(){
whiteList = getDomainRegExpList(prefs.whiteList);
}
2014-08-01 12:03:23 +02:00
updateWhiteList();
2014-08-20 10:21:38 +02:00
preferences.on("whiteList", function(){
updateWhiteList();
2014-10-04 14:26:05 +02:00
// workers.forEach(checkWorker);
2014-08-20 10:21:38 +02:00
});
2014-07-31 03:05:51 +02:00
2014-08-20 10:21:38 +02:00
var blackList;
function updateBlackList(){
blackList = getDomainRegExpList(prefs.blackList);
}
2014-08-11 18:05:56 +02:00
updateBlackList();
2014-08-20 10:21:38 +02:00
preferences.on("blackList", function(){
updateBlackList();
2014-10-04 14:26:05 +02:00
// workers.forEach(checkWorker);
2014-08-20 10:21:38 +02:00
});
2014-10-04 14:26:05 +02:00
// preferences.on("blockMode", function(){
// workers.forEach(checkWorker);
// });
// preferences.on("allowPDFCanvas", function(){
// workers.forEach(checkWorker);
// });
2014-07-31 03:05:51 +02:00
2014-10-04 14:26:05 +02:00
// var workers = [];
// function detachWorker(worker, workerArray) {
// var index = workerArray.indexOf(worker);
// if (index !== -1){
// workerArray.splice(index, 1);
// }
// }
2014-08-20 10:21:38 +02:00
function checkWorker(worker){
2014-08-01 12:03:23 +02:00
var url = new URL(worker.url);
2014-08-20 10:21:38 +02:00
switch (prefs.blockMode){
case "blockEverything":
worker.port.emit("block");
break;
case "allowOnlyWhiteList":
if (whiteList.match(url)){
worker.port.emit("unblock");
2014-08-01 12:03:23 +02:00
}
else {
worker.port.emit("block");
}
2014-08-20 10:21:38 +02:00
break;
case "askVisible":
if (whiteList.match(url)){
worker.port.emit("unblock");
}
else if (blackList.match(url)){
worker.port.emit("block");
}
else {
worker.port.emit("askVisible");
}
break;
case "askInvisible":
if (whiteList.match(url)){
worker.port.emit("unblock");
}
else if (blackList.match(url)){
worker.port.emit("block");
}
else {
worker.port.emit("askInvisible");
}
break;
case "blockOnlyBlackList":
if (blackList.match(url)){
worker.port.emit("block");
}
else {
worker.port.emit("unblock");
}
break;
case "allowEverything":
worker.port.emit("unblock");
break;
default:
console.log("Unknown blocking mode.");
2014-08-01 12:03:23 +02:00
}
2014-07-31 03:05:51 +02:00
}
2014-08-04 17:02:42 +02:00
2014-08-20 10:21:38 +02:00
pageMod.PageMod({
include: "*",
contentScriptWhen: "start",
contentScriptFile: self.data.url("inject.js"),
onAttach: function(worker){
2014-10-04 14:26:05 +02:00
// workers.push(worker);
// worker.on("detach", function(){
// detachWorker(this, workers);
// });
2014-08-20 10:21:38 +02:00
worker.port.on("isPDF", function(blocking){
if (prefs.allowPDFCanvas){
worker.port.emit("unblock");
}
else {
worker.port.emit(blocking, true);
}
});
worker.port.emit("setTranslation", "askForPermission", _("askForPermission"));
worker.port.emit("setTranslation", "askForInvisiblePermission", _("askForInvisiblePermission"));
checkWorker(worker);
},
});
2014-07-31 03:05:51 +02:00
2014-08-20 10:21:38 +02:00
}());