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
|
|
|
|
|
*/
|
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
|
/* 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 stats;
|
2014-12-30 22:36:29 +01:00
|
|
|
|
var dynaTypes = [
|
|
|
|
|
'image',
|
|
|
|
|
'inline-script',
|
|
|
|
|
'1p-script',
|
|
|
|
|
'3p-script',
|
|
|
|
|
'3p-frame'
|
|
|
|
|
];
|
|
|
|
|
var popupHeight;
|
|
|
|
|
var reIP = /^\d+(?:\.\d+){1,3}$/;
|
|
|
|
|
var reSrcHostnameFromResult = /^d[abn]:([^ ]+) ([^ ]+)/;
|
|
|
|
|
var touchedDomains = {};
|
|
|
|
|
var scopeToSrcHostnameMap = {
|
|
|
|
|
'/': '*',
|
|
|
|
|
'.': ''
|
|
|
|
|
};
|
|
|
|
|
var threePlus = '+++';
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var threeMinus = '−−−';
|
2014-12-30 22:36:29 +01:00
|
|
|
|
var sixSpace = '\u2007\u2007\u2007\u2007\u2007\u2007';
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var dynaHotspots = null;
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
// https://github.com/gorhill/httpswitchboard/issues/345
|
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
|
var messager = vAPI.messaging.channel('popup.js');
|
|
|
|
|
|
2014-12-30 22:36:29 +01:00
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var cachePopupData = function(data) {
|
|
|
|
|
if ( data ) {
|
|
|
|
|
stats = data;
|
|
|
|
|
scopeToSrcHostnameMap['.'] = data.pageHostname || '';
|
|
|
|
|
}
|
|
|
|
|
return data;
|
|
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-07-07 03:52:16 +02:00
|
|
|
|
var formatNumber = function(count) {
|
2014-06-24 07:20:59 +02:00
|
|
|
|
if ( typeof count !== 'number' ) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
2014-07-07 21:59:26 +02:00
|
|
|
|
return 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 = ha.split('.').reverse().join('.').replace(reRulekeyCompareNoise, '~');
|
|
|
|
|
}
|
|
|
|
|
var hb = b.slice(2, b.indexOf(' ', 2));
|
|
|
|
|
if ( !reIP.test(hb) ) {
|
|
|
|
|
hb = hb.split('.').reverse().join('.').replace(reRulekeyCompareNoise, '~');
|
|
|
|
|
}
|
|
|
|
|
return ha.localeCompare(hb);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var reRulekeyCompareNoise = /[^a-z0-9.]/g;
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var addDynamicFilterRow = function(des) {
|
|
|
|
|
var row = uDom('#templates > div:nth-of-type(1)').clone();
|
|
|
|
|
row.descendants('[data-des]').attr('data-des', des);
|
|
|
|
|
row.descendants('div > span:nth-of-type(1)').text(des);
|
|
|
|
|
|
|
|
|
|
var hnDetails = stats.hostnameDict[des] || {};
|
|
|
|
|
var isDomain = des === hnDetails.domain;
|
|
|
|
|
row.toggleClass('isDomain', isDomain);
|
|
|
|
|
if ( hnDetails.allowCount !== 0 ) {
|
|
|
|
|
touchedDomains[hnDetails.domain] = true;
|
2014-12-31 16:47:19 +01:00
|
|
|
|
row.addClass('wasTouched');
|
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
|
|
|
|
|
// 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
|
|
|
|
|
// height is larger than what is available.
|
|
|
|
|
if ( popupHeight === undefined ) {
|
|
|
|
|
popupHeight = uDom('body > div:nth-of-type(2)').nodeAt(0).offsetHeight;
|
|
|
|
|
uDom('body > div:nth-of-type(1)').css('height', popupHeight + 'px');
|
|
|
|
|
}
|
|
|
|
|
return row;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var syncDynamicFilterCell = function(scope, des, type, result) {
|
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);
|
|
|
|
|
|
|
|
|
|
// Create the row?
|
|
|
|
|
if ( cell.length === 0 ) {
|
|
|
|
|
cell = addDynamicFilterRow(des).descendants(selector);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-31 16:47:19 +01:00
|
|
|
|
cell.removeClass();
|
|
|
|
|
var action = result.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.
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var ownRule = false;
|
2014-12-30 22:36:29 +01:00
|
|
|
|
var matches = reSrcHostnameFromResult.exec(result);
|
2014-12-28 16:07:43 +01:00
|
|
|
|
if ( matches !== null ) {
|
2014-12-31 16:47:19 +01:00
|
|
|
|
ownRule = matches[2] === des &&
|
2014-12-30 22:36:29 +01:00
|
|
|
|
matches[1] === scopeToSrcHostnameMap[scope];
|
2014-10-27 17:14:57 +01:00
|
|
|
|
}
|
2014-12-31 16:47:19 +01:00
|
|
|
|
cell.toggleClass('ownRule', ownRule);
|
2014-12-30 22:36:29 +01:00
|
|
|
|
|
|
|
|
|
if ( scope !== '.' || type !== '*' ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( stats.hostnameDict.hasOwnProperty(des) === false ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var hnDetails = stats.hostnameDict[des];
|
|
|
|
|
var aCount = Math.min(Math.ceil(Math.log10(hnDetails.allowCount + 1)), 3);
|
|
|
|
|
var bCount = Math.min(Math.ceil(Math.log10(hnDetails.blockCount + 1)), 3);
|
2014-12-31 16:47:19 +01:00
|
|
|
|
// 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
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var syncAllDynamicFilters = function() {
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var hasRule = false;
|
2014-12-30 22:36:29 +01:00
|
|
|
|
var rules = stats.dynamicFilterRules;
|
|
|
|
|
var type, result;
|
|
|
|
|
var types = dynaTypes;
|
|
|
|
|
var i = types.length;
|
|
|
|
|
while ( i-- ) {
|
|
|
|
|
type = types[i];
|
2014-12-31 16:47:19 +01:00
|
|
|
|
syncDynamicFilterCell('/', '*', type, rules['/ * ' + type] || '');
|
2014-12-30 22:36:29 +01:00
|
|
|
|
result = rules['. * ' + type] || '';
|
2014-12-31 16:47:19 +01:00
|
|
|
|
if ( result.charAt(1) !== '' ) {
|
|
|
|
|
hasRule = true;
|
2014-10-06 20:02:44 +02:00
|
|
|
|
}
|
2014-12-31 16:47:19 +01:00
|
|
|
|
syncDynamicFilterCell('.', '*', type, result);
|
2014-12-30 22:36:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Sort hostnames. First-party hostnames must always appear at the top
|
|
|
|
|
// of the list.
|
|
|
|
|
var keys = Object.keys(rules).sort(rulekeyCompare);
|
|
|
|
|
var key;
|
|
|
|
|
for ( var i = 0; i < keys.length; i++ ) {
|
|
|
|
|
key = keys[i];
|
|
|
|
|
// Specific-type rules -- they were processed above
|
|
|
|
|
if ( key.slice(-1) !== '*' ) {
|
|
|
|
|
continue;
|
2014-10-06 20:02:44 +02:00
|
|
|
|
}
|
2014-12-31 16:47:19 +01:00
|
|
|
|
syncDynamicFilterCell(key.charAt(0), key.slice(2, key.indexOf(' ', 2)), '*', rules[key]);
|
2014-10-06 20:02:44 +02:00
|
|
|
|
}
|
2014-12-30 22:36:29 +01:00
|
|
|
|
|
|
|
|
|
uDom('#privacyInfo > b').text(Object.keys(touchedDomains).length);
|
2014-10-06 20:02:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-12-01 17:25:33 +01:00
|
|
|
|
var renderPopup = function(details) {
|
2014-12-30 22:36:29 +01:00
|
|
|
|
if ( !cachePopupData(details) ) {
|
2014-06-24 00:42:43 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
|
|
2014-12-01 17:25:33 +01:00
|
|
|
|
var hdr = uDom('#version');
|
|
|
|
|
hdr.nodes[0].previousSibling.textContent = details.appName;
|
|
|
|
|
hdr.html(hdr.html() + 'v' + details.appVersion);
|
|
|
|
|
|
2014-07-25 21:09:59 +02:00
|
|
|
|
var isHTTP = /^https?:\/\/[0-9a-z]/.test(stats.pageURL);
|
2014-07-13 21:44:35 +02:00
|
|
|
|
|
|
|
|
|
// Conditions for request log:
|
|
|
|
|
// - `http` or `https` scheme
|
|
|
|
|
// - logging of requests enabled
|
2014-07-02 22:52:57 +02:00
|
|
|
|
uDom('#gotoLog').toggleClass(
|
|
|
|
|
'enabled',
|
2014-09-14 22:20:40 +02:00
|
|
|
|
isHTTP && stats.logRequests
|
2014-07-02 22:52:57 +02:00
|
|
|
|
);
|
2014-07-13 21:44:35 +02:00
|
|
|
|
|
|
|
|
|
// Conditions for element picker:
|
|
|
|
|
// - `http` or `https` scheme
|
2014-07-13 02:32:44 +02:00
|
|
|
|
uDom('#gotoPick').toggleClass(
|
|
|
|
|
'enabled',
|
2014-07-13 21:44:35 +02:00
|
|
|
|
isHTTP
|
2014-07-13 02:32:44 +02:00
|
|
|
|
);
|
2014-07-02 18:02:29 +02:00
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
|
var or = vAPI.i18n('popupOr');
|
2014-06-24 00:42:43 +02:00
|
|
|
|
var blocked = stats.pageBlockedRequestCount;
|
|
|
|
|
var total = stats.pageAllowedRequestCount + blocked;
|
2014-07-02 18:02:29 +02:00
|
|
|
|
var html = [];
|
2014-06-24 00:42:43 +02:00
|
|
|
|
if ( total === 0 ) {
|
2014-07-02 18:02:29 +02:00
|
|
|
|
html.push('0');
|
2014-06-24 00:42:43 +02:00
|
|
|
|
} else {
|
2014-07-02 18:02:29 +02:00
|
|
|
|
html.push(
|
2014-06-24 07:20:59 +02:00
|
|
|
|
formatNumber(blocked),
|
2014-07-18 16:57:11 +02:00
|
|
|
|
'<span class="dim"> ',
|
|
|
|
|
or,
|
|
|
|
|
' ',
|
2014-09-05 21:59:47 +02:00
|
|
|
|
formatNumber(Math.floor(blocked * 100 / total)),
|
2014-06-24 07:20:59 +02:00
|
|
|
|
'%</span>'
|
2014-07-02 18:02:29 +02:00
|
|
|
|
);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
|
uDom('#page-blocked').html(html.join(''));
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
blocked = stats.globalBlockedRequestCount;
|
|
|
|
|
total = stats.globalAllowedRequestCount + blocked;
|
2014-07-02 18:02:29 +02:00
|
|
|
|
html = [];
|
2014-06-24 00:42:43 +02:00
|
|
|
|
if ( total === 0 ) {
|
2014-07-02 18:02:29 +02:00
|
|
|
|
html.push('0');
|
2014-06-24 00:42:43 +02:00
|
|
|
|
} else {
|
2014-07-02 18:02:29 +02:00
|
|
|
|
html.push(
|
2014-06-24 07:20:59 +02:00
|
|
|
|
formatNumber(blocked),
|
2014-07-18 16:57:11 +02:00
|
|
|
|
'<span class="dim"> ',
|
|
|
|
|
or,
|
|
|
|
|
' ',
|
2014-09-05 21:59:47 +02:00
|
|
|
|
formatNumber(Math.floor(blocked * 100 / total)),
|
2014-06-24 07:20:59 +02:00
|
|
|
|
'%</span>'
|
2014-07-02 18:02:29 +02:00
|
|
|
|
);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-06 20:02:44 +02:00
|
|
|
|
syncAllDynamicFilters();
|
|
|
|
|
|
|
|
|
|
uDom('#total-blocked').html(html.join(''));
|
|
|
|
|
uDom('#switch .fa').toggleClass('off', stats.pageURL === '' || !stats.netFilteringSwitch);
|
2014-12-28 16:07:43 +01:00
|
|
|
|
uDom('body').toggleClass('dynamicFilteringEnabled', stats.dynamicFilteringEnabled);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-08-02 17:40:27 +02:00
|
|
|
|
var toggleNetFilteringSwitch = function(ev) {
|
2014-06-24 00:42:43 +02:00
|
|
|
|
if ( !stats || !stats.pageURL ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-10-17 21:44:19 +02:00
|
|
|
|
messager.send({
|
2014-06-24 00:42:43 +02:00
|
|
|
|
what: 'toggleNetFiltering',
|
2014-08-02 17:40:27 +02:00
|
|
|
|
url: stats.pageURL,
|
|
|
|
|
scope: ev.ctrlKey || ev.metaKey ? 'page' : '',
|
2014-12-28 16:07:43 +01:00
|
|
|
|
state: !uDom(this).toggleClass('off').hasClass('off'),
|
2014-06-24 00:42:43 +02:00
|
|
|
|
tabId: stats.tabId
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-07-02 18:02:29 +02:00
|
|
|
|
var gotoDashboard = function() {
|
2014-10-17 21:44:19 +02:00
|
|
|
|
messager.send({
|
|
|
|
|
what: 'gotoURL',
|
|
|
|
|
details: {
|
|
|
|
|
url: 'dashboard.html',
|
|
|
|
|
select: true,
|
|
|
|
|
index: -1
|
|
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
|
});
|
2014-06-24 00:42:43 +02:00
|
|
|
|
};
|
|
|
|
|
|
2014-07-02 18:02:29 +02:00
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var gotoStats = function() {
|
2014-10-17 21:44:19 +02:00
|
|
|
|
messager.send({
|
|
|
|
|
what: 'gotoURL',
|
|
|
|
|
details: {
|
|
|
|
|
url: 'dashboard.html?tab=stats&which=' + stats.tabId,
|
|
|
|
|
select: true,
|
|
|
|
|
index: -1
|
|
|
|
|
}
|
2014-07-02 18:02:29 +02:00
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-07-13 02:32:44 +02:00
|
|
|
|
var gotoPick = function() {
|
2014-10-17 21:44:19 +02:00
|
|
|
|
messager.send({
|
2014-07-13 02:32:44 +02:00
|
|
|
|
what: 'gotoPick',
|
|
|
|
|
tabId: stats.tabId
|
|
|
|
|
});
|
|
|
|
|
window.open('','_self').close();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-10-20 17:40:52 +02:00
|
|
|
|
var gotoLink = function(ev) {
|
|
|
|
|
if (!ev.target.href) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
|
|
messager.send({
|
|
|
|
|
what: 'gotoURL',
|
|
|
|
|
details: {
|
|
|
|
|
url: ev.target.href,
|
|
|
|
|
select: true,
|
|
|
|
|
index: -1
|
|
|
|
|
}
|
|
|
|
|
});
|
2014-07-02 18:02:29 +02:00
|
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var toggleDynamicFiltering = function(ev) {
|
|
|
|
|
var el = uDom('body');
|
|
|
|
|
el.toggleClass('dynamicFilteringEnabled');
|
|
|
|
|
messager.send({
|
|
|
|
|
what: 'userSettings',
|
|
|
|
|
name: 'dynamicFilteringEnabled',
|
|
|
|
|
value: el.hasClass('dynamicFilteringEnabled')
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var mouseenterCellHandler = function() {
|
|
|
|
|
if ( uDom(this).hasClass('ownRule') === false ) {
|
|
|
|
|
dynaHotspots.appendTo(this);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var mouseleaveCellHandler = function() {
|
|
|
|
|
dynaHotspots.detach();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var setDynamicFilter = function(src, des, type, action) {
|
2014-12-28 16:07:43 +01:00
|
|
|
|
// This can happen on pages where uBlock does not work
|
|
|
|
|
if ( typeof stats.pageHostname !== 'string' || stats.pageHostname === '' ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2014-10-06 20:02:44 +02:00
|
|
|
|
var onDynamicFilterChanged = function(details) {
|
2014-12-30 22:36:29 +01:00
|
|
|
|
cachePopupData(details);
|
2014-10-06 20:02:44 +02:00
|
|
|
|
syncAllDynamicFilters();
|
|
|
|
|
};
|
2014-10-17 21:44:19 +02:00
|
|
|
|
messager.send({
|
2014-10-06 20:02:44 +02:00
|
|
|
|
what: 'toggleDynamicFilter',
|
2014-12-30 22:36:29 +01:00
|
|
|
|
tabId: stats.tabId,
|
2014-12-28 16:07:43 +01:00
|
|
|
|
pageHostname: stats.pageHostname,
|
2014-12-31 16:47:19 +01:00
|
|
|
|
srcHostname: src,
|
|
|
|
|
desHostname: des,
|
|
|
|
|
requestType: type,
|
|
|
|
|
action: action
|
2014-10-06 20:02:44 +02:00
|
|
|
|
}, onDynamicFilterChanged);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-12-31 16:47:19 +01:00
|
|
|
|
var unsetDynamicFilterHandler = function() {
|
|
|
|
|
var cell = uDom(this);
|
|
|
|
|
setDynamicFilter(
|
|
|
|
|
cell.attr('data-src') === '/' ? '*' : stats.pageHostname,
|
|
|
|
|
cell.attr('data-des'),
|
|
|
|
|
cell.attr('data-type'),
|
|
|
|
|
0
|
|
|
|
|
);
|
|
|
|
|
dynaHotspots.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' ) {
|
|
|
|
|
action = 3
|
|
|
|
|
} else {
|
|
|
|
|
action = 1;
|
|
|
|
|
}
|
|
|
|
|
setDynamicFilter(
|
|
|
|
|
cell.attr('data-src') === '/' ? '*' : stats.pageHostname,
|
|
|
|
|
cell.attr('data-des'),
|
|
|
|
|
cell.attr('data-type'),
|
|
|
|
|
action
|
|
|
|
|
);
|
|
|
|
|
dynaHotspots.detach();
|
2014-10-06 20:02:44 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
var installEventHandlers = function() {
|
2014-07-02 18:02:29 +02:00
|
|
|
|
uDom('h1,h2,h3,h4').on('click', gotoDashboard);
|
2014-08-02 17:40:27 +02:00
|
|
|
|
uDom('#switch .fa').on('click', toggleNetFilteringSwitch);
|
2014-07-02 18:02:29 +02:00
|
|
|
|
uDom('#gotoLog').on('click', gotoStats);
|
2014-07-13 02:32:44 +02:00
|
|
|
|
uDom('#gotoPick').on('click', gotoPick);
|
2014-10-20 17:40:52 +02:00
|
|
|
|
uDom('a[href^=http]').on('click', gotoLink);
|
2014-10-06 20:02:44 +02:00
|
|
|
|
uDom('#dynamicFilteringToggler').on('click', toggleDynamicFiltering);
|
2014-12-31 16:47:19 +01:00
|
|
|
|
|
|
|
|
|
uDom('#dynamicFilteringContainer').on('click', 'span[data-src]', unsetDynamicFilterHandler);
|
|
|
|
|
uDom('#dynamicFilteringContainer')
|
|
|
|
|
.on('mouseenter', '[data-src]', mouseenterCellHandler)
|
|
|
|
|
.on('mouseleave', '[data-src]', mouseleaveCellHandler);
|
|
|
|
|
dynaHotspots = uDom('#actionSelector');
|
|
|
|
|
dynaHotspots.on('click', 'span', setDynamicFilterHandler).detach();
|
2014-06-24 00:42:43 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
// Make menu only when popup html is fully loaded
|
|
|
|
|
|
2014-07-02 18:02:29 +02:00
|
|
|
|
uDom.onLoad(function() {
|
2014-12-01 17:25:33 +01:00
|
|
|
|
messager.send({ what: 'activeTabStats' }, renderPopup);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
installEventHandlers();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
})();
|