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

157 lines
3.4 KiB
JavaScript
Raw Normal View History

2014-08-01 12:03:23 +02:00
function getDomainRegExpList(domainList){
return 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");
}
return {
match: function(url){
if (domain){
return url.hostname.match(regExp);
}
else {
return url.href.match(regExp);
}
}
};
2014-08-01 12:03:23 +02:00
});
}
2014-07-31 03:05:51 +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
// preferences
2014-07-31 03:05:51 +02:00
var whiteList;
2014-08-01 12:03:23 +02:00
function updateWhiteList(){
whiteList = getDomainRegExpList(prefs.whiteList);
}
2014-07-31 03:05:51 +02:00
updateWhiteList();
2014-08-01 12:03:23 +02:00
preferences.on("whiteList", function(){
updateWhiteList();
workers.forEach(checkWorker);
});
2014-07-31 03:05:51 +02:00
2014-08-01 12:03:23 +02:00
var blackList;
function updateBlackList(){
blackList = getDomainRegExpList(prefs.blackList);
2014-07-31 03:05:51 +02:00
}
2014-08-01 12:03:23 +02:00
updateBlackList();
preferences.on("blackList", function(){
2014-08-11 18:05:56 +02:00
updateBlackList();
2014-08-01 12:03:23 +02:00
workers.forEach(checkWorker);
});
2014-07-31 03:05:51 +02:00
2014-08-01 12:03:23 +02:00
var workers = [];
2014-07-31 03:05:51 +02:00
function detachWorker(worker, workerArray) {
var index = workerArray.indexOf(worker);
if (index != -1){
workerArray.splice(index, 1);
}
}
function checkWorker(worker){
2014-08-01 12:03:23 +02:00
if (prefs.blockAll){
2014-07-31 03:05:51 +02:00
worker.port.emit("block");
}
else {
2014-08-01 12:03:23 +02:00
var url = new URL(worker.url);
var inBlackList = blackList.some(function(entry){
return entry.match(url);
2014-08-01 12:03:23 +02:00
});
if (inBlackList){
worker.port.emit("block");
}
else {
var inWhiteList = whiteList.some(function(entry){
return entry.match(url);
2014-08-01 12:03:23 +02:00
});
if (inWhiteList){
worker.port.emit("unblock");
}
else {
if (prefs.askPermission){
if (prefs.askInvisiblePermission){
worker.port.emit("askInvisible");
}
else {
worker.port.emit("ask");
}
2014-08-01 12:03:23 +02:00
}
else {
worker.port.emit("block");
}
}
}
2014-07-31 03:05:51 +02:00
}
}
2014-08-01 12:03:23 +02:00
preferences.on("blockAll", function(){
if (prefs.blockAll){
prefs.askPermission = false;
prefs.askInsiviblePermission = false;
2014-08-01 12:03:23 +02:00
}
2014-07-31 03:05:51 +02:00
workers.forEach(checkWorker);
});
2014-08-01 12:03:23 +02:00
preferences.on("askPermission", function(){
if (prefs.askPermission){
prefs.blockAll = false;
}
else {
prefs.askInvisiblePermission = false;
}
workers.forEach(checkWorker);
});
preferences.on("askInvisiblePermission", function(){
if (prefs.askInvisiblePermission){
prefs.askPermission = true;
prefs.blockAll = false;
}
2014-07-31 03:05:51 +02:00
workers.forEach(checkWorker);
});
2014-08-04 17:02:42 +02:00
preferences.on("allowPDFCanvas", function(){
workers.forEach(checkWorker);
});
2014-07-31 03:05:51 +02:00
pageMod.PageMod({
include: "*",
contentScriptWhen: "start",
contentScriptFile: self.data.url("inject.js"),
onAttach: function(worker){
workers.push(worker);
worker.on("detach", function(){
detachWorker(this, workers);
});
worker.port.on("getTranslation", function(name){
worker.port.emit("setTranslation", name, _.apply(null, arguments));
});
2014-08-04 17:02:42 +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
},
});