2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2017-01-18 19:17:47 +01:00
|
|
|
Copyright (C) 2014-2017 Raymond Hill
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
/* global uDom */
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-20 21:17:11 +01:00
|
|
|
var listDetails = {},
|
|
|
|
filteringSettingsHash = '',
|
2017-01-23 23:16:37 +01:00
|
|
|
lastUpdateTemplateString = vAPI.i18n('3pLastUpdate'),
|
|
|
|
reValidExternalList = /[a-z-]+:\/\/\S*\/\S+/;
|
2014-09-09 01:45:22 +02:00
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var onMessage = function(msg) {
|
|
|
|
switch ( msg.what ) {
|
2017-01-18 19:17:47 +01:00
|
|
|
case 'assetUpdated':
|
|
|
|
updateAssetStatus(msg);
|
|
|
|
break;
|
2017-01-23 15:35:05 +01:00
|
|
|
case 'assetsUpdated':
|
|
|
|
document.body.classList.remove('updating');
|
2017-04-26 18:21:01 +02:00
|
|
|
renderWidgets();
|
2017-01-23 15:35:05 +01:00
|
|
|
break;
|
2016-09-24 20:36:08 +02:00
|
|
|
case 'staticFilteringDataChanged':
|
2015-04-17 16:20:45 +02:00
|
|
|
renderFilterLists();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
var messaging = vAPI.messaging;
|
|
|
|
messaging.addChannelListener('dashboard', onMessage);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-07-09 22:03:25 +02:00
|
|
|
var renderNumber = function(value) {
|
2014-07-16 02:32:33 +02:00
|
|
|
return value.toLocaleString();
|
2014-07-09 22:03:25 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
var renderFilterLists = function(soft) {
|
2017-01-18 19:17:47 +01:00
|
|
|
var listGroupTemplate = uDom('#templates .groupEntry'),
|
|
|
|
listEntryTemplate = uDom('#templates .listEntry'),
|
|
|
|
listStatsTemplate = vAPI.i18n('3pListsOfBlockedHostsPerListStats'),
|
|
|
|
renderElapsedTimeToString = vAPI.i18n.renderElapsedTimeToString,
|
2017-09-10 19:02:04 +02:00
|
|
|
hideUnusedLists = document.body.classList.contains('hideUnused'),
|
|
|
|
groupNames = new Map();
|
2015-03-08 22:54:08 +01:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
// Assemble a pretty list name if possible
|
2014-09-26 02:21:21 +02:00
|
|
|
var listNameFromListKey = function(listKey) {
|
|
|
|
var list = listDetails.current[listKey] || listDetails.available[listKey];
|
|
|
|
var listTitle = list ? list.title : '';
|
2017-01-20 14:40:19 +01:00
|
|
|
if ( listTitle === '' ) { return listKey; }
|
2014-09-26 02:21:21 +02:00
|
|
|
return listTitle;
|
2014-08-23 18:08:02 +02:00
|
|
|
};
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var liFromListEntry = function(listKey, li) {
|
2017-01-20 14:40:19 +01:00
|
|
|
var entry = listDetails.available[listKey],
|
|
|
|
elem;
|
|
|
|
if ( !li ) {
|
|
|
|
li = listEntryTemplate.clone().nodeAt(0);
|
2015-06-10 17:30:57 +02:00
|
|
|
}
|
2017-01-20 14:40:19 +01:00
|
|
|
if ( li.getAttribute('data-listkey') !== listKey ) {
|
|
|
|
li.setAttribute('data-listkey', listKey);
|
|
|
|
elem = li.querySelector('input[type="checkbox"]');
|
|
|
|
elem.checked = entry.off !== true;
|
|
|
|
elem = li.querySelector('a:nth-of-type(1)');
|
|
|
|
elem.setAttribute('href', 'asset-viewer.html?url=' + encodeURI(listKey));
|
|
|
|
elem.setAttribute('type', 'text/html');
|
2017-01-24 19:53:04 +01:00
|
|
|
elem.textContent = listNameFromListKey(listKey);
|
2017-01-24 14:23:52 +01:00
|
|
|
li.classList.remove('toRemove');
|
2017-01-20 14:40:19 +01:00
|
|
|
if ( entry.supportName ) {
|
2017-01-22 22:05:16 +01:00
|
|
|
li.classList.add('support');
|
|
|
|
elem = li.querySelector('a.support');
|
2017-01-20 14:40:19 +01:00
|
|
|
elem.setAttribute('href', entry.supportURL);
|
2017-01-22 22:05:16 +01:00
|
|
|
elem.setAttribute('title', entry.supportName);
|
|
|
|
} else {
|
|
|
|
li.classList.remove('support');
|
|
|
|
}
|
|
|
|
if ( entry.external ) {
|
|
|
|
li.classList.add('external');
|
|
|
|
} else {
|
|
|
|
li.classList.remove('external');
|
|
|
|
}
|
|
|
|
if ( entry.instructionURL ) {
|
|
|
|
li.classList.add('mustread');
|
|
|
|
elem = li.querySelector('a.mustread');
|
|
|
|
elem.setAttribute('href', entry.instructionURL);
|
2017-01-20 14:40:19 +01:00
|
|
|
} else {
|
2017-01-22 22:05:16 +01:00
|
|
|
li.classList.remove('mustread');
|
2017-01-20 14:40:19 +01:00
|
|
|
}
|
2014-09-09 16:53:47 +02:00
|
|
|
}
|
2017-01-22 22:05:16 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1429
|
|
|
|
if ( !soft ) {
|
|
|
|
elem = li.querySelector('input[type="checkbox"]');
|
|
|
|
elem.checked = entry.off !== true;
|
|
|
|
}
|
|
|
|
li.style.setProperty('display', hideUnusedLists && entry.off === true ? 'none' : '');
|
2017-01-18 19:17:47 +01:00
|
|
|
elem = li.querySelector('span.counts');
|
2017-01-22 22:05:16 +01:00
|
|
|
var text = '';
|
|
|
|
if ( !isNaN(+entry.entryUsedCount) && !isNaN(+entry.entryCount) ) {
|
|
|
|
text = listStatsTemplate
|
|
|
|
.replace('{{used}}', renderNumber(entry.off ? 0 : entry.entryUsedCount))
|
|
|
|
.replace('{{total}}', renderNumber(entry.entryCount));
|
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
elem.textContent = text;
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/104
|
2015-03-08 22:54:08 +01:00
|
|
|
var asset = listDetails.cache[listKey] || {};
|
2017-01-18 19:17:47 +01:00
|
|
|
var remoteURL = asset.remoteURL;
|
|
|
|
li.classList.toggle(
|
|
|
|
'unsecure',
|
|
|
|
typeof remoteURL === 'string' && remoteURL.lastIndexOf('http:', 0) === 0
|
|
|
|
);
|
2017-01-22 22:05:16 +01:00
|
|
|
li.classList.toggle('failed', asset.error !== undefined);
|
|
|
|
li.classList.toggle('obsolete', asset.obsolete === true);
|
2017-04-26 18:21:01 +02:00
|
|
|
if ( asset.cached === true ) {
|
|
|
|
li.classList.add('cached');
|
2017-01-22 22:05:16 +01:00
|
|
|
li.querySelector('.status.cache').setAttribute(
|
2017-01-18 19:17:47 +01:00
|
|
|
'title',
|
2017-04-26 18:21:01 +02:00
|
|
|
lastUpdateTemplateString.replace(
|
|
|
|
'{{ago}}',
|
|
|
|
renderElapsedTimeToString(asset.writeTime)
|
|
|
|
)
|
2017-01-18 19:17:47 +01:00
|
|
|
);
|
2017-04-26 18:21:01 +02:00
|
|
|
} else {
|
|
|
|
li.classList.remove('cached');
|
2014-09-09 16:53:47 +02:00
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
li.classList.remove('discard');
|
2015-03-08 22:54:08 +01:00
|
|
|
return li;
|
2014-09-09 16:53:47 +02:00
|
|
|
};
|
2014-07-16 02:32:33 +02:00
|
|
|
|
2015-03-23 15:19:43 +01:00
|
|
|
var listEntryCountFromGroup = function(listKeys) {
|
2017-01-20 14:40:19 +01:00
|
|
|
if ( Array.isArray(listKeys) === false ) { return ''; }
|
2015-03-23 15:19:43 +01:00
|
|
|
var count = 0;
|
|
|
|
var i = listKeys.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
if ( listDetails.available[listKeys[i]].off !== true ) {
|
|
|
|
count += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count === 0 ? '' : '(' + count.toLocaleString() + ')';
|
|
|
|
};
|
|
|
|
|
2015-03-08 22:54:08 +01:00
|
|
|
var liFromListGroup = function(groupKey, listKeys) {
|
2017-01-18 19:17:47 +01:00
|
|
|
var liGroup = document.querySelector('#lists > .groupEntry[data-groupkey="' + groupKey + '"]');
|
|
|
|
if ( liGroup === null ) {
|
|
|
|
liGroup = listGroupTemplate.clone().nodeAt(0);
|
2017-09-10 19:02:04 +02:00
|
|
|
var groupName = groupNames.get(groupKey);
|
|
|
|
if ( groupName === undefined ) {
|
|
|
|
groupName = vAPI.i18n('3pGroup' + groupKey.charAt(0).toUpperCase() + groupKey.slice(1));
|
|
|
|
// Category "Social" is being renamed "Annoyances": ensure
|
|
|
|
// smooth transition.
|
|
|
|
// TODO: remove when majority of users are post-1.14.8 uBO.
|
|
|
|
if ( groupName === '' && groupKey === 'social' ) {
|
|
|
|
groupName = vAPI.i18n('3pGroupAnnoyances');
|
|
|
|
}
|
|
|
|
groupNames.set(groupKey, groupName);
|
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
if ( groupName !== '' ) {
|
|
|
|
liGroup.querySelector('.geName').textContent = groupName;
|
|
|
|
}
|
2015-03-23 15:19:43 +01:00
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
if ( liGroup.querySelector('.geName:empty') === null ) {
|
|
|
|
liGroup.querySelector('.geCount').textContent = listEntryCountFromGroup(listKeys);
|
2014-07-25 22:12:20 +02:00
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
var ulGroup = liGroup.querySelector('.listEntries');
|
|
|
|
if ( !listKeys ) { return liGroup; }
|
2014-07-25 22:12:20 +02:00
|
|
|
listKeys.sort(function(a, b) {
|
2015-03-23 15:19:43 +01:00
|
|
|
return (listDetails.available[a].title || '').localeCompare(listDetails.available[b].title || '');
|
2014-07-25 22:12:20 +02:00
|
|
|
});
|
2014-07-16 02:32:33 +02:00
|
|
|
for ( var i = 0; i < listKeys.length; i++ ) {
|
2017-01-18 19:17:47 +01:00
|
|
|
var liEntry = liFromListEntry(listKeys[i], ulGroup.children[i]);
|
|
|
|
if ( liEntry.parentElement === null ) {
|
|
|
|
ulGroup.appendChild(liEntry);
|
|
|
|
}
|
2014-07-16 02:32:33 +02:00
|
|
|
}
|
2015-03-08 22:54:08 +01:00
|
|
|
return liGroup;
|
2014-07-16 02:32:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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) {
|
2014-09-09 16:53:47 +02:00
|
|
|
// Before all, set context vars
|
2014-07-25 22:12:20 +02:00
|
|
|
listDetails = details;
|
2017-01-18 19:17:47 +01:00
|
|
|
|
|
|
|
// Incremental rendering: this will allow us to easily discard unused
|
|
|
|
// DOM list entries.
|
|
|
|
uDom('#lists .listEntries .listEntry').addClass('discard');
|
2014-07-25 22:12:20 +02:00
|
|
|
|
2014-09-09 16:53:47 +02:00
|
|
|
// Visually split the filter lists in purpose-based groups
|
2017-01-18 19:17:47 +01:00
|
|
|
var ulLists = document.querySelector('#lists'),
|
|
|
|
groups = groupsFromLists(details.available),
|
|
|
|
liGroup, i, groupKey,
|
|
|
|
groupKeys = [
|
2017-05-19 00:55:03 +02:00
|
|
|
'default',
|
|
|
|
'ads',
|
|
|
|
'privacy',
|
|
|
|
'malware',
|
|
|
|
'social',
|
|
|
|
'multipurpose',
|
|
|
|
'regions',
|
|
|
|
'custom'
|
|
|
|
];
|
2014-07-25 22:12:20 +02:00
|
|
|
for ( i = 0; i < groupKeys.length; i++ ) {
|
|
|
|
groupKey = groupKeys[i];
|
2015-03-14 19:12:05 +01:00
|
|
|
liGroup = liFromListGroup(groupKey, groups[groupKey]);
|
2017-01-18 19:17:47 +01:00
|
|
|
liGroup.setAttribute('data-groupkey', groupKey);
|
|
|
|
liGroup.classList.toggle(
|
2015-03-14 19:12:05 +01:00
|
|
|
'collapsed',
|
|
|
|
vAPI.localStorage.getItem('collapseGroup' + (i + 1)) === 'y'
|
|
|
|
);
|
2017-01-18 19:17:47 +01:00
|
|
|
if ( liGroup.parentElement === null ) {
|
|
|
|
ulLists.appendChild(liGroup);
|
|
|
|
}
|
2014-07-25 22:12:20 +02:00
|
|
|
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];
|
2017-01-18 19:17:47 +01:00
|
|
|
ulLists.appendChild(liFromListGroup(groupKey, groups[groupKey]));
|
2014-07-25 22:12:20 +02:00
|
|
|
}
|
2014-07-16 02:32:33 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
uDom('#lists .listEntries .listEntry.discard').remove();
|
|
|
|
uDom('#autoUpdate').prop('checked', listDetails.autoUpdate === true);
|
2014-08-20 16:26:57 +02:00
|
|
|
uDom('#listsOfBlockedHostsPrompt').text(
|
2014-10-17 21:44:19 +02:00
|
|
|
vAPI.i18n('3pListsOfBlockedHostsPrompt')
|
2014-08-20 16:26:57 +02:00
|
|
|
.replace('{{netFilterCount}}', renderNumber(details.netFilterCount))
|
|
|
|
.replace('{{cosmeticFilterCount}}', renderNumber(details.cosmeticFilterCount))
|
|
|
|
);
|
2017-01-18 19:17:47 +01:00
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
// Compute a hash of the settings so that we can keep track of changes
|
|
|
|
// affecting the loading of filter lists.
|
2017-01-22 22:05:16 +01:00
|
|
|
uDom('#parseCosmeticFilters').prop('checked', listDetails.parseCosmeticFilters === true);
|
|
|
|
uDom('#ignoreGenericCosmeticFilters').prop('checked', listDetails.ignoreGenericCosmeticFilters === true);
|
|
|
|
if ( !soft ) {
|
2017-01-20 14:40:19 +01:00
|
|
|
filteringSettingsHash = hashFromCurrentFromSettings();
|
2017-01-18 19:17:47 +01:00
|
|
|
}
|
2015-03-11 04:46:18 +01:00
|
|
|
renderWidgets();
|
2014-07-25 22:12:20 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send('dashboard', { what: 'getLists' }, onListsReceived);
|
2014-07-09 22:03:25 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var renderWidgets = function() {
|
2017-01-20 14:40:19 +01:00
|
|
|
uDom('#buttonApply').toggleClass('disabled', filteringSettingsHash === hashFromCurrentFromSettings());
|
2017-05-26 14:31:19 +02:00
|
|
|
uDom('#buttonPurgeAll').toggleClass(
|
|
|
|
'disabled',
|
|
|
|
document.querySelector('#lists .listEntry.cached:not(.obsolete)') === null
|
|
|
|
);
|
2017-01-23 15:35:05 +01:00
|
|
|
uDom('#buttonUpdate').toggleClass('disabled', document.querySelector('body:not(.updating) #lists .listEntry.obsolete > input[type="checkbox"]:checked') === null);
|
2015-03-11 04:46:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var updateAssetStatus = function(details) {
|
2017-01-22 22:05:16 +01:00
|
|
|
var li = document.querySelector('#lists .listEntry[data-listkey="' + details.key + '"]');
|
|
|
|
if ( li === null ) { return; }
|
|
|
|
li.classList.toggle('failed', !!details.failed);
|
|
|
|
li.classList.toggle('obsolete', !details.cached);
|
|
|
|
li.classList.toggle('cached', !!details.cached);
|
|
|
|
if ( details.cached ) {
|
|
|
|
li.querySelector('.status.cache').setAttribute(
|
|
|
|
'title',
|
|
|
|
lastUpdateTemplateString.replace(
|
|
|
|
'{{ago}}',
|
|
|
|
vAPI.i18n.renderElapsedTimeToString(Date.now())
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
renderWidgets();
|
2015-03-11 04:46:18 +01:00
|
|
|
};
|
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
/*******************************************************************************
|
2015-03-11 04:46:18 +01:00
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
Compute a hash from all the settings affecting how filter lists are loaded
|
|
|
|
in memory.
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
**/
|
2015-03-11 04:46:18 +01:00
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
var hashFromCurrentFromSettings = function() {
|
|
|
|
var hash = [
|
|
|
|
document.getElementById('parseCosmeticFilters').checked,
|
|
|
|
document.getElementById('ignoreGenericCosmeticFilters').checked
|
|
|
|
];
|
|
|
|
var listHash = [],
|
2017-01-22 22:05:16 +01:00
|
|
|
listEntries = document.querySelectorAll('#lists .listEntry[data-listkey]:not(.toRemove)'),
|
2017-01-20 14:40:19 +01:00
|
|
|
liEntry,
|
|
|
|
i = listEntries.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
liEntry = listEntries[i];
|
|
|
|
if ( liEntry.querySelector('input[type="checkbox"]:checked') !== null ) {
|
|
|
|
listHash.push(liEntry.getAttribute('data-listkey'));
|
|
|
|
}
|
|
|
|
}
|
2017-01-23 23:16:37 +01:00
|
|
|
hash.push(
|
|
|
|
listHash.sort().join(),
|
|
|
|
reValidExternalList.test(document.getElementById('externalLists').value),
|
|
|
|
document.querySelector('#lists .listEntry.toRemove') !== null
|
|
|
|
);
|
2017-01-22 22:05:16 +01:00
|
|
|
return hash.join();
|
2014-08-20 02:41:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-20 14:40:19 +01:00
|
|
|
var onFilteringSettingsChanged = function() {
|
2015-03-11 04:46:18 +01:00
|
|
|
renderWidgets();
|
2014-07-09 22:03:25 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
var onRemoveExternalList = function(ev) {
|
|
|
|
var liEntry = uDom(this).ancestors('[data-listkey]'),
|
|
|
|
listKey = liEntry.attr('data-listkey');
|
|
|
|
if ( listKey ) {
|
|
|
|
liEntry.toggleClass('toRemove');
|
|
|
|
renderWidgets();
|
|
|
|
}
|
|
|
|
ev.preventDefault();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-08-20 05:01:36 +02:00
|
|
|
var onPurgeClicked = function() {
|
2017-01-18 19:17:47 +01:00
|
|
|
var button = uDom(this),
|
|
|
|
liEntry = button.ancestors('[data-listkey]'),
|
|
|
|
listKey = liEntry.attr('data-listkey');
|
|
|
|
if ( !listKey ) { return; }
|
2015-10-14 20:16:43 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
messaging.send('dashboard', { what: 'purgeCache', assetKey: listKey });
|
2015-10-14 20:16:43 +02:00
|
|
|
|
|
|
|
// If the cached version is purged, the installed version must be assumed
|
|
|
|
// to be obsolete.
|
2016-06-19 19:26:02 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1733
|
2017-01-22 22:05:16 +01:00
|
|
|
// An external filter list must not be marked as obsolete, they will
|
|
|
|
// always be fetched anyways if there is no cached copy.
|
|
|
|
liEntry.addClass('obsolete');
|
2017-01-18 19:17:47 +01:00
|
|
|
liEntry.removeClass('cached');
|
2015-10-14 20:16:43 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
if ( liEntry.descendants('input').first().prop('checked') ) {
|
2015-03-11 04:46:18 +01:00
|
|
|
renderWidgets();
|
2014-08-20 02:41:52 +02:00
|
|
|
}
|
2014-07-26 22:10:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-11 04:46:18 +01:00
|
|
|
var selectFilterLists = function(callback) {
|
|
|
|
// Cosmetic filtering switch
|
2016-08-13 22:42:58 +02:00
|
|
|
messaging.send('dashboard', {
|
|
|
|
what: 'userSettings',
|
|
|
|
name: 'parseAllABPHideFilters',
|
2017-01-20 14:40:19 +01:00
|
|
|
value: document.getElementById('parseCosmeticFilters').checked
|
2016-08-13 22:42:58 +02:00
|
|
|
});
|
|
|
|
messaging.send('dashboard', {
|
|
|
|
what: 'userSettings',
|
|
|
|
name: 'ignoreGenericCosmeticFilters',
|
2017-01-20 14:40:19 +01:00
|
|
|
value: document.getElementById('ignoreGenericCosmeticFilters').checked
|
2016-08-13 22:42:58 +02:00
|
|
|
});
|
2015-03-11 04:46:18 +01:00
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
// Filter lists to select
|
|
|
|
var toSelect = [],
|
|
|
|
liEntries = document.querySelectorAll('#lists .listEntry[data-listkey]:not(.toRemove)'),
|
2017-01-20 14:40:19 +01:00
|
|
|
i = liEntries.length,
|
|
|
|
liEntry;
|
2014-06-24 00:42:43 +02:00
|
|
|
while ( i-- ) {
|
2017-01-20 14:40:19 +01:00
|
|
|
liEntry = liEntries[i];
|
|
|
|
if ( liEntry.querySelector('input[type="checkbox"]:checked') !== null ) {
|
2017-01-22 22:05:16 +01:00
|
|
|
toSelect.push(liEntry.getAttribute('data-listkey'));
|
2017-01-18 19:17:47 +01:00
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
2015-03-11 04:46:18 +01:00
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
// External filter lists to remove
|
|
|
|
var toRemove = [];
|
|
|
|
liEntries = document.querySelectorAll('#lists .listEntry.toRemove[data-listkey]');
|
|
|
|
i = liEntries.length;
|
|
|
|
while ( i-- ) {
|
|
|
|
toRemove.push(liEntries[i].getAttribute('data-listkey'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// External filter lists to import
|
|
|
|
var externalListsElem = document.getElementById('externalLists'),
|
|
|
|
toImport = externalListsElem.value.trim();
|
|
|
|
externalListsElem.value = '';
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send(
|
|
|
|
'dashboard',
|
2017-01-22 22:05:16 +01:00
|
|
|
{
|
|
|
|
what: 'applyFilterListSelection',
|
|
|
|
toSelect: toSelect,
|
|
|
|
toImport: toImport,
|
|
|
|
toRemove: toRemove
|
|
|
|
},
|
2016-03-06 16:51:06 +01:00
|
|
|
callback
|
|
|
|
);
|
2017-01-20 14:40:19 +01:00
|
|
|
filteringSettingsHash = hashFromCurrentFromSettings();
|
2014-08-20 02:41:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var buttonApplyHandler = function() {
|
2015-03-12 22:25:51 +01:00
|
|
|
uDom('#buttonApply').removeClass('enabled');
|
2015-03-11 04:46:18 +01:00
|
|
|
var onSelectionDone = function() {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send('dashboard', { what: 'reloadAllFilters' });
|
2015-03-11 04:46:18 +01:00
|
|
|
};
|
|
|
|
selectFilterLists(onSelectionDone);
|
2017-01-20 14:40:19 +01:00
|
|
|
renderWidgets();
|
2014-08-20 02:41:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var buttonUpdateHandler = function() {
|
2017-01-18 19:17:47 +01:00
|
|
|
var onSelectionDone = function() {
|
2017-01-23 15:35:05 +01:00
|
|
|
document.body.classList.add('updating');
|
2017-01-18 19:17:47 +01:00
|
|
|
messaging.send('dashboard', { what: 'forceUpdateAssets' });
|
2017-01-22 22:05:16 +01:00
|
|
|
renderWidgets();
|
2017-01-18 19:17:47 +01:00
|
|
|
};
|
|
|
|
selectFilterLists(onSelectionDone);
|
2017-01-20 14:40:19 +01:00
|
|
|
renderWidgets();
|
2014-08-20 02:41:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var buttonPurgeAllHandler = function(ev) {
|
2015-03-12 22:25:51 +01:00
|
|
|
uDom('#buttonPurgeAll').removeClass('enabled');
|
2017-01-18 19:17:47 +01:00
|
|
|
messaging.send(
|
|
|
|
'dashboard',
|
|
|
|
{
|
|
|
|
what: 'purgeAllCaches',
|
|
|
|
hard: ev.ctrlKey && ev.shiftKey
|
|
|
|
},
|
2017-01-22 22:05:16 +01:00
|
|
|
function() { renderFilterLists(true); }
|
2017-01-18 19:17:47 +01:00
|
|
|
);
|
2014-09-09 01:45:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-08-20 02:41:52 +02:00
|
|
|
var autoUpdateCheckboxChanged = function() {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send(
|
|
|
|
'dashboard',
|
|
|
|
{
|
|
|
|
what: 'userSettings',
|
|
|
|
name: 'autoUpdate',
|
|
|
|
value: this.checked
|
|
|
|
}
|
|
|
|
);
|
2014-07-09 22:03:25 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
var toggleUnusedLists = function() {
|
|
|
|
document.body.classList.toggle('hideUnused');
|
|
|
|
var hide = document.body.classList.contains('hideUnused');
|
|
|
|
uDom('#lists li.listEntry > input[type="checkbox"]:not(:checked)')
|
|
|
|
.ancestors('li.listEntry[data-listkey]')
|
|
|
|
.css('display', hide ? 'none' : '');
|
|
|
|
vAPI.localStorage.setItem('hideUnusedFilterLists', hide ? '1' : '0');
|
2014-07-09 22:03:25 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-14 19:12:05 +01:00
|
|
|
var groupEntryClickHandler = function() {
|
|
|
|
var li = uDom(this).ancestors('.groupEntry');
|
|
|
|
li.toggleClass('collapsed');
|
|
|
|
var key = 'collapseGroup' + li.nthOfType();
|
|
|
|
if ( li.hasClass('collapsed') ) {
|
|
|
|
vAPI.localStorage.setItem(key, 'y');
|
|
|
|
} else {
|
|
|
|
vAPI.localStorage.removeItem(key);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var toCloudData = function() {
|
2015-08-11 21:29:14 +02:00
|
|
|
var bin = {
|
|
|
|
parseCosmeticFilters: uDom.nodeFromId('parseCosmeticFilters').checked,
|
2016-08-13 22:42:58 +02:00
|
|
|
ignoreGenericCosmeticFilters: uDom.nodeFromId('ignoreGenericCosmeticFilters').checked,
|
2015-08-11 21:29:14 +02:00
|
|
|
selectedLists: [],
|
2017-01-22 22:05:16 +01:00
|
|
|
externalLists: listDetails.externalLists
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var liEntries = uDom('#lists .listEntry'), liEntry;
|
|
|
|
var i = liEntries.length;
|
2015-08-11 21:29:14 +02:00
|
|
|
while ( i-- ) {
|
2017-01-18 19:17:47 +01:00
|
|
|
liEntry = liEntries.at(i);
|
|
|
|
if ( liEntry.descendants('input').prop('checked') ) {
|
|
|
|
bin.selectedLists.push(liEntry.attr('data-listkey'));
|
2015-08-11 21:29:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bin;
|
|
|
|
};
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var fromCloudData = function(data, append) {
|
|
|
|
if ( typeof data !== 'object' || data === null ) { return; }
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var elem, checked, i, n;
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2016-01-08 17:08:53 +01:00
|
|
|
elem = uDom.nodeFromId('parseCosmeticFilters');
|
2016-08-13 22:42:58 +02:00
|
|
|
checked = data.parseCosmeticFilters === true || append && elem.checked;
|
|
|
|
elem.checked = listDetails.parseCosmeticFilters = checked;
|
|
|
|
|
|
|
|
elem = uDom.nodeFromId('ignoreGenericCosmeticFilters');
|
|
|
|
checked = data.ignoreGenericCosmeticFilters === true || append && elem.checked;
|
|
|
|
elem.checked = listDetails.ignoreGenericCosmeticFilters = checked;
|
2016-01-08 17:08:53 +01:00
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
var listKey;
|
|
|
|
for ( i = 0, n = data.selectedLists.length; i < n; i++ ) {
|
|
|
|
listKey = data.selectedLists[i];
|
|
|
|
if ( listDetails.aliases[listKey] ) {
|
|
|
|
data.selectedLists[i] = listDetails.aliases[listKey];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var selectedSet = new Set(data.selectedLists),
|
|
|
|
listEntries = uDom('#lists .listEntry'),
|
|
|
|
listEntry, input;
|
|
|
|
for ( i = 0, n = listEntries.length; i < n; i++ ) {
|
|
|
|
listEntry = listEntries.at(i);
|
|
|
|
listKey = listEntry.attr('data-listkey');
|
|
|
|
input = listEntry.descendants('input').first();
|
|
|
|
if ( append && input.prop('checked') ) { continue; }
|
|
|
|
input.prop('checked', selectedSet.has(listKey) );
|
2015-08-11 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2016-01-08 17:08:53 +01:00
|
|
|
elem = uDom.nodeFromId('externalLists');
|
2017-01-18 19:17:47 +01:00
|
|
|
if ( !append ) { elem.value = ''; }
|
2016-01-08 17:08:53 +01:00
|
|
|
elem.value += data.externalLists || '';
|
2015-08-11 21:29:14 +02:00
|
|
|
|
|
|
|
renderWidgets();
|
|
|
|
};
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
self.cloud.onPush = toCloudData;
|
|
|
|
self.cloud.onPull = fromCloudData;
|
2015-08-11 21:29:14 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
document.body.classList.toggle(
|
|
|
|
'hideUnused',
|
|
|
|
vAPI.localStorage.getItem('hideUnusedFilterLists') === '1'
|
|
|
|
);
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
uDom('#autoUpdate').on('change', autoUpdateCheckboxChanged);
|
2017-01-20 14:40:19 +01:00
|
|
|
uDom('#parseCosmeticFilters').on('change', onFilteringSettingsChanged);
|
|
|
|
uDom('#ignoreGenericCosmeticFilters').on('change', onFilteringSettingsChanged);
|
2015-08-11 21:29:14 +02:00
|
|
|
uDom('#buttonApply').on('click', buttonApplyHandler);
|
|
|
|
uDom('#buttonUpdate').on('click', buttonUpdateHandler);
|
|
|
|
uDom('#buttonPurgeAll').on('click', buttonPurgeAllHandler);
|
2017-01-22 22:05:16 +01:00
|
|
|
uDom('#listsOfBlockedHostsPrompt').on('click', toggleUnusedLists);
|
2015-08-11 21:29:14 +02:00
|
|
|
uDom('#lists').on('click', '.groupEntry > span', groupEntryClickHandler);
|
2017-01-22 22:05:16 +01:00
|
|
|
uDom('#lists').on('change', '.listEntry > input', onFilteringSettingsChanged);
|
|
|
|
uDom('#lists').on('click', '.listEntry > a.remove', onRemoveExternalList);
|
|
|
|
uDom('#lists').on('click', 'span.cache', onPurgeClicked);
|
|
|
|
uDom('#externalLists').on('input', onFilteringSettingsChanged);
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2017-01-22 22:05:16 +01:00
|
|
|
renderFilterLists();
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|
|
|
|
|