mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-17 16:02:33 +01:00
22022f636f
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1664 The changes are enough to fulfill the related issue. A new platform has been added in order to allow for building a NodeJS package. From the root of the project: ./tools/make-nodejs This will create new uBlock0.nodejs directory in the ./dist/build directory, which is a valid NodeJS package. From the root of the package, you can try: node test This will instantiate a static network filtering engine, populated by easylist and easyprivacy, which can be used to match network requests by filling the appropriate filtering context object. The test.js file contains code which is typical example of usage of the package. Limitations: the NodeJS package can't execute the WASM versions of the code since the WASM module requires the use of fetch(), which is not available in NodeJS. This is a first pass at modularizing the codebase, and while at it a number of opportunistic small rewrites have also been made. This commit requires the minimum supported version for Chromium and Firefox be raised to 61 and 60 respectively.
109 lines
3.6 KiB
JavaScript
109 lines
3.6 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
Copyright (C) 2014-present 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
|
|
*/
|
|
|
|
/* global CodeMirror, uBlockDashboard */
|
|
|
|
'use strict';
|
|
|
|
/******************************************************************************/
|
|
|
|
import './codemirror/ubo-static-filtering.js';
|
|
|
|
/******************************************************************************/
|
|
|
|
(async ( ) => {
|
|
const subscribeURL = new URL(document.location);
|
|
const subscribeParams = subscribeURL.searchParams;
|
|
const assetKey = subscribeParams.get('url');
|
|
if ( assetKey === null ) { return; }
|
|
|
|
const subscribeElem = subscribeParams.get('subscribe') !== null
|
|
? document.getElementById('subscribe')
|
|
: null;
|
|
if ( subscribeElem !== null && subscribeURL.hash !== '#subscribed' ) {
|
|
const title = subscribeParams.get('title');
|
|
const promptElem = document.getElementById('subscribePrompt');
|
|
promptElem.children[0].textContent = title;
|
|
const a = promptElem.children[1];
|
|
a.textContent = assetKey;
|
|
a.setAttribute('href', assetKey);
|
|
subscribeElem.classList.remove('hide');
|
|
}
|
|
|
|
const cmEditor = new CodeMirror(document.getElementById('content'), {
|
|
autofocus: true,
|
|
foldGutter: true,
|
|
gutters: [ 'CodeMirror-linenumbers', 'CodeMirror-foldgutter' ],
|
|
lineNumbers: true,
|
|
lineWrapping: true,
|
|
matchBrackets: true,
|
|
maxScanLines: 1,
|
|
readOnly: true,
|
|
styleActiveLine: {
|
|
nonEmpty: true,
|
|
},
|
|
});
|
|
|
|
uBlockDashboard.patchCodeMirrorEditor(cmEditor);
|
|
|
|
const hints = await vAPI.messaging.send('dashboard', {
|
|
what: 'getAutoCompleteDetails'
|
|
});
|
|
if ( hints instanceof Object ) {
|
|
const mode = cmEditor.getMode();
|
|
if ( mode.setHints instanceof Function ) {
|
|
mode.setHints(hints);
|
|
}
|
|
}
|
|
|
|
const details = await vAPI.messaging.send('default', {
|
|
what : 'getAssetContent',
|
|
url: assetKey,
|
|
});
|
|
cmEditor.setValue(details && details.content || '');
|
|
|
|
if ( subscribeElem !== null ) {
|
|
document.getElementById('subscribeButton').addEventListener(
|
|
'click',
|
|
( ) => {
|
|
subscribeElem.classList.add('hide');
|
|
vAPI.messaging.send('scriptlets', {
|
|
what: 'applyFilterListSelection',
|
|
toImport: assetKey,
|
|
}).then(( ) => {
|
|
vAPI.messaging.send('scriptlets', {
|
|
what: 'reloadAllFilters'
|
|
});
|
|
});
|
|
},
|
|
{ once: true }
|
|
);
|
|
}
|
|
|
|
if ( details.sourceURL ) {
|
|
const a = document.querySelector('.cm-search-widget .sourceURL');
|
|
a.setAttribute('href', details.sourceURL);
|
|
a.setAttribute('title', details.sourceURL);
|
|
}
|
|
|
|
document.body.classList.remove('loading');
|
|
})();
|