Merge pull request #1229 from gorhill/chrisaljoudi

Whitelist directives must override strict blocking
This commit is contained in:
Chris Aljoudi 2015-04-10 15:19:21 -06:00
commit b0eed4a555
4 changed files with 98 additions and 20 deletions

View File

@ -150,6 +150,9 @@ vAPI.messaging = {
}, },
close: function() { close: function() {
delete vAPI.messaging.channels[this.channelName]; delete vAPI.messaging.channels[this.channelName];
if ( Object.keys(vAPI.messaging.channels).length === 0 ) {
vAPI.messaging.close();
}
} }
}; };

View File

@ -56,10 +56,36 @@ if ( vAPI.contentscriptEndInjected ) {
} }
vAPI.contentscriptEndInjected = true; vAPI.contentscriptEndInjected = true;
/******************************************************************************/
/******************************************************************************/
var shutdownJobs = (function() {
var jobs = [];
return {
add: function(job) {
jobs.push(job);
},
exec: function() {
//console.debug('Shutting down...');
var job;
while ( job = jobs.pop() ) {
job();
}
}
};
})();
/******************************************************************************/
/******************************************************************************/ /******************************************************************************/
var messager = vAPI.messaging.channel('contentscript-end.js'); var messager = vAPI.messaging.channel('contentscript-end.js');
// https://github.com/gorhill/uMatrix/issues/144
shutdownJobs.add(function() {
messager.close();
});
/******************************************************************************/ /******************************************************************************/
// https://github.com/chrisaljoudi/uBlock/issues/789 // https://github.com/chrisaljoudi/uBlock/issues/789
@ -119,7 +145,14 @@ var uBlockCollapser = (function() {
this.collapse = false; this.collapse = false;
}; };
var onProcessed = function(requests) { var onProcessed = function(response) {
// https://github.com/gorhill/uMatrix/issues/144
if ( response.shutdown ) {
shutdownJobs.exec();
return;
}
var requests = response.result;
if ( requests === null || Array.isArray(requests) === false ) { if ( requests === null || Array.isArray(requests) === false ) {
return; return;
} }
@ -314,24 +347,32 @@ var uBlockCollapser = (function() {
firstRetrieveHandler = null; firstRetrieveHandler = null;
// These are sent only once // These are sent only once
if ( response ) { var result = response && response.result;
if ( response.highGenerics ) { if ( result ) {
highGenerics = response.highGenerics; if ( result.highGenerics ) {
highGenerics = result.highGenerics;
} }
if ( response.donthide ) { if ( result.donthide ) {
processLowGenerics(response.donthide, nullArray); processLowGenerics(result.donthide, nullArray);
} }
} }
nextRetrieveHandler(response); nextRetrieveHandler(response);
}; };
var nextRetrieveHandler = function(selectors) { var nextRetrieveHandler = function(response) {
// https://github.com/gorhill/uMatrix/issues/144
if ( response && response.shutdown ) {
shutdownJobs.exec();
return;
}
//var tStart = timer.now(); //var tStart = timer.now();
//console.debug('µBlock> contextNodes = %o', contextNodes); //console.debug('µBlock> contextNodes = %o', contextNodes);
var result = response && response.result;
var hideSelectors = []; var hideSelectors = [];
if ( selectors && selectors.hide.length ) { if ( result && result.hide.length ) {
processLowGenerics(selectors.hide, hideSelectors); processLowGenerics(result.hide, hideSelectors);
} }
if ( highGenerics ) { if ( highGenerics ) {
if ( highGenerics.hideLowCount ) { if ( highGenerics.hideLowCount ) {
@ -688,6 +729,14 @@ var uBlockCollapser = (function() {
childList: true, childList: true,
subtree: true subtree: true
}); });
// https://github.com/gorhill/uMatrix/issues/144
shutdownJobs.add(function() {
treeObserver.disconnect();
if ( addedNodeListsTimer !== null ) {
clearTimeout(addedNodeListsTimer);
}
});
})(); })();
/******************************************************************************/ /******************************************************************************/
@ -700,12 +749,19 @@ var uBlockCollapser = (function() {
// - Elements dynamically added to the page // - Elements dynamically added to the page
// - Elements which resource URL changes // - Elements which resource URL changes
var onResourceFailed = function(ev) { (function() {
//console.debug('onResourceFailed(%o)', ev); var onResourceFailed = function(ev) {
uBlockCollapser.add(ev.target); //console.debug('onResourceFailed(%o)', ev);
uBlockCollapser.process(); uBlockCollapser.add(ev.target);
}; uBlockCollapser.process();
document.addEventListener('error', onResourceFailed, true); };
document.addEventListener('error', onResourceFailed, true);
// https://github.com/gorhill/uMatrix/issues/144
shutdownJobs.add(function() {
document.removeEventListener('error', onResourceFailed, true);
});
})();
/******************************************************************************/ /******************************************************************************/
/******************************************************************************/ /******************************************************************************/
@ -764,6 +820,11 @@ document.addEventListener('error', onResourceFailed, true);
}; };
window.addEventListener('contextmenu', onContextMenu, true); window.addEventListener('contextmenu', onContextMenu, true);
// https://github.com/gorhill/uMatrix/issues/144
shutdownJobs.add(function() {
document.removeEventListener('contextmenu', onContextMenu, true);
});
})(); })();
/******************************************************************************/ /******************************************************************************/

