1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00
uMatrix/src/js/start.js

116 lines
3.3 KiB
JavaScript
Raw Normal View History

2014-10-18 08:01:09 +13:00
/*******************************************************************************
uMatrix - a browser extension to black/white list requests.
Copyright (C) 2014-present Raymond Hill
2014-10-18 08:01:09 +13: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/uMatrix
*/
// ORDER IS IMPORTANT
/******************************************************************************/
2015-05-03 04:07:40 +12:00
// Load everything
2014-10-26 16:30:43 +13:00
2014-10-28 17:14:15 +13:00
(function() {
2015-05-03 04:07:40 +12:00
'use strict';
2014-10-26 16:30:43 +13:00
/******************************************************************************/
2015-05-03 04:07:40 +12:00
var µm = µMatrix;
2014-10-18 08:01:09 +13:00
2015-05-03 23:10:05 +12:00
/******************************************************************************/
var processCallbackQueue = function(queue, callback) {
var processOne = function() {
var fn = queue.pop();
if ( fn ) {
fn(processOne);
} else if ( typeof callback === 'function' ) {
callback();
}
};
processOne();
};
/******************************************************************************/
2015-05-03 04:07:40 +12:00
var onAllDone = function() {
µm.webRequest.start();
2018-01-30 11:19:42 +13:00
µm.loadRecipes();
// https://github.com/uBlockOrigin/uMatrix-issues/issues/63
// Ensure user settings are fully loaded before launching the
// asset updater.
µm.assets.addObserver(µm.assetObserver.bind(µm));
µm.scheduleAssetUpdater(µm.userSettings.autoUpdate ? 7 * 60 * 1000 : 0);
vAPI.cloud.start([ 'myRulesPane' ]);
2015-05-09 01:02:12 +12:00
};
2018-01-07 12:00:28 +13:00
/******************************************************************************/
2015-05-09 01:02:12 +12:00
var onPSLReady = function() {
// TODO: Promisify
let count = 4;
const countdown = ( ) => {
count -= 1;
if ( count !== 0 ) { return; }
onAllDone();
};
µm.loadRawSettings(countdown);
µm.loadMatrix(countdown);
µm.loadHostsFiles(countdown);
vAPI.tabs.getAll(tabs => {
const pageStore =
µm.pageStoreFactory(µm.tabContextManager.mustLookup(vAPI.noTabId));
pageStore.title = vAPI.i18n('statsPageDetailedBehindTheScenePage');
µm.pageStores.set(vAPI.noTabId, pageStore);
if ( Array.isArray(tabs) ) {
for ( const tab of tabs ) {
µm.tabContextManager.push(tab.id, tab.url, 'newURL');
}
}
countdown();
});
2015-05-03 04:07:40 +12:00
};
2014-10-18 08:01:09 +13:00
2018-01-07 12:00:28 +13:00
/******************************************************************************/
processCallbackQueue(µm.onBeforeStartQueue, function() {
// TODO: Promisify
let count = 2;
const countdown = ( ) => {
count -= 1;
if ( count !== 0 ) { return; }
onPSLReady();
};
µm.publicSuffixList.load(countdown);
µm.loadUserSettings(countdown);
});
2014-10-18 08:01:09 +13:00
/******************************************************************************/
2014-10-26 16:30:43 +13:00
})();
2014-10-26 16:30:43 +13:00
/******************************************************************************/