2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
µBlock - a Chromium browser extension to block requests.
|
|
|
|
Copyright (C) 2014 Raymond Hill
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global chrome, µBlock */
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Start isolation from global scope
|
|
|
|
|
|
|
|
µBlock.webRequest = (function() {
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Intercept and filter web requests according to white and black lists.
|
|
|
|
|
|
|
|
var onBeforeRequestHandler = function(details) {
|
|
|
|
// console.debug('onBeforeRequestHandler()> "%s": %o', details.url, details);
|
|
|
|
|
|
|
|
// Do not block behind the scene requests.
|
2014-06-25 03:46:37 +02:00
|
|
|
var tabId = details.tabId;
|
|
|
|
if ( tabId < 0 ) {
|
2014-06-24 00:42:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-25 03:46:37 +02:00
|
|
|
var µb = µBlock;
|
|
|
|
var requestType = details.type;
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
// Never block root main doc.
|
|
|
|
if ( requestType === 'main_frame' && details.parentFrameId < 0 ) {
|
2014-06-25 03:46:37 +02:00
|
|
|
µb.bindTabToPageStats(tabId, details.url);
|
2014-06-24 00:42:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-27 23:06:42 +02:00
|
|
|
var requestURL = details.url;
|
|
|
|
var µburi = µb.URI.set(details.url);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
// Ignore non-http schemes
|
2014-06-25 03:46:37 +02:00
|
|
|
var requestScheme = µburi.scheme;
|
2014-06-24 00:42:43 +02:00
|
|
|
if ( requestScheme.indexOf('http') !== 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-25 03:46:37 +02:00
|
|
|
var requestHostname = µburi.hostname;
|
|
|
|
var requestPath = µburi.path;
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
// rhill 2013-12-15:
|
|
|
|
// Try to transpose generic `other` category into something more
|
|
|
|
// meaningful.
|
|
|
|
if ( requestType === 'other' ) {
|
|
|
|
requestType = µb.transposeType(requestType, requestPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup the page store associated with this tab id.
|
2014-06-25 03:46:37 +02:00
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId) || {};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
var reason = false;
|
|
|
|
if ( µb.getNetFilteringSwitch(pageStore.pageHostname) ) {
|
2014-06-27 23:06:42 +02:00
|
|
|
//quickProfiler.start('abpFilters.matchString');
|
2014-06-24 00:42:43 +02:00
|
|
|
reason = µb.abpFilters.matchString(pageStore, requestURL, requestType, requestHostname);
|
2014-06-27 23:06:42 +02:00
|
|
|
//quickProfiler.stop();
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2014-06-25 03:46:37 +02:00
|
|
|
// Record what happened.
|
2014-06-27 02:25:01 +02:00
|
|
|
if ( pageStore.recordRequest ) {
|
2014-06-25 03:46:37 +02:00
|
|
|
pageStore.recordRequest(requestType, requestURL, reason);
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-06-25 03:46:37 +02:00
|
|
|
// Not blocked?
|
2014-06-24 00:42:43 +02:00
|
|
|
if ( reason === false ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-25 03:46:37 +02:00
|
|
|
// Blocked
|
2014-06-26 00:44:35 +02:00
|
|
|
//console.debug('µBlock> onBeforeRequestHandler()> BLOCK "%s" because "%s"', details.url, reason);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-06-27 02:20:55 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/18
|
|
|
|
// Do not use redirection, we need to block outright to be sure the request
|
|
|
|
// will not be made. There can be no such guarantee with redirection.
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
return { 'cancel': true };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
chrome.webRequest.onBeforeRequest.addListener(
|
|
|
|
//function(details) {
|
|
|
|
// quickProfiler.start('onBeforeRequest');
|
|
|
|
// var r = onBeforeRequestHandler(details);
|
|
|
|
// quickProfiler.stop();
|
|
|
|
// return r;
|
|
|
|
//},
|
|
|
|
onBeforeRequestHandler,
|
|
|
|
{
|
|
|
|
"urls": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"main_frame",
|
|
|
|
"sub_frame",
|
|
|
|
'stylesheet',
|
|
|
|
"script",
|
|
|
|
"image",
|
|
|
|
"object",
|
|
|
|
"xmlhttprequest",
|
|
|
|
"other"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
[ "blocking" ]
|
|
|
|
);
|
|
|
|
|
|
|
|
console.log('µBlock> Beginning to intercept net requests at %s', (new Date()).toISOString());
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|