View File

@ -496,9 +496,12 @@ var onMessage = function(details, sender, callback) {
switch ( details.what ) { switch ( details.what ) {
case 'retrieveGenericCosmeticSelectors': case 'retrieveGenericCosmeticSelectors':
if ( pageStore && pageStore.getGenericCosmeticFilteringSwitch() response = {
&& (!frameStore || frameStore.getNetFilteringSwitch()) ) { shutdown: !pageStore || !pageStore.getNetFilteringSwitch() || (frameStore && !frameStore.getNetFilteringSwitch()),
response = µb.cosmeticFilteringEngine.retrieveGenericSelectors(details); result: null
};
if(pageStore && pageStore.getGenericCosmeticFilteringSwitch()) {
response.result = µb.cosmeticFilteringEngine.retrieveGenericSelectors(details);
} }
break; break;
@ -508,7 +511,13 @@ var onMessage = function(details, sender, callback) {
// Evaluate many requests // Evaluate many requests
case 'filterRequests': case 'filterRequests':
response = filterRequests(pageStore, details); response = {
shutdown: !pageStore || !pageStore.getNetFilteringSwitch(),
result: null
};
if(pageStore) {
response.result = filterRequests(pageStore, details);
}
break; break;
default: default:

View File

@ -199,6 +199,11 @@ var onBeforeRootFrameRequest = function(details) {
var result = ''; var result = '';
// If the site is whitelisted, disregard strict blocking
if ( µb.getNetFilteringSwitch(requestURL) === false ) {
result = 'ua:whitelisted';
}
// Permanently unrestricted? // Permanently unrestricted?
if ( result === '' && µb.hnSwitches.evaluateZ('dontBlockDoc', requestHostname) ) { if ( result === '' && µb.hnSwitches.evaluateZ('dontBlockDoc', requestHostname) ) {
result = 'ua:dontBlockDoc true'; result = 'ua:dontBlockDoc true';
@ -217,7 +222,7 @@ var onBeforeRootFrameRequest = function(details) {
} }
// Filtering // Filtering
if ( result === '' && µb.getNetFilteringSwitch(requestURL) ) { if ( result === '' ) {
result = µb.staticNetFilteringEngine.matchString(context); result = µb.staticNetFilteringEngine.matchString(context);
// https://github.com/chrisaljoudi/uBlock/issues/1128 // https://github.com/chrisaljoudi/uBlock/issues/1128
// Do not block if the match begins after the hostname. // Do not block if the match begins after the hostname.