1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00
uBlock/js/3p-filters.js

466 lines
15 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
*/
2014-07-02 18:02:29 +02:00
/* global chrome, messaging, uDom */
2014-06-24 00:42:43 +02:00
/******************************************************************************/
(function() {
/******************************************************************************/
var userListName = chrome.i18n.getMessage('1pPageName');
2014-07-25 22:12:20 +02:00
var listDetails = {};
2014-08-20 16:26:57 +02:00
var cosmeticSwitch = true;
2014-07-25 22:12:20 +02:00
var externalLists = '';
2014-07-26 22:10:20 +02:00
var cacheWasPurged = false;
var needUpdate = false;
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-25 22:12:20 +02:00
messaging.start('3p-filters.js');
2014-06-24 00:42:43 +02:00
var onMessage = function(msg) {
switch ( msg.what ) {
case 'loadUbiquitousBlacklistCompleted':
2014-08-21 18:35:45 +02:00
uDom('body').toggleClass('loading', false);
2014-06-24 00:42:43 +02:00
renderBlacklists();
break;
default:
break;
}
};
messaging.listen(onMessage);
/******************************************************************************/
2014-07-09 22:03:25 +02:00
var getµb = function() {
2014-06-24 00:42:43 +02:00
return chrome.extension.getBackgroundPage().µBlock;
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-09 22:03:25 +02:00
var renderNumber = function(value) {
return value.toLocaleString();
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// TODO: get rid of background page dependencies
2014-07-09 22:03:25 +02:00
var renderBlacklists = function() {
2014-06-24 00:42:43 +02:00
var µb = getµb();
// Assemble a pretty blacklist name if possible
var htmlFromListName = function(blacklistTitle, blacklistHref) {
2014-08-20 16:26:57 +02:00
if ( blacklistHref === listDetails.userFiltersPath ) {
2014-06-24 00:42:43 +02:00
return userListName;
}
if ( !blacklistTitle ) {
return blacklistHref;
}
2014-08-23 18:08:02 +02:00
return blacklistTitle;
};
// Assemble a pretty blacklist name if possible
var htmlFromHomeURL = function(blacklistHref) {
2014-06-24 00:42:43 +02:00
if ( blacklistHref.indexOf('assets/thirdparties/') !== 0 ) {
2014-08-23 18:08:02 +02:00
return '';
2014-06-24 00:42:43 +02:00
}
var matches = blacklistHref.match(/^assets\/thirdparties\/([^\/]+)/);
if ( matches === null || matches.length !== 2 ) {
2014-08-23 18:08:02 +02:00
return '';
2014-06-24 00:42:43 +02:00
}
var hostname = matches[1];
var domain = µb.URI.domainFromHostname(hostname);
if ( domain === '' ) {
2014-08-23 18:08:02 +02:00
return '';
2014-06-24 00:42:43 +02:00
}
var html = [
2014-08-23 18:08:02 +02:00
' <a href="http://',
2014-06-24 00:42:43 +02:00
hostname,
2014-08-23 18:08:02 +02:00
'" target="_blank">(',
2014-06-24 00:42:43 +02:00
domain,
2014-08-23 18:08:02 +02:00
')</a>'
2014-06-24 00:42:43 +02:00
];
return html.join('');
};
2014-06-24 03:49:05 +02:00
var listStatsTemplate = chrome.i18n.getMessage('3pListsOfBlockedHostsPerListStats');
2014-07-26 22:10:20 +02:00
var purgeButtontext = chrome.i18n.getMessage('3pExternalListPurge');
var updateButtontext = chrome.i18n.getMessage('3pExternalListNew');
var obsoleteButtontext = chrome.i18n.getMessage('3pExternalListObsolete');
var htmlFromBranch = function(groupKey, listKeys, lists) {
var html = [
'<li>',
chrome.i18n.getMessage('3pGroup' + groupKey.charAt(0).toUpperCase() + groupKey.slice(1)),
'<ul>'
];
2014-07-25 22:12:20 +02:00
if ( !listKeys ) {
return html.join('');
}
listKeys.sort(function(a, b) {
return lists[a].title.localeCompare(lists[b].title);
});
var listEntryTemplate = [
'<li class="listDetails">',
'<input type="checkbox" {{checked}}>',
2014-08-23 18:08:02 +02:00
' ',
2014-07-25 22:12:20 +02:00
'<a href="{{URL}}" type="text/plain">',
'{{name}}',
2014-08-23 18:08:02 +02:00
'\u200E</a>',
'{{homeURL}}',
': ',
'<span class="dim">',
listStatsTemplate,
'</span>'
].join('');
var listKey, list, listEntry, entryDetails;
for ( var i = 0; i < listKeys.length; i++ ) {
listKey = listKeys[i];
list = lists[listKey];
listEntry = listEntryTemplate
.replace('{{checked}}', list.off ? '' : 'checked')
.replace('{{URL}}', encodeURI(listKey))
.replace('{{name}}', htmlFromListName(list.title, listKey))
2014-08-23 18:08:02 +02:00
.replace('{{homeURL}}', htmlFromHomeURL(listKey))
.replace('{{used}}', !list.off && !isNaN(+list.entryUsedCount) ? renderNumber(list.entryUsedCount) : '0')
2014-07-25 22:12:20 +02:00
.replace('{{total}}', !isNaN(+list.entryCount) ? renderNumber(list.entryCount) : '?');
html.push(listEntry);
2014-07-26 22:10:20 +02:00
// https://github.com/gorhill/uBlock/issues/104
entryDetails = listDetails.cache[listKey];
if ( entryDetails === undefined ) {
continue;
}
// Update status
if ( !list.off && (entryDetails.repoObsolete || entryDetails.cacheObsolete) ) {
html.push(
'&ensp;',
'<span class="status obsolete">',
entryDetails.repoObsolete ? updateButtontext : obsoleteButtontext,
'</span>'
);
needUpdate = true;
}
// In cache
else if ( entryDetails.cached ) {
2014-07-26 22:10:20 +02:00
html.push(
'&ensp;',
'<span class="status purge">',
2014-07-26 22:10:20 +02:00
purgeButtontext,
'</span>'
2014-07-26 22:10:20 +02:00
);
}
}
html.push('</ul>');
return html.join('');
};
// https://www.youtube.com/watch?v=unCVi4hYRlY#t=30m18s
var groupsFromLists = function(lists) {
var groups = {};
var listKeys = Object.keys(lists);
var i = listKeys.length;
var listKey, list, groupKey;
while ( i-- ) {
listKey = listKeys[i];
list = lists[listKey];
groupKey = list.group || 'nogroup';
if ( groups[groupKey] === undefined ) {
groups[groupKey] = [];
}
groups[groupKey].push(listKey);
}
return groups;
};
2014-07-25 22:12:20 +02:00
var onListsReceived = function(details) {
listDetails = details;
2014-08-20 16:26:57 +02:00
cosmeticSwitch = details.cosmetic;
needUpdate = false;
2014-07-25 22:12:20 +02:00
var lists = details.available;
var html = [];
var groups = groupsFromLists(lists);
var groupKey, i;
var groupKeys = [
'default',
'ads',
'privacy',
'malware',
'social',
'multipurpose',
'regions',
'custom'
];
for ( i = 0; i < groupKeys.length; i++ ) {
groupKey = groupKeys[i];
html.push(htmlFromBranch(groupKey, groups[groupKey], lists));
delete groups[groupKey];
}
// For all groups not covered above (if any left)
groupKeys = Object.keys(groups);
for ( i = 0; i < groupKeys.length; i++ ) {
groupKey = groupKeys[i];
html.push(htmlFromBranch(groupKey, groups[groupKey], lists));
delete groups[groupKey];
}
2014-08-20 16:26:57 +02:00
uDom('#listsOfBlockedHostsPrompt').text(
chrome.i18n.getMessage('3pListsOfBlockedHostsPrompt')
.replace('{{netFilterCount}}', renderNumber(details.netFilterCount))
.replace('{{cosmeticFilterCount}}', renderNumber(details.cosmeticFilterCount))
);
uDom('#autoUpdate').prop('checked', listDetails.autoUpdate === true);
uDom('#parseCosmeticFilters').prop('checked', listDetails.cosmetic === true);
2014-08-21 16:56:36 +02:00
uDom('#lists').html(html.join(''));
2014-07-25 22:12:20 +02:00
uDom('a').attr('target', '_blank');
updateWidgets();
2014-07-25 22:12:20 +02:00
};
2014-06-24 00:42:43 +02:00
2014-07-25 22:12:20 +02:00
messaging.ask({ what: 'getLists' }, onListsReceived);
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// Return whether selection of lists changed.
2014-06-24 00:42:43 +02:00
var listsSelectionChanged = function() {
2014-08-20 16:26:57 +02:00
if ( listDetails.cosmetic !== cosmeticSwitch ) {
2014-07-25 22:12:20 +02:00
return true;
2014-06-24 00:42:43 +02:00
}
2014-07-26 22:10:20 +02:00
if ( cacheWasPurged ) {
return true;
}
2014-07-25 22:12:20 +02:00
var availableLists = listDetails.available;
var currentLists = listDetails.current;
var location, availableOff, currentOff;
// This check existing entries
for ( location in availableLists ) {
if ( availableLists.hasOwnProperty(location) === false ) {
continue;
}
availableOff = availableLists[location].off === true;
currentOff = currentLists[location] === undefined || currentLists[location].off === true;
if ( availableOff !== currentOff ) {
return true;
}
}
// This check removed entries
for ( location in currentLists ) {
if ( currentLists.hasOwnProperty(location) === false ) {
continue;
}
currentOff = currentLists[location].off === true;
availableOff = availableLists[location] === undefined || availableLists[location].off === true;
if ( availableOff !== currentOff ) {
return true;
}
}
return false;
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// Return whether content need update.
var listsContentChanged = function() {
return needUpdate;
};
/******************************************************************************/
2014-06-24 00:42:43 +02:00
// This is to give a visual hint that the selection of blacklists has changed.
var updateWidgets = function() {
uDom('#buttonApply').toggleClass('enabled', listsSelectionChanged());
uDom('#buttonUpdate').toggleClass('enabled', listsContentChanged());
2014-07-25 22:12:20 +02:00
};
/******************************************************************************/
var onListCheckboxChanged = function() {
var href = uDom(this).parent().find('a').first().attr('href');
if ( typeof href !== 'string' ) {
return;
}
if ( listDetails.available[href] === undefined ) {
return;
}
listDetails.available[href].off = !this.checked;
updateWidgets();
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-09 22:03:25 +02:00
var onListLinkClicked = function(ev) {
messaging.tell({
what: 'gotoExtensionURL',
url: 'asset-viewer.html?url=' + uDom(this).attr('href')
});
ev.preventDefault();
};
/******************************************************************************/
2014-08-20 05:01:36 +02:00
var onPurgeClicked = function() {
2014-07-26 22:10:20 +02:00
var button = uDom(this);
var li = button.parent();
var href = li.find('a').first().attr('href');
2014-07-26 22:10:20 +02:00
if ( !href ) {
return;
}
messaging.tell({ what: 'purgeCache', path: href });
button.remove();
if ( li.find('input').first().prop('checked') ) {
cacheWasPurged = true;
updateWidgets();
}
2014-07-26 22:10:20 +02:00
};
/******************************************************************************/
var reloadAll = function(update) {
// Loading may take a while when resoruces are fetched from remote
// servers. We do not want the user to force reload while we are reloading.
2014-08-21 18:35:45 +02:00
uDom('body').toggleClass('loading', true);
2014-06-24 00:42:43 +02:00
// Reload blacklists
2014-07-25 22:12:20 +02:00
messaging.tell({
what: 'userSettings',
name: 'parseAllABPHideFilters',
2014-07-26 19:31:22 +02:00
value: listDetails.cosmetic
2014-07-25 22:12:20 +02:00
});
// Reload blacklists
2014-06-24 00:42:43 +02:00
var switches = [];
var lis = uDom('#lists .listDetails');
2014-07-02 18:02:29 +02:00
var i = lis.length();
2014-06-24 00:42:43 +02:00
var path;
while ( i-- ) {
2014-07-20 21:17:35 +02:00
path = lis
.subset(i)
.find('a')
2014-07-25 22:12:20 +02:00
.attr('href');
2014-06-24 00:42:43 +02:00
switches.push({
location: path,
2014-07-02 18:02:29 +02:00
off: lis.subset(i).find('input').prop('checked') === false
2014-06-24 00:42:43 +02:00
});
}
messaging.tell({
what: 'reloadAllFilters',
switches: switches,
update: update
2014-06-24 00:42:43 +02:00
});
2014-07-26 22:10:20 +02:00
cacheWasPurged = false;
};
/******************************************************************************/
var buttonApplyHandler = function() {
reloadAll();
uDom('#buttonApply').toggleClass('enabled', false);
};
/******************************************************************************/
var buttonUpdateHandler = function() {
2014-08-20 07:18:53 +02:00
if ( needUpdate ) {
reloadAll(true);
}
};
/******************************************************************************/
var autoUpdateCheckboxChanged = function() {
messaging.tell({
what: 'userSettings',
name: 'autoUpdate',
value: this.checked
});
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-08-20 16:26:57 +02:00
var cosmeticSwitchChanged = function() {
2014-07-25 22:12:20 +02:00
listDetails.cosmetic = this.checked;
updateWidgets();
2014-07-25 22:12:20 +02:00
};
/******************************************************************************/
var renderExternalLists = function() {
var onReceived = function(details) {
uDom('#externalLists').val(details);
externalLists = details;
};
messaging.ask({ what: 'userSettings', name: 'externalLists' }, onReceived);
};
/******************************************************************************/
var externalListsChangeHandler = function() {
uDom('#externalListsApply').prop(
'disabled',
this.value.trim() === externalLists
);
};
/******************************************************************************/
var externalListsApplyHandler = function() {
externalLists = uDom('#externalLists').val();
2014-06-24 00:42:43 +02:00
messaging.tell({
what: 'userSettings',
2014-07-25 22:12:20 +02:00
name: 'externalLists',
value: externalLists
2014-06-24 00:42:43 +02:00
});
2014-07-25 22:12:20 +02:00
renderBlacklists();
uDom('#externalListsApply').prop('disabled', true);
2014-07-09 22:03:25 +02:00
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-07-02 18:02:29 +02:00
uDom.onLoad(function() {
2014-06-24 00:42:43 +02:00
// Handle user interaction
uDom('#autoUpdate').on('change', autoUpdateCheckboxChanged);
2014-08-20 16:26:57 +02:00
uDom('#parseCosmeticFilters').on('change', cosmeticSwitchChanged);
uDom('#buttonApply').on('click', buttonApplyHandler);
uDom('#buttonUpdate').on('click', buttonUpdateHandler);
2014-07-25 22:12:20 +02:00
uDom('#lists').on('change', '.listDetails > input', onListCheckboxChanged);
uDom('#lists').on('click', '.listDetails > a:nth-of-type(1)', onListLinkClicked);
uDom('#lists').on('click', 'span.purge', onPurgeClicked);
2014-07-25 22:12:20 +02:00
uDom('#externalLists').on('input', externalListsChangeHandler);
uDom('#externalListsApply').on('click', externalListsApplyHandler);
2014-06-24 00:42:43 +02:00
renderBlacklists();
2014-07-25 22:12:20 +02:00
renderExternalLists();
2014-06-24 00:42:43 +02:00
});
/******************************************************************************/
})();