2014-07-17 16:52:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-03-12 13:28:07 +01:00
|
|
|
Copyright (C) 2014-2018 Raymond Hill
|
2014-07-17 16:52: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
|
|
|
|
*/
|
|
|
|
|
2018-03-12 13:28:07 +01:00
|
|
|
/* global CodeMirror, uDom, uBlockDashboard */
|
2014-07-17 16:52:43 +02:00
|
|
|
|
2014-11-29 19:04:34 +01:00
|
|
|
'use strict';
|
|
|
|
|
2014-07-17 16:52:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
(( ) => {
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
const reComment = /^\s*#\s*/;
|
|
|
|
|
|
|
|
const directiveFromLine = function(line) {
|
|
|
|
const match = reComment.exec(line);
|
|
|
|
return match === null
|
|
|
|
? line.trim()
|
|
|
|
: line.slice(match.index + match[0].length).trim();
|
|
|
|
};
|
2014-07-17 16:52:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2018-03-12 13:28:07 +01:00
|
|
|
CodeMirror.defineMode("ubo-whitelist-directives", function() {
|
2019-05-18 20:20:05 +02:00
|
|
|
const reRegex = /^\/.+\/$/;
|
2018-03-12 13:28:07 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
token: function(stream) {
|
2019-05-18 20:20:05 +02:00
|
|
|
const line = stream.string.trim();
|
2018-03-12 13:28:07 +01:00
|
|
|
stream.skipToEnd();
|
|
|
|
if ( reBadHostname === undefined ) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if ( reComment.test(line) ) {
|
2019-05-18 20:20:05 +02:00
|
|
|
return whitelistDefaultSet.has(directiveFromLine(line))
|
|
|
|
? 'builtin comment'
|
|
|
|
: 'comment';
|
2018-03-12 13:28:07 +01:00
|
|
|
}
|
|
|
|
if ( line.indexOf('/') === -1 ) {
|
2019-05-18 20:20:05 +02:00
|
|
|
if ( reBadHostname.test(line) ) { return 'error'; }
|
|
|
|
if ( whitelistDefaultSet.has(line.trim()) ) {
|
|
|
|
return 'builtin';
|
|
|
|
}
|
|
|
|
return null;
|
2018-03-12 13:28:07 +01:00
|
|
|
}
|
|
|
|
if ( reRegex.test(line) ) {
|
|
|
|
try {
|
|
|
|
new RegExp(line.slice(1, -1));
|
|
|
|
} catch(ex) {
|
|
|
|
return 'error';
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return reHostnameExtractor.test(line) ? null : 'error';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
let reBadHostname;
|
|
|
|
let reHostnameExtractor;
|
|
|
|
let whitelistDefaultSet = new Set();
|
2014-07-17 16:52:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const messaging = vAPI.messaging;
|
|
|
|
const noopFunc = function(){};
|
|
|
|
|
|
|
|
let cachedWhitelist = '';
|
2018-03-12 13:28:07 +01:00
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const cmEditor = new CodeMirror(
|
2018-03-12 13:28:07 +01:00
|
|
|
document.getElementById('whitelist'),
|
|
|
|
{
|
|
|
|
autofocus: true,
|
|
|
|
lineNumbers: true,
|
|
|
|
lineWrapping: true,
|
|
|
|
styleActiveLine: true
|
|
|
|
}
|
|
|
|
);
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2018-03-28 01:10:31 +02:00
|
|
|
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
|
|
|
|
2018-03-12 13:28:07 +01:00
|
|
|
/******************************************************************************/
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const whitelistChanged = function() {
|
|
|
|
const whitelistElem = uDom.nodeFromId('whitelist');
|
|
|
|
const bad = whitelistElem.querySelector('.cm-error') !== null;
|
|
|
|
const changedWhitelist = cmEditor.getValue().trim();
|
|
|
|
const changed = changedWhitelist !== cachedWhitelist;
|
2018-03-12 13:28:07 +01:00
|
|
|
uDom.nodeFromId('whitelistApply').disabled = !changed || bad;
|
|
|
|
uDom.nodeFromId('whitelistRevert').disabled = !changed;
|
|
|
|
CodeMirror.commands.save = changed && !bad ? applyChanges : noopFunc;
|
|
|
|
};
|
2016-12-26 17:35:37 +01:00
|
|
|
|
2018-03-12 13:28:07 +01:00
|
|
|
cmEditor.on('changes', whitelistChanged);
|
2016-12-26 17:35:37 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-09-17 21:15:01 +02:00
|
|
|
const renderWhitelist = async function() {
|
|
|
|
const details = await messaging.send('dashboard', {
|
|
|
|
what: 'getWhitelist',
|
|
|
|
});
|
|
|
|
|
|
|
|
const first = reBadHostname === undefined;
|
|
|
|
if ( first ) {
|
|
|
|
reBadHostname = new RegExp(details.reBadHostname);
|
|
|
|
reHostnameExtractor = new RegExp(details.reHostnameExtractor);
|
|
|
|
whitelistDefaultSet = new Set(details.whitelistDefault);
|
|
|
|
}
|
|
|
|
const toAdd = new Set(whitelistDefaultSet);
|
|
|
|
for ( const line of details.whitelist ) {
|
|
|
|
const directive = directiveFromLine(line);
|
|
|
|
if ( whitelistDefaultSet.has(directive) === false ) { continue; }
|
|
|
|
toAdd.delete(directive);
|
|
|
|
if ( toAdd.size === 0 ) { break; }
|
|
|
|
}
|
|
|
|
if ( toAdd.size !== 0 ) {
|
|
|
|
details.whitelist.push(...Array.from(toAdd).map(a => `# ${a}`));
|
|
|
|
}
|
|
|
|
details.whitelist.sort((a, b) => {
|
|
|
|
const ad = directiveFromLine(a);
|
|
|
|
const bd = directiveFromLine(b);
|
|
|
|
const abuiltin = whitelistDefaultSet.has(ad);
|
|
|
|
if ( abuiltin !== whitelistDefaultSet.has(bd) ) {
|
|
|
|
return abuiltin ? -1 : 1;
|
2018-03-12 13:28:07 +01:00
|
|
|
}
|
2019-09-17 21:15:01 +02:00
|
|
|
return ad.localeCompare(bd);
|
|
|
|
});
|
|
|
|
let whitelistStr = details.whitelist.join('\n').trim();
|
|
|
|
cachedWhitelist = whitelistStr;
|
|
|
|
if ( whitelistStr !== '' ) {
|
|
|
|
whitelistStr += '\n';
|
|
|
|
}
|
|
|
|
cmEditor.setValue(whitelistStr);
|
|
|
|
if ( first ) {
|
|
|
|
cmEditor.clearHistory();
|
|
|
|
}
|
2014-07-17 16:52:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const handleImportFilePicker = function() {
|
2019-05-26 14:03:44 +02:00
|
|
|
const file = this.files[0];
|
|
|
|
if ( file === undefined || file.name === '' ) { return; }
|
|
|
|
if ( file.type.indexOf('text') !== 0 ) { return; }
|
|
|
|
const fr = new FileReader();
|
|
|
|
fr.onload = ev => {
|
|
|
|
if ( ev.type !== 'load' ) { return; }
|
2018-03-12 13:28:07 +01:00
|
|
|
cmEditor.setValue(
|
|
|
|
[
|
|
|
|
cmEditor.getValue().trim(),
|
2019-05-26 14:03:44 +02:00
|
|
|
fr.result.trim()
|
2018-03-12 13:28:07 +01:00
|
|
|
].join('\n').trim()
|
|
|
|
);
|
2014-07-17 16:52:43 +02:00
|
|
|
};
|
2014-10-13 17:01:31 +02:00
|
|
|
fr.readAsText(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const startImportFilePicker = function() {
|
|
|
|
const input = document.getElementById('importFilePicker');
|
2014-10-13 17:01:31 +02:00
|
|
|
// 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();
|
2014-07-17 16:52:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const exportWhitelistToFile = function() {
|
|
|
|
const val = cmEditor.getValue().trim();
|
2016-12-26 17:35:37 +01:00
|
|
|
if ( val === '' ) { return; }
|
2019-05-18 20:20:05 +02:00
|
|
|
const filename =
|
|
|
|
vAPI.i18n('whitelistExportFilename')
|
|
|
|
.replace('{{datetime}}', uBlockDashboard.dateNowToSensibleString())
|
|
|
|
.replace(/ +/g, '_');
|
2014-11-29 19:04:34 +01:00
|
|
|
vAPI.download({
|
2019-05-18 20:20:05 +02:00
|
|
|
'url': `data:text/plain;charset=utf-8,${encodeURIComponent(val + '\n')}`,
|
2014-11-30 02:36:53 +01:00
|
|
|
'filename': filename
|
2014-11-29 19:04:34 +01:00
|
|
|
});
|
2014-07-17 16:52:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-09-17 21:15:01 +02:00
|
|
|
const applyChanges = async function() {
|
2018-03-12 13:28:07 +01:00
|
|
|
cachedWhitelist = cmEditor.getValue().trim();
|
2019-09-17 21:15:01 +02:00
|
|
|
await messaging.send('dashboard', {
|
|
|
|
what: 'setWhitelist',
|
|
|
|
whitelist: cachedWhitelist,
|
|
|
|
});
|
|
|
|
renderWhitelist();
|
2014-07-17 16:52:43 +02:00
|
|
|
};
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const revertChanges = function() {
|
|
|
|
let content = cachedWhitelist;
|
2018-03-12 13:28:07 +01:00
|
|
|
if ( content !== '' ) { content += '\n'; }
|
|
|
|
cmEditor.setValue(content);
|
2015-08-12 18:17:39 +02:00
|
|
|
};
|
|
|
|
|
2014-07-17 16:52:43 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const getCloudData = function() {
|
2018-03-12 13:28:07 +01:00
|
|
|
return cmEditor.getValue();
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2019-05-18 20:20:05 +02:00
|
|
|
const setCloudData = function(data, append) {
|
2018-03-12 13:28:07 +01:00
|
|
|
if ( typeof data !== 'string' ) { return; }
|
2015-08-12 18:17:39 +02:00
|
|
|
if ( append ) {
|
2018-03-12 13:28:07 +01:00
|
|
|
data = uBlockDashboard.mergeNewLines(cmEditor.getValue().trim(), data);
|
2015-08-12 18:17:39 +02:00
|
|
|
}
|
2018-03-12 13:28:07 +01:00
|
|
|
cmEditor.setValue(data.trim() + '\n');
|
2015-08-11 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
self.cloud.onPush = getCloudData;
|
|
|
|
self.cloud.onPull = setCloudData;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-19 21:35:00 +02:00
|
|
|
self.hasUnsavedData = function() {
|
|
|
|
return cmEditor.getValue().trim() !== cachedWhitelist;
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
uDom('#importWhitelistFromFile').on('click', startImportFilePicker);
|
|
|
|
uDom('#importFilePicker').on('change', handleImportFilePicker);
|
|
|
|
uDom('#exportWhitelistToFile').on('click', exportWhitelistToFile);
|
2019-09-17 21:15:01 +02:00
|
|
|
uDom('#whitelistApply').on('click', ( ) => { applyChanges(); });
|
2015-08-12 18:17:39 +02:00
|
|
|
uDom('#whitelistRevert').on('click', revertChanges);
|
2014-07-17 16:52:43 +02:00
|
|
|
|
2015-08-11 21:29:14 +02:00
|
|
|
renderWhitelist();
|
2014-07-17 16:52:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|