uBlock/src/js/popup.js

608 lines
19 KiB
JavaScript
Raw Normal View History

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 vAPI, uDom */
2014-07-07 03:52:16 +02:00
2014-06-24 00:42:43 +02:00
/******************************************************************************/
(function() {
2014-11-24 15:48:33 +01:00
'use strict';
2014-06-24 00:42:43 +02:00
/******************************************************************************/
var popupData;
var dfPaneBuilt = false;
2014-12-30 22:36:29 +01:00
var popupHeight;
var reIP = /^\d+(?:\.\d+){1,3}$/;
2015-02-04 15:03:34 +01:00
var reSrcHostnameFromRule = /^d[abn]:([^ ]+) ([^ ]+) ([^ ]+)/;
2014-12-30 22:36:29 +01:00
var scopeToSrcHostnameMap = {
'/': '*',
'.': ''
};
var threePlus = '+++';
var threeMinus = '';
2014-12-30 22:36:29 +01:00
var sixSpace = '\u2007\u2007\u2007\u2007\u2007\u2007';
var dfHotspots = null;
var hostnameToSortableTokenMap = {};
2015-01-07 01:51:50 +01:00
var allDomains = {};
var allDomainCount = 0;
2015-02-06 23:42:09 +01:00
var allDomainRows = [];
2015-01-07 01:51:50 +01:00
var touchedDomainCount = 0;
2015-01-10 17:23:28 +01:00
var rowsToRecycle = uDom();
var cachedPopupHash = '';
2015-02-06 23:42:09 +01:00
var orStr = vAPI.i18n('popupOr');
var domainsHitStr = vAPI.i18n('popupHitDomainCountPrompt');
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// https://github.com/gorhill/httpswitchboard/issues/345
var messager = vAPI.messaging.channel('popup.js');
2014-12-30 22:36:29 +01:00
/******************************************************************************/
var cachePopupData = function(data) {
popupData = {};
scopeToSrcHostnameMap['.'] = '';
hostnameToSortableTokenMap = {};
2015-01-07 01:51:50 +01:00
if ( typeof data !== 'object' ) {
return popupData;
2014-12-25 14:53:30 +01:00
}
popupData = data;
scopeToSrcHostnameMap['.'] = popupData.pageHostname || '';
var hostnameDict = popupData.hostnameDict;
2015-01-07 01:51:50 +01:00
if ( typeof hostnameDict !== 'object' ) {
return popupData;
}
var domain, prefix;
for ( var hostname in hostnameDict ) {
if ( hostnameDict.hasOwnProperty(hostname) === false ) {
continue;
}
2015-01-07 01:51:50 +01:00
domain = hostnameDict[hostname].domain;
if ( domain === popupData.pageDomain ) {
domain = '\u0020';
}
prefix = hostname.slice(0, 0 - domain.length);
hostnameToSortableTokenMap[hostname] = domain + prefix.split('.').reverse().join('.');
2014-12-30 22:36:29 +01:00
}
return popupData;
2014-12-30 22:36:29 +01:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2015-01-10 17:23:28 +01:00
var hashFromPopupData = function(reset) {
2015-01-24 18:06:22 +01:00
// It makes no sense to offer to refresh the behind-the-scene scope
if ( popupData.pageHostname === 'behind-the-scene' ) {
uDom('body').toggleClass('dirty', false);
return;
}
2015-01-10 17:23:28 +01:00
var hasher = [];
var rules = popupData.dynamicFilterRules;
var rule;
for ( var key in rules ) {
if ( rules.hasOwnProperty(key) === false ) {
continue;
}
rule = rules[key];
if ( rule !== '' ) {
hasher.push(rule);
}
2014-06-24 07:20:59 +02:00
}
2015-01-10 17:23:28 +01:00
hasher.push(uDom('#switch').hasClass('off'));
var hash = hasher.sort().join('');
if ( reset ) {
cachedPopupHash = hash;
}
uDom('body').toggleClass('dirty', hash !== cachedPopupHash);
};
/******************************************************************************/
var formatNumber = function(count) {
return typeof count === 'number' ? count.toLocaleString() : '';
2014-06-24 07:20:59 +02:00
};
/******************************************************************************/
2014-12-30 22:36:29 +01:00
var rulekeyCompare = function(a, b) {
var ha = a.slice(2, a.indexOf(' ', 2));
if ( !reIP.test(ha) ) {
ha = hostnameToSortableTokenMap[ha] || '';
2014-12-30 22:36:29 +01:00
}
var hb = b.slice(2, b.indexOf(' ', 2));
if ( !reIP.test(hb) ) {
hb = hostnameToSortableTokenMap[hb] || '';
2014-12-30 22:36:29 +01:00
}
return ha.localeCompare(hb);
};
/******************************************************************************/
var addDynamicFilterRow = function(des) {
2015-01-10 17:23:28 +01:00
var row = rowsToRecycle.pop();
if ( row.length === 0 ) {
row = uDom('#templates > div:nth-of-type(1)').clone();
}
2014-12-30 22:36:29 +01:00
row.descendants('[data-des]').attr('data-des', des);
2015-01-14 23:45:55 +01:00
row.descendants('span:nth-of-type(1)').text(punycode.toUnicode(des));
2014-12-30 22:36:29 +01:00
var hnDetails = popupData.hostnameDict[des] || {};
2015-01-10 17:23:28 +01:00
row.toggleClass('isDomain', des === hnDetails.domain);
row.toggleClass('allowed', hnDetails.allowCount !== 0);
row.toggleClass('blocked', hnDetails.blockCount !== 0);
2014-12-30 22:36:29 +01:00
row.appendTo('#dynamicFilteringContainer');
// Hacky? I couldn't figure a CSS recipe for this problem.
// I do not want the left pane -- optional and hidden by defaut -- to
2014-12-25 14:53:30 +01:00
// dictate the height of the popup. The right pane dictates the height
// of the popup, and the left pane will have a scrollbar if ever its
2014-12-30 22:36:29 +01:00
// height is larger than what is available.
if ( popupHeight === undefined ) {
popupHeight = uDom('#panes > div:nth-of-type(1)').nodeAt(0).offsetHeight;
uDom('#panes > div:nth-of-type(2)').css('height', popupHeight + 'px');
2014-12-30 22:36:29 +01:00
}
return row;
};
/******************************************************************************/
2015-01-10 17:23:28 +01:00
var updateDynamicFilterCell = function(scope, des, type, rule) {
2014-12-30 22:36:29 +01:00
var selector = '#dynamicFilteringContainer span[data-src="' + scope + '"][data-des="' + des + '"][data-type="' + type + '"]';
var cell = uDom(selector);
2015-01-10 17:23:28 +01:00
// This should not happen
2014-12-30 22:36:29 +01:00
if ( cell.length === 0 ) {
2015-01-10 17:23:28 +01:00
return;
2014-12-30 22:36:29 +01:00
}
cell.removeClass();
2015-01-10 17:23:28 +01:00
var action = rule.charAt(1);
if ( action !== '' ) {
cell.toggleClass(action + 'Rule', true);
}
2014-10-27 17:14:57 +01:00
2014-12-30 22:36:29 +01:00
// Use dark shade visual cue if the filter is specific to the cell.
var ownRule = false;
2015-01-10 17:23:28 +01:00
var matches = reSrcHostnameFromRule.exec(rule);
if ( matches !== null ) {
2015-02-04 18:51:43 +01:00
ownRule = (matches[2] !== '*' || matches[3] === type) &&
(matches[2] === des) &&
(matches[1] === scopeToSrcHostnameMap[scope]);
2014-10-27 17:14:57 +01:00
}
cell.toggleClass('ownRule', ownRule);
2014-12-30 22:36:29 +01:00
2015-02-04 15:03:34 +01:00
if ( scope !== '.' || des === '*' ) {
2014-12-30 22:36:29 +01:00
return;
}
if ( popupData.hostnameDict.hasOwnProperty(des) === false ) {
2014-12-30 22:36:29 +01:00
return;
}
var hnDetails = popupData.hostnameDict[des];
2015-01-01 13:29:28 +01:00
var aCount = hnDetails.allowCount;
var bCount = hnDetails.blockCount;
if ( aCount === 0 && bCount === 0 ) {
return;
}
2015-01-11 14:31:38 +01:00
// https://github.com/gorhill/uBlock/issues/471
aCount = Math.min(Math.ceil(Math.log(aCount + 1) / Math.LN10), 3);
bCount = Math.min(Math.ceil(Math.log(bCount + 1) / Math.LN10), 3);
// IMPORTANT: It is completely assumed the first node is a TEXT_NODE, so
// ensure this in the HTML file counterpart when you make
// changes
cell.nodeAt(0).firstChild.nodeValue = threePlus.slice(0, aCount) +
sixSpace.slice(aCount + bCount) +
threeMinus.slice(0, bCount);
2014-10-06 20:02:44 +02:00
};
/******************************************************************************/
2015-01-10 17:23:28 +01:00
var updateAllDynamicFilters = function() {
var rules = popupData.dynamicFilterRules;
2015-01-10 17:23:28 +01:00
for ( var key in rules ) {
2015-01-10 17:44:37 +01:00
if ( rules.hasOwnProperty(key) === false ) {
continue;
}
2015-01-10 17:23:28 +01:00
updateDynamicFilterCell(
key.charAt(0),
key.slice(2, key.indexOf(' ', 2)),
key.slice(key.lastIndexOf(' ') + 1),
rules[key]
);
}
};
/******************************************************************************/
var buildAllDynamicFilters = function() {
// Do this before removing the rows
if ( dfHotspots === null ) {
dfHotspots = uDom('#actionSelector').on('click', 'span', setDynamicFilterHandler);
2014-12-30 22:36:29 +01:00
}
2015-01-10 17:23:28 +01:00
dfHotspots.detach();
// Remove and reuse all rows: the order may have changed, we can't just
// reuse them in-place.
2015-02-06 23:42:09 +01:00
rowsToRecycle = uDom('#dynamicFilteringContainer > div:nth-of-type(7) ~ div').detach();
var n = allDomainRows.length;
for ( var i = 0; i < n; i++ ) {
addDynamicFilterRow(allDomainRows[i]);
}
if ( dfPaneBuilt !== true ) {
uDom('#dynamicFilteringContainer')
.on('click', 'span[data-src]', unsetDynamicFilterHandler)
.on('mouseenter', '[data-src]', mouseenterCellHandler)
.on('mouseleave', '[data-src]', mouseleaveCellHandler);
dfPaneBuilt = true;
}
updateAllDynamicFilters();
};
2015-01-10 17:23:28 +01:00
2015-02-06 23:42:09 +01:00
/******************************************************************************/
var renderPrivacyExposure = function() {
2015-01-10 17:23:28 +01:00
allDomains = {};
allDomainCount = touchedDomainCount = 0;
2015-02-06 23:42:09 +01:00
allDomainRows = [];
2014-12-30 22:36:29 +01:00
// Sort hostnames. First-party hostnames must always appear at the top
// of the list.
2015-01-10 17:23:28 +01:00
var desHostnameDone = {};
var keys = Object.keys(popupData.dynamicFilterRules)
.sort(rulekeyCompare);
2015-02-06 23:42:09 +01:00
var key, des, hnDetails;
2014-12-30 22:36:29 +01:00
for ( var i = 0; i < keys.length; i++ ) {
key = keys[i];
2015-01-10 17:23:28 +01:00
des = key.slice(2, key.indexOf(' ', 2));
2015-02-04 15:03:34 +01:00
// Specific-type rules -- these are built-in
if ( des === '*' || desHostnameDone.hasOwnProperty(des) ) {
2015-01-10 17:23:28 +01:00
continue;
}
2015-02-06 23:42:09 +01:00
hnDetails = popupData.hostnameDict[des] || {};
if ( allDomains.hasOwnProperty(hnDetails.domain) === false ) {
allDomains[hnDetails.domain] = false;
allDomainCount += 1;
}
if ( hnDetails.allowCount !== 0 ) {
if ( allDomains[hnDetails.domain] === false ) {
allDomains[hnDetails.domain] = true;
touchedDomainCount += 1;
}
}
allDomainRows.push(des);
2015-01-10 17:23:28 +01:00
desHostnameDone[des] = true;
2014-10-06 20:02:44 +02:00
}
2014-12-30 22:36:29 +01:00
2015-02-06 23:42:09 +01:00
var summary = domainsHitStr.replace('{{count}}', touchedDomainCount.toLocaleString())
.replace('{{total}}', allDomainCount.toLocaleString());
uDom('#privacyExposure').text(summary);
2014-10-06 20:02:44 +02:00
};
/******************************************************************************/
2015-01-10 17:23:28 +01:00
// Assume everything has to be done incrementally.
var renderPopup = function() {
uDom('#appname').text(popupData.appName);
uDom('#version').text(popupData.appVersion);
uDom('body').toggleClass('advancedUser', popupData.advancedUserEnabled);
2015-01-24 18:06:22 +01:00
uDom('#switch').toggleClass(
'off',
(popupData.pageURL === '') ||
(!popupData.netFilteringSwitch) ||
(popupData.pageHostname === 'behind-the-scene' && !popupData.advancedUserEnabled)
);
2015-01-10 17:23:28 +01:00
2015-01-21 17:13:32 +01:00
// If you think the `=== true` is pointless, you are mistaken
uDom('#gotoLog').toggleClass('enabled', popupData.canRequestLog === true)
.attr('href', 'devtools.html?tabId=' + popupData.tabId);
uDom('#gotoPick').toggleClass('enabled', popupData.canElementPicker === true);
2014-07-02 18:02:29 +02:00
var blocked = popupData.pageBlockedRequestCount;
var total = popupData.pageAllowedRequestCount + blocked;
2015-02-06 23:42:09 +01:00
var text = [];
2014-06-24 00:42:43 +02:00
if ( total === 0 ) {
2015-02-06 23:42:09 +01:00
text.push('0');
2014-06-24 00:42:43 +02:00
} else {
2015-02-06 23:42:09 +01:00
text.push(
2014-06-24 07:20:59 +02:00
formatNumber(blocked),
2015-02-06 23:42:09 +01:00
'\u00a0', orStr, '\u00a0',
formatNumber(Math.floor(blocked * 100 / total)), '%'
2014-07-02 18:02:29 +02:00
);
2014-06-24 00:42:43 +02:00
}
2015-02-06 23:42:09 +01:00
uDom('#page-blocked').text(text.join(''));
2014-06-24 00:42:43 +02:00
blocked = popupData.globalBlockedRequestCount;
total = popupData.globalAllowedRequestCount + blocked;
2015-02-06 23:42:09 +01:00
text = [];
2014-06-24 00:42:43 +02:00
if ( total === 0 ) {
2015-02-06 23:42:09 +01:00
text.push('0');
2014-06-24 00:42:43 +02:00
} else {
2015-02-06 23:42:09 +01:00
text.push(
2014-06-24 07:20:59 +02:00
formatNumber(blocked),
2015-02-06 23:42:09 +01:00
'\u00a0', orStr, '\u00a0',
formatNumber(Math.floor(blocked * 100 / total)), '%'
2014-07-02 18:02:29 +02:00
);
2014-06-24 00:42:43 +02:00
}
2015-02-06 23:42:09 +01:00
uDom('#total-blocked').text(text.join(''));
// This will collate all domains, touched or not
renderPrivacyExposure();
2014-06-24 00:42:43 +02:00
2015-01-10 17:23:28 +01:00
// https://github.com/gorhill/uBlock/issues/470
// This must be done here, to be sure the popup is resized properly
var dfPaneVisible = popupData.dfEnabled && popupData.advancedUserEnabled;
uDom('#panes').toggleClass('dfEnabled', dfPaneVisible);
// Build dynamic filtering pane only if in use
2015-01-10 17:23:28 +01:00
if ( dfPaneVisible ) {
buildAllDynamicFilters();
}
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
2014-08-02 17:40:27 +02:00
var toggleNetFilteringSwitch = function(ev) {
if ( !popupData || !popupData.pageURL ) {
2014-06-24 00:42:43 +02:00
return;
}
2015-01-24 18:06:22 +01:00
if ( popupData.pageHostname === 'behind-the-scene' && !popupData.advancedUserEnabled ) {
return;
}
messager.send({
2014-06-24 00:42:43 +02:00
what: 'toggleNetFiltering',
url: popupData.pageURL,
2014-08-02 17:40:27 +02:00
scope: ev.ctrlKey || ev.metaKey ? 'page' : '',
state: !uDom(this).toggleClass('off').hasClass('off'),
tabId: popupData.tabId
2014-06-24 00:42:43 +02:00
});
2015-01-10 17:23:28 +01:00
hashFromPopupData();
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
2014-07-13 02:32:44 +02:00
var gotoPick = function() {
messager.send({
2014-07-13 02:32:44 +02:00
what: 'gotoPick',
tabId: popupData.tabId
2014-07-13 02:32:44 +02:00
});
2014-12-25 14:53:30 +01:00
vAPI.closePopup();
2014-07-13 02:32:44 +02:00
};
/******************************************************************************/
2014-12-25 14:53:30 +01:00
var gotoURL = function(ev) {
2014-12-28 21:26:06 +01:00
if ( this.hasAttribute('href') === false) {
return;
}
ev.preventDefault();
messager.send({
what: 'gotoURL',
details: {
2014-12-25 14:53:30 +01:00
url: this.getAttribute('href'),
select: true,
index: -1
}
});
2014-12-25 14:53:30 +01:00
vAPI.closePopup();
2014-07-02 18:02:29 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2015-01-10 17:23:28 +01:00
var toggleDynamicFiltering = function() {
if ( popupData.advancedUserEnabled === false ) {
return;
}
popupData.dfEnabled = !popupData.dfEnabled;
2015-01-10 17:23:28 +01:00
messager.send({
what: 'userSettings',
name: 'dynamicFilteringEnabled',
value: popupData.dfEnabled
2015-01-10 17:23:28 +01:00
});
// Dynamic filtering pane may not have been built yet
uDom('#panes').toggleClass('dfEnabled', popupData.dfEnabled);
if ( popupData.dfEnabled && dfPaneBuilt === false ) {
buildAllDynamicFilters();
}
};
/******************************************************************************/
var mouseenterCellHandler = function() {
if ( uDom(this).hasClass('ownRule') === false ) {
dfHotspots.appendTo(this);
}
};
var mouseleaveCellHandler = function() {
dfHotspots.detach();
};
/******************************************************************************/
var setDynamicFilter = function(src, des, type, action) {
// This can happen on pages where uBlock does not work
if ( typeof popupData.pageHostname !== 'string' || popupData.pageHostname === '' ) {
return;
}
var onDynamicFilterChanged = function(response) {
cachePopupData(response);
2015-01-10 17:23:28 +01:00
updateAllDynamicFilters();
hashFromPopupData();
2014-10-06 20:02:44 +02:00
};
messager.send({
2014-10-06 20:02:44 +02:00
what: 'toggleDynamicFilter',
tabId: popupData.tabId,
pageHostname: popupData.pageHostname,
srcHostname: src,
desHostname: des,
requestType: type,
action: action
2014-10-06 20:02:44 +02:00
}, onDynamicFilterChanged);
};
/******************************************************************************/
var unsetDynamicFilterHandler = function() {
var cell = uDom(this);
setDynamicFilter(
cell.attr('data-src') === '/' ? '*' : popupData.pageHostname,
cell.attr('data-des'),
cell.attr('data-type'),
0
);
dfHotspots.appendTo(cell);
};
/******************************************************************************/
var setDynamicFilterHandler = function() {
var hotspot = uDom(this);
var cell = hotspot.ancestors('[data-src]');
if ( cell.length === 0 ) {
return;
}
var action = 0;
var hotspotId = hotspot.attr('id');
if ( hotspotId === 'dynaAllow' ) {
action = 2;
} else if ( hotspotId === 'dynaNoop' ) {
2015-01-10 17:44:37 +01:00
action = 3;
} else {
action = 1;
}
setDynamicFilter(
cell.attr('data-src') === '/' ? '*' : popupData.pageHostname,
cell.attr('data-des'),
cell.attr('data-type'),
action
);
dfHotspots.detach();
2014-10-06 20:02:44 +02:00
};
/******************************************************************************/
2015-01-10 17:23:28 +01:00
var reloadTab = function() {
messager.send({ what: 'reloadTab', tabId: popupData.tabId });
2015-01-10 17:23:28 +01:00
// Polling will take care of refreshing the popup content
};
/******************************************************************************/
// Poll for changes.
//
// I couldn't find a better way to be notified of changes which can affect
// popup content, as the messaging API doesn't support firing events accurately
// from the main extension process to a specific auxiliary extension process:
//
// - broadcasting() is not an option given there could be a lot of tabs opened,
2014-12-25 14:53:30 +01:00
// and maybe even many frames within these tabs, i.e. unacceptable overhead
2015-01-10 17:32:24 +01:00
// regardless of whether the popup is opened or not.
2015-01-10 17:23:28 +01:00
//
// - Modifying the messaging API is not an option, as this would require
// revisiting all platform-specific code to support targeted broadcasting,
// which who knows could be not so trivial for some platforms.
//
2014-12-25 14:53:30 +01:00
// A well done polling is a better anyways IMO, I prefer that data is pulled
2015-01-10 17:32:24 +01:00
// on demand rather than forcing the main process to assume a client may need
// it and thus having to push it all the time unconditionally.
2015-01-10 17:23:28 +01:00
var pollForContentChange = (function() {
var pollTimer = null;
var pollCallback = function() {
pollTimer = null;
messager.send(
{
what: 'hasPopupContentChanged',
tabId: popupData.tabId,
contentLastModified: popupData.contentLastModified
},
queryCallback
);
};
var queryCallback = function(response) {
if ( response ) {
getPopupData();
return;
}
poll();
};
var poll = function() {
if ( pollTimer !== null ) {
return;
}
2015-01-10 17:23:28 +01:00
pollTimer = setTimeout(pollCallback, 1500);
};
return poll;
})();
/******************************************************************************/
var getPopupData = function() {
var onDataReceived = function(response) {
cachePopupData(response);
renderPopup();
2015-01-10 17:23:28 +01:00
hashFromPopupData(true);
pollForContentChange();
};
messager.send({ what: 'getPopupData' }, onDataReceived);
};
/******************************************************************************/
// Make menu only when popup html is fully loaded
uDom.onLoad(function() {
getPopupData();
uDom('#switch').on('click', toggleNetFilteringSwitch);
2014-07-13 02:32:44 +02:00
uDom('#gotoPick').on('click', gotoPick);
2014-12-25 14:53:30 +01:00
uDom('a[href]').on('click', gotoURL);
2015-02-06 23:42:09 +01:00
uDom('h2').on('click', toggleDynamicFiltering);
2015-01-10 17:23:28 +01:00
uDom('#refresh').on('click', reloadTab);
2014-06-24 00:42:43 +02:00
});
/******************************************************************************/
})();