mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
181 lines
5.9 KiB
JavaScript
181 lines
5.9 KiB
JavaScript
/*******************************************************************************
|
|
|
|
µ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 */
|
|
|
|
/*******************************************************************************
|
|
|
|
A PageRequestStore object is used to store net requests in two ways:
|
|
|
|
To record distinct net requests
|
|
To create a log of net requests
|
|
|
|
**/
|
|
|
|
/******************************************************************************/
|
|
/******************************************************************************/
|
|
|
|
µBlock.PageStore = (function() {
|
|
|
|
/******************************************************************************/
|
|
|
|
var µb = µBlock;
|
|
var pageStoreJunkyard = [];
|
|
|
|
/******************************************************************************/
|
|
|
|
var pageStoreFactory = function(tabId, pageURL) {
|
|
var entry = pageStoreJunkyard.pop();
|
|
if ( entry ) {
|
|
return entry.init(tabId, pageURL);
|
|
}
|
|
return new PageStore(tabId, pageURL);
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
function PageStore(tabId, pageURL) {
|
|
this.init(tabId, pageURL);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
PageStore.prototype.init = function(tabId, pageURL) {
|
|
this.tabId = tabId;
|
|
this.previousPageURL = '';
|
|
this.pageURL = pageURL;
|
|
this.pageHostname = µb.URI.hostnameFromURI(pageURL);
|
|
this.pageDomain = µb.URI.domainFromHostname(this.pageHostname);
|
|
this.perLoadBlockedRequestCount = 0;
|
|
this.perLoadAllowedRequestCount = 0;
|
|
this.blockedRequests = {};
|
|
this.allowedRequests = {};
|
|
this.disposeTime = 0;
|
|
return this;
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
PageStore.prototype.reuse = function(pageURL) {
|
|
this.previousPageURL = this.pageURL;
|
|
this.pageURL = pageURL;
|
|
this.pageHostname = µb.URI.hostnameFromURI(pageURL);
|
|
this.pageDomain = µb.URI.domainFromHostname(this.pageHostname);
|
|
this.perLoadBlockedRequestCount = 0;
|
|
this.perLoadAllowedRequestCount = 0;
|
|
this.blockedRequests = {};
|
|
this.allowedRequests = {};
|
|
this.disposeTime = 0;
|
|
return this;
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
PageStore.prototype.dispose = function() {
|
|
// rhill 2013-11-07: Even though at init time these are reset, I still
|
|
// need to release the memory taken by these, which can amount to
|
|
// sizeable enough chunks (especially requests, through the request URL
|
|
// used as a key).
|
|
this.pageURL = '';
|
|
this.pageHostname = '';
|
|
this.pageDomain = '';
|
|
if ( pageStoreJunkyard.length < 8 ) {
|
|
pageStoreJunkyard.push(this);
|
|
}
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
PageStore.prototype.recordRequest = function(type, url, reason) {
|
|
var blocked = reason !== false && reason.slice(0, 2) !== '@@';
|
|
|
|
if ( !blocked ) {
|
|
this.perLoadAllowedRequestCount++;
|
|
µb.localSettings.allowedRequestCount++;
|
|
if ( µb.userSettings.logAllowedRequests ) {
|
|
this.allowedRequests[url] = type + '\t' + (reason || '');
|
|
}
|
|
return;
|
|
}
|
|
|
|
µb.updateBadgeAsync(this.tabId);
|
|
|
|
this.perLoadBlockedRequestCount++;
|
|
µb.localSettings.blockedRequestCount++;
|
|
|
|
// https://github.com/gorhill/uBlock/issues/7
|
|
// https://github.com/gorhill/uBlock/issues/12
|
|
|
|
// No need to record blocked requests which are not image or frame, as
|
|
// these are the only ones we try to hide when they are blocked.
|
|
if ( µb.userSettings.logBlockedRequests === false ) {
|
|
if ( type === 'image' || type === 'sub_frame' ) {
|
|
this.blockedRequests[url] = true;
|
|
}
|
|
return;
|
|
}
|
|
this.blockedRequests[url] = type + '\t' + reason;
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
// Update badge, incrementally
|
|
|
|
// rhill 2013-11-09: well this sucks, I can't update icon/badge
|
|
// incrementally, as chromium overwrites the icon at some point without
|
|
// notifying me, and this causes internal cached state to be out of sync.
|
|
|
|
PageStore.prototype.updateBadge = function() {
|
|
// https://github.com/gorhill/uBlock/issues/19
|
|
// TODO: need to check with µb object to see whether tab still exists.
|
|
|
|
var netFilteringSwitch = µb.getNetFilteringSwitch(this.pageHostname);
|
|
var iconPath = netFilteringSwitch ? 'img/browsericons/icon19.png' : 'img/browsericons/icon19-off.png';
|
|
|
|
chrome.browserAction.setIcon({ tabId: this.tabId, path: iconPath });
|
|
|
|
var iconStr = '';
|
|
if ( µb.userSettings.showIconBadge && netFilteringSwitch && this.perLoadBlockedRequestCount ) {
|
|
iconStr = µb.formatCount(this.perLoadBlockedRequestCount);
|
|
}
|
|
chrome.browserAction.setBadgeText({
|
|
tabId: this.tabId,
|
|
text: iconStr
|
|
});
|
|
|
|
if ( iconStr !== '' ) {
|
|
chrome.browserAction.setBadgeBackgroundColor({
|
|
tabId: this.tabId,
|
|
color: '#666'
|
|
});
|
|
}
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
return {
|
|
factory: pageStoreFactory
|
|
};
|
|
|
|
})();
|
|
|
|
/******************************************************************************/
|