uBlock/src/js/1p-filters.js

220 lines
6.9 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
2016-03-06 16:51:06 +01:00
uBlock Origin - a browser extension to block requests.
Copyright (C) 2014-2018 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
*/
/* global CodeMirror, uDom, uBlockDashboard */
'use strict';
2014-06-24 00:42:43 +02:00
/******************************************************************************/
(function() {
/******************************************************************************/
2016-03-06 16:51:06 +01:00
var messaging = vAPI.messaging;
2014-06-24 00:42:43 +02:00
var cachedUserFilters = '';
var cmEditor = new CodeMirror(
document.getElementById('userFilters'),
{
lineNumbers: true,
lineWrapping: true,
}
);
2014-06-24 00:42:43 +02:00
/******************************************************************************/
// This is to give a visual hint that the content of user blacklist has changed.
function userFiltersChanged(changed) {
if ( typeof changed !== 'boolean' ) {
changed = cmEditor.getValue().trim() !== cachedUserFilters;
}
uDom.nodeFromId('userFiltersApply').disabled = !changed;
uDom.nodeFromId('userFiltersRevert').disabled = !changed;
2014-06-24 00:42:43 +02:00
}
/******************************************************************************/
function renderUserFilters(first) {
2014-06-24 00:42:43 +02:00
var onRead = function(details) {
if ( details.error ) { return; }
var content = details.content.trim();
cachedUserFilters = content;
if ( content.length !== 0 ) {
content += '\n';
}
cmEditor.setValue(content);
if ( first ) {
cmEditor.clearHistory();
}
userFiltersChanged(false);
2014-06-24 00:42:43 +02:00
};
2016-03-06 16:51:06 +01:00
messaging.send('dashboard', { what: 'readUserFilters' }, onRead);
2014-06-24 00:42:43 +02:00
}
/******************************************************************************/
function allFiltersApplyHandler() {
2016-03-06 16:51:06 +01:00
messaging.send('dashboard', { what: 'reloadAllFilters' });
2014-07-02 18:02:29 +02:00
uDom('#userFiltersApply').prop('disabled', true );
2014-06-24 00:42:43 +02:00
}
/******************************************************************************/
var handleImportFilePicker = function() {
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/1004
2015-03-15 19:07:30 +01:00
// Support extraction of filters from ABP backup file
var abpImporter = function(s) {
var reAbpSubscriptionExtractor = /\n\[Subscription\]\n+url=~[^\n]+([\x08-\x7E]*?)(?:\[Subscription\]|$)/ig;
var reAbpFilterExtractor = /\[Subscription filters\]([\x08-\x7E]*?)(?:\[Subscription\]|$)/i;
var matches = reAbpSubscriptionExtractor.exec(s);
2015-03-15 19:07:30 +01:00
// Not an ABP backup file
if ( matches === null ) {
return s;
}
//
2015-03-15 19:07:30 +01:00
var out = [];
var filterMatch;
2015-03-15 19:07:30 +01:00
while ( matches !== null ) {
if ( matches.length === 2 ) {
filterMatch = reAbpFilterExtractor.exec(matches[1].trim());
if ( filterMatch !== null && filterMatch.length === 2 ) {
out.push(filterMatch[1].trim().replace(/\\\[/g, '['));
}
2015-03-15 19:07:30 +01:00
}
matches = reAbpSubscriptionExtractor.exec(s);
2015-03-15 19:07:30 +01:00
}
return out.join('\n');
};
2014-06-24 00:42:43 +02:00
var fileReaderOnLoadHandler = function() {
2015-03-15 19:07:30 +01:00
var sanitized = abpImporter(this.result);
2014-07-02 18:02:29 +02:00
var textarea = uDom('#userFilters');
2015-03-15 19:07:30 +01:00
textarea.val(textarea.val().trim() + '\n' + sanitized);
2014-06-24 00:42:43 +02:00
userFiltersChanged();
};
2014-10-13 17:01:31 +02:00
var file = this.files[0];
if ( file === undefined || file.name === '' ) {
return;
}
if ( file.type.indexOf('text') !== 0 ) {
return;
}
var fr = new FileReader();
fr.onload = fileReaderOnLoadHandler;
fr.readAsText(file);
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-10-13 17:01:31 +02:00
var startImportFilePicker = function() {
var input = document.getElementById('importFilePicker');
// Reset to empty string, this will ensure an change event is properly
// triggered if the user pick a file, even if it is the same as the last
// one picked.
input.value = '';
input.click();
};
/******************************************************************************/
var exportUserFiltersToFile = function() {
var val = uDom('#userFilters').val().trim();
if ( val === '' ) {
return;
}
var filename = vAPI.i18n('1pExportFilename')
2016-10-13 19:25:57 +02:00
.replace('{{datetime}}', uBlockDashboard.dateNowToSensibleString())
.replace(/ +/g, '_');
vAPI.download({
'url': 'data:text/plain;charset=utf-8,' + encodeURIComponent(val + '\n'),
'filename': filename
});
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
var applyChanges = function() {
2014-06-24 00:42:43 +02:00
var onWritten = function(details) {
if ( details.error ) { return; }
2014-06-24 00:42:43 +02:00
cachedUserFilters = details.content.trim();
userFiltersChanged();
allFiltersApplyHandler();
};
2015-12-07 14:59:22 +01:00
2014-06-24 00:42:43 +02:00
var request = {
what: 'writeUserFilters',
content: cmEditor.getValue()
2014-06-24 00:42:43 +02:00
};
2016-03-06 16:51:06 +01:00
messaging.send('dashboard', request, onWritten);
};
2014-06-24 00:42:43 +02:00
var revertChanges = function() {
var content = cachedUserFilters;
if ( content.length !== 0 ) {
content += '\n';
}
cmEditor.setValue(content);
userFiltersChanged();
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2015-08-11 21:29:14 +02:00
var getCloudData = function() {
return cmEditor.getValue();
2015-08-11 21:29:14 +02:00
};
var setCloudData = function(data, append) {
2015-08-11 21:29:14 +02:00
if ( typeof data !== 'string' ) {
return;
}
var textarea = uDom.nodeFromId('userFilters');
if ( append ) {
data = uBlockDashboard.mergeNewLines(textarea.value, data);
}
cmEditor.setValue(data);
2015-08-11 21:29:14 +02:00
userFiltersChanged();
};
self.cloud.onPush = getCloudData;
self.cloud.onPull = setCloudData;
/******************************************************************************/
// Handle user interaction
uDom('#importUserFiltersFromFile').on('click', startImportFilePicker);
uDom('#importFilePicker').on('change', handleImportFilePicker);
uDom('#exportUserFiltersToFile').on('click', exportUserFiltersToFile);
uDom('#userFiltersApply').on('click', applyChanges);
uDom('#userFiltersRevert').on('click', revertChanges);
2014-06-24 00:42:43 +02:00
renderUserFilters(true);
2014-06-24 00:42:43 +02:00
cmEditor.on('changes', userFiltersChanged);
CodeMirror.commands.save = applyChanges;
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-10-13 17:01:31 +02:00
// https://www.youtube.com/watch?v=UNilsLf6eW4
2014-06-24 00:42:43 +02:00
})();