CanvasBlocker/lib/check.js

105 lines
2.4 KiB
JavaScript
Raw Normal View History

2016-02-13 12:28:36 +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/. */
(function(){
"use strict";
2019-11-28 01:26:35 +01:00
let scope;
if ((typeof exports) !== "undefined"){
scope = exports;
}
else {
2019-03-12 22:24:23 +01:00
scope = require.register("./check", {});
}
2017-11-07 00:36:44 +01:00
const settings = require("./settings");
2016-02-13 12:28:36 +01:00
const lists = require("./lists");
const {parseErrorStack} = require("./callingStack");
const logging = require("./logging");
2016-02-13 12:28:36 +01:00
scope.check = function check({url, errorStack}){
url = new URL(url || "about:blank");
2019-11-28 01:26:35 +01:00
const match = checkBoth(errorStack, url, settings.get("blockMode", url)).match(
/^(block|allow|fake|ask)(|Everything|Internal)$/
2017-10-05 19:00:00 +02:00
);
2016-02-13 12:28:36 +01:00
if (match){
return {
url: url,
internal: match[2] === "Internal",
2016-02-13 12:28:36 +01:00
mode: match[1]
};
}
else {
return {
url: url,
internal: false,
2016-02-13 12:28:36 +01:00
mode: "block"
};
}
};
function checkBoth(errorStack, url, blockMode){
if (settings.enableStackList && errorStack && checkStack(errorStack)){
2016-02-13 12:28:36 +01:00
return "allow";
}
else {
return checkURL(url, blockMode);
}
}
function checkURL(url, blockMode){
logging.message("check url %s for block mode %s", url, blockMode);
2016-02-13 12:28:36 +01:00
switch (url.protocol){
case "about:":
2023-04-19 14:34:37 +02:00
if (url.pathname === "blank"){
logging.message("use regular mode on about:blank");
2016-02-13 12:28:36 +01:00
break;
}
logging.message("allow internal URLs");
return "allowInternal";
2016-02-13 12:28:36 +01:00
case "chrome:":
logging.message("allow internal URLs");
return "allowInternal";
2016-02-13 12:28:36 +01:00
}
2019-11-28 01:26:35 +01:00
let mode = "block";
2016-02-13 12:28:36 +01:00
switch (blockMode){
case "blockEverything":
mode = "block";
break;
case "block":
case "ask":
case "fake":
case "allow":
if (url && lists.get("white").match(url)){
mode = "allow";
}
else if (url && lists.get("black").match(url)){
mode = "block";
}
else {
mode = blockMode;
}
break;
case "allowEverything":
mode = "allow";
break;
default:
logging.warning("Unknown blocking mode (" + blockMode + "). Default to block everything.");
2016-02-13 12:28:36 +01:00
}
return mode;
}
function checkStack(errorStack){
if (settings.enableStackList){
const stackList = lists.get("stack");
if (stackList.length){
const callingStack = parseErrorStack(errorStack);
return stackList.match(callingStack);
}
}
return false;
2016-02-13 12:28:36 +01:00
}
scope.checkStack = checkStack;
2016-02-13 12:28:36 +01:00
}());