2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-08-13 22:42:58 +02:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-07-20 19:52:14 +02:00
|
|
|
Copyright (C) 2014-present 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-08-13 22:42:58 +02:00
|
|
|
'use strict';
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-02-13 18:10:10 +01:00
|
|
|
// Load all: executed once.
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2015-03-11 23:26:00 +01:00
|
|
|
µBlock.restart = (function() {
|
2014-08-21 01:39:49 +02:00
|
|
|
|
2015-02-13 18:10:10 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
var µb = µBlock;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
vAPI.app.onShutdown = function() {
|
|
|
|
µb.staticFilteringReverseLookup.shutdown();
|
2017-01-18 19:17:47 +01:00
|
|
|
µb.assets.updateStop();
|
2015-06-11 18:12:23 +02:00
|
|
|
µb.staticNetFilteringEngine.reset();
|
2017-12-28 19:49:02 +01:00
|
|
|
µb.staticExtFilteringEngine.reset();
|
2015-06-11 18:12:23 +02:00
|
|
|
µb.sessionFirewall.reset();
|
|
|
|
µb.permanentFirewall.reset();
|
|
|
|
µb.sessionURLFiltering.reset();
|
|
|
|
µb.permanentURLFiltering.reset();
|
2018-09-03 20:06:49 +02:00
|
|
|
µb.sessionSwitches.reset();
|
|
|
|
µb.permanentSwitches.reset();
|
2015-06-11 18:12:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-03-05 14:25:55 +01: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-02-13 18:10:10 +01:00
|
|
|
// Final initialization steps after all needed assets are in memory.
|
|
|
|
// - Initialize internal state with maybe already existing tabs.
|
|
|
|
// - Schedule next update operation.
|
|
|
|
|
|
|
|
var onAllReady = function() {
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/184
|
2015-02-13 18:10:10 +01:00
|
|
|
// Check for updates not too far in the future.
|
2017-01-18 19:17:47 +01:00
|
|
|
µb.assets.addObserver(µb.assetObserver.bind(µb));
|
|
|
|
µb.scheduleAssetUpdater(µb.userSettings.autoUpdate ? 7 * 60 * 1000 : 0);
|
2015-02-13 18:10:10 +01:00
|
|
|
|
2016-10-16 19:04:31 +02:00
|
|
|
// vAPI.cloud is optional.
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( µb.cloudStorageSupported ) {
|
2016-10-16 19:04:31 +02:00
|
|
|
vAPI.cloud.start([
|
|
|
|
'tpFiltersPane',
|
|
|
|
'myFiltersPane',
|
|
|
|
'myRulesPane',
|
|
|
|
'whitelistPane'
|
|
|
|
]);
|
|
|
|
}
|
2015-08-11 21:29:14 +02:00
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
µb.contextMenu.update(null);
|
2016-01-03 19:58:25 +01:00
|
|
|
µb.firstInstall = false;
|
2016-11-03 16:20:47 +01:00
|
|
|
|
2017-03-05 14:25:55 +01:00
|
|
|
processCallbackQueue(µb.onStartCompletedQueue);
|
2015-02-13 18:10:10 +01:00
|
|
|
};
|
2014-12-20 21:28:16 +01:00
|
|
|
|
2014-08-21 01:39:49 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
// Filtering engines dependencies:
|
|
|
|
// - PSL
|
2014-08-21 01:39:49 +02:00
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
var onPSLReady = function() {
|
2018-04-06 22:02:35 +02:00
|
|
|
µb.selfieManager.load(function(valid) {
|
|
|
|
if ( valid === true ) {
|
|
|
|
return onAllReady();
|
|
|
|
}
|
|
|
|
µb.loadFilterLists(onAllReady);
|
|
|
|
});
|
2015-02-24 19:48:03 +01:00
|
|
|
};
|
2014-09-08 23:46:58 +02:00
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2018-07-19 00:00:55 +02:00
|
|
|
var onCommandShortcutsReady = function(commandShortcuts) {
|
|
|
|
if ( Array.isArray(commandShortcuts) === false ) { return; }
|
|
|
|
µb.commandShortcuts = new Map(commandShortcuts);
|
2018-07-20 19:52:14 +02:00
|
|
|
if ( µb.canUpdateShortcuts === false ) { return; }
|
2018-07-19 00:00:55 +02:00
|
|
|
for ( let entry of commandShortcuts ) {
|
|
|
|
vAPI.commands.update({ name: entry[0], shortcut: entry[1] });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
// To bring older versions up to date
|
|
|
|
|
|
|
|
var onVersionReady = function(lastVersion) {
|
2018-03-30 14:55:51 +02:00
|
|
|
if ( lastVersion === vAPI.app.version ) { return; }
|
|
|
|
|
2018-04-02 17:03:12 +02:00
|
|
|
// Since AMO does not allow updating resources.txt, force a reload when a
|
|
|
|
// new version is detected, as resources.txt may have changed since last
|
|
|
|
// release. This will be done only for release versions of Firefox.
|
|
|
|
if (
|
2018-04-05 13:29:15 +02:00
|
|
|
vAPI.webextFlavor.soup.has('firefox') &&
|
2018-09-03 20:06:49 +02:00
|
|
|
vAPI.webextFlavor.soup.has('devbuild') === false
|
2018-04-02 17:03:12 +02:00
|
|
|
) {
|
|
|
|
µb.redirectEngine.invalidateResourcesSelfie();
|
|
|
|
}
|
|
|
|
|
2018-09-11 14:37:32 +02:00
|
|
|
// If unused, just comment out for when we need to compare versions in the
|
|
|
|
// future.
|
|
|
|
let intFromVersion = function(s) {
|
|
|
|
let parts = s.match(/(?:^|\.|b|rc)\d+/g);
|
|
|
|
if ( parts === null ) { return 0; }
|
|
|
|
let vint = 0;
|
|
|
|
for ( let i = 0; i < 4; i++ ) {
|
|
|
|
let pstr = parts[i] || '';
|
|
|
|
let pint;
|
|
|
|
if ( pstr === '' ) {
|
|
|
|
pint = 0;
|
|
|
|
} else if ( pstr.startsWith('.') || pstr.startsWith('b') ) {
|
|
|
|
pint = parseInt(pstr.slice(1), 10);
|
|
|
|
} else if ( pstr.startsWith('rc') ) {
|
2018-09-11 14:42:02 +02:00
|
|
|
pint = parseInt(pstr.slice(2), 10) + 100;
|
2018-09-11 14:37:32 +02:00
|
|
|
} else {
|
|
|
|
pint = parseInt(pstr, 10);
|
|
|
|
}
|
|
|
|
vint = vint * 1000 + pint;
|
|
|
|
}
|
|
|
|
return vint;
|
|
|
|
};
|
|
|
|
|
2018-09-11 14:42:02 +02:00
|
|
|
let lastVersionInt = intFromVersion(lastVersion);
|
|
|
|
|
|
|
|
if ( lastVersionInt <= 1016021007 ) {
|
2018-09-11 14:37:32 +02:00
|
|
|
µb.sessionSwitches.toggle('no-scripting', 'behind-the-scene', 2);
|
|
|
|
µb.permanentSwitches.toggle('no-scripting', 'behind-the-scene', 2);
|
|
|
|
µb.saveHostnameSwitches();
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/212#issuecomment-419741324
|
2018-09-11 14:42:02 +02:00
|
|
|
if ( lastVersionInt <= 1015024000 ) {
|
2018-09-11 14:37:32 +02:00
|
|
|
if ( µb.hiddenSettings.manualUpdateAssetFetchPeriod === 2000 ) {
|
|
|
|
µb.hiddenSettings.manualUpdateAssetFetchPeriod = 500;
|
|
|
|
µb.saveHiddenSettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:55:51 +02:00
|
|
|
vAPI.storage.set({ version: vAPI.app.version });
|
2015-02-13 18:10:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-09-08 23:46:58 +02:00
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/226
|
2015-02-13 18:10:10 +01:00
|
|
|
// Whitelist in memory.
|
|
|
|
// Whitelist parser needs PSL to be ready.
|
|
|
|
// gorhill 2014-12-15: not anymore
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
var onNetWhitelistReady = function(netWhitelistRaw) {
|
|
|
|
µb.netWhitelist = µb.whitelistFromString(netWhitelistRaw);
|
|
|
|
µb.netWhitelistModifyTime = Date.now();
|
2015-02-13 18:10:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// User settings are in memory
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
var onUserSettingsReady = function(fetched) {
|
|
|
|
var userSettings = µb.userSettings;
|
|
|
|
|
|
|
|
fromFetch(userSettings, fetched);
|
2014-08-21 16:56:36 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( µb.privacySettingsSupported ) {
|
|
|
|
vAPI.browserSettings.set({
|
|
|
|
'hyperlinkAuditing': !userSettings.hyperlinkAuditingDisabled,
|
|
|
|
'prefetching': !userSettings.prefetchingDisabled,
|
|
|
|
'webrtcIPAddress': !userSettings.webrtcIPAddressHidden
|
|
|
|
});
|
|
|
|
}
|
2015-06-01 21:03:22 +02:00
|
|
|
|
2015-03-27 18:00:55 +01:00
|
|
|
µb.permanentFirewall.fromString(fetched.dynamicFilteringString);
|
2015-02-13 18:10:10 +01:00
|
|
|
µb.sessionFirewall.assign(µb.permanentFirewall);
|
2015-05-21 20:15:17 +02:00
|
|
|
µb.permanentURLFiltering.fromString(fetched.urlFilteringString);
|
|
|
|
µb.sessionURLFiltering.assign(µb.permanentURLFiltering);
|
2018-09-03 20:06:49 +02:00
|
|
|
µb.permanentSwitches.fromString(fetched.hostnameSwitchesString);
|
|
|
|
µb.sessionSwitches.assign(µb.permanentSwitches);
|
2015-02-13 18:10:10 +01:00
|
|
|
|
2016-08-13 22:42:58 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/1892
|
|
|
|
// For first installation on a battery-powered device, disable generic
|
|
|
|
// cosmetic filtering.
|
2018-04-30 19:00:12 +02:00
|
|
|
if ( µb.firstInstall && vAPI.webextFlavor.soup.has('mobile') ) {
|
2016-08-13 22:42:58 +02:00
|
|
|
userSettings.ignoreGenericCosmeticFilters = true;
|
|
|
|
}
|
2015-02-13 18:10:10 +01:00
|
|
|
};
|
|
|
|
|
2015-02-24 00:31:29 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
// Housekeeping, as per system setting changes
|
|
|
|
|
|
|
|
var onSystemSettingsReady = function(fetched) {
|
2015-02-24 00:31:29 +01:00
|
|
|
var mustSaveSystemSettings = false;
|
2015-02-24 19:48:03 +01:00
|
|
|
if ( fetched.compiledMagic !== µb.systemSettings.compiledMagic ) {
|
2017-01-18 19:17:47 +01:00
|
|
|
µb.assets.remove(/^compiled\//);
|
2015-02-24 00:31:29 +01:00
|
|
|
mustSaveSystemSettings = true;
|
|
|
|
}
|
2015-02-24 19:48:03 +01:00
|
|
|
if ( fetched.selfieMagic !== µb.systemSettings.selfieMagic ) {
|
2015-02-24 00:31:29 +01:00
|
|
|
mustSaveSystemSettings = true;
|
|
|
|
}
|
|
|
|
if ( mustSaveSystemSettings ) {
|
2015-03-01 23:25:48 +01:00
|
|
|
fetched.selfie = null;
|
2015-11-29 23:06:58 +01:00
|
|
|
µb.selfieManager.destroy();
|
2018-04-06 22:02:35 +02:00
|
|
|
vAPI.storage.set(µb.systemSettings);
|
2015-02-24 00:31:29 +01:00
|
|
|
}
|
2015-02-24 19:48:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var onFirstFetchReady = function(fetched) {
|
2016-01-03 19:58:25 +01:00
|
|
|
// https://github.com/gorhill/uBlock/issues/747
|
|
|
|
µb.firstInstall = fetched.version === '0.0.0.0';
|
|
|
|
|
2015-02-24 19:48:03 +01:00
|
|
|
// Order is important -- do not change:
|
|
|
|
onSystemSettingsReady(fetched);
|
2015-03-07 05:36:09 +01:00
|
|
|
fromFetch(µb.localSettings, fetched);
|
2015-02-24 19:48:03 +01:00
|
|
|
onUserSettingsReady(fetched);
|
2015-03-07 05:36:09 +01:00
|
|
|
fromFetch(µb.restoreBackupSettings, fetched);
|
2015-02-24 19:48:03 +01:00
|
|
|
onNetWhitelistReady(fetched.netWhitelist);
|
|
|
|
onVersionReady(fetched.version);
|
2018-07-19 00:00:55 +02:00
|
|
|
onCommandShortcutsReady(fetched.commandShortcuts);
|
2015-02-24 00:31:29 +01:00
|
|
|
|
2018-04-06 22:02:35 +02:00
|
|
|
µb.loadPublicSuffixList(onPSLReady);
|
|
|
|
µb.loadRedirectResources();
|
2015-02-24 19:48:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var toFetch = function(from, fetched) {
|
|
|
|
for ( var k in from ) {
|
|
|
|
if ( from.hasOwnProperty(k) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fetched[k] = from[k];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var fromFetch = function(to, fetched) {
|
|
|
|
for ( var k in to ) {
|
|
|
|
if ( to.hasOwnProperty(k) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ( fetched.hasOwnProperty(k) === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
to[k] = fetched[k];
|
|
|
|
}
|
2015-02-24 00:31:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-26 16:17:38 +01:00
|
|
|
var onSelectedFilterListsLoaded = function() {
|
2016-01-03 19:58:25 +01:00
|
|
|
var fetchableProps = {
|
2018-07-19 00:00:55 +02:00
|
|
|
'commandShortcuts': [],
|
2018-09-11 14:37:32 +02:00
|
|
|
'compiledMagic': 0,
|
2018-03-31 16:21:11 +02:00
|
|
|
'dynamicFilteringString': [
|
|
|
|
'behind-the-scene * * noop',
|
|
|
|
'behind-the-scene * image noop',
|
|
|
|
'behind-the-scene * 3p noop',
|
|
|
|
'behind-the-scene * inline-script noop',
|
|
|
|
'behind-the-scene * 1p-script noop',
|
|
|
|
'behind-the-scene * 3p-script noop',
|
|
|
|
'behind-the-scene * 3p-frame noop'
|
|
|
|
].join('\n'),
|
2016-01-03 19:58:25 +01:00
|
|
|
'urlFilteringString': '',
|
2018-03-31 16:21:11 +02:00
|
|
|
'hostnameSwitchesString': [
|
2018-09-03 20:06:49 +02:00
|
|
|
'no-large-media: behind-the-scene false',
|
|
|
|
'no-scripting: behind-the-scene false'
|
2018-03-31 16:21:11 +02:00
|
|
|
].join('\n'),
|
2016-01-03 19:58:25 +01:00
|
|
|
'lastRestoreFile': '',
|
|
|
|
'lastRestoreTime': 0,
|
|
|
|
'lastBackupFile': '',
|
|
|
|
'lastBackupTime': 0,
|
2016-11-02 05:27:16 +01:00
|
|
|
'netWhitelist': µb.netWhitelistDefault,
|
2018-09-11 14:37:32 +02:00
|
|
|
'selfieMagic': 0,
|
2016-01-03 19:58:25 +01:00
|
|
|
'version': '0.0.0.0'
|
2015-10-21 17:53:03 +02:00
|
|
|
};
|
2015-03-11 23:26:00 +01:00
|
|
|
|
2016-01-03 19:58:25 +01:00
|
|
|
toFetch(µb.localSettings, fetchableProps);
|
|
|
|
toFetch(µb.userSettings, fetchableProps);
|
|
|
|
toFetch(µb.restoreBackupSettings, fetchableProps);
|
|
|
|
|
|
|
|
vAPI.storage.get(fetchableProps, onFirstFetchReady);
|
|
|
|
};
|
2017-01-26 16:17:38 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// TODO(seamless migration):
|
|
|
|
// Eventually selected filter list keys will be loaded as a fetchable
|
|
|
|
// property. Until then we need to handle backward and forward
|
|
|
|
// compatibility, this means a special asynchronous call to load selected
|
|
|
|
// filter lists.
|
|
|
|
|
|
|
|
var onAdminSettingsRestored = function() {
|
|
|
|
µb.loadSelectedFilterLists(onSelectedFilterListsLoaded);
|
|
|
|
};
|
2016-01-03 19:58:25 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
return function() {
|
2017-03-05 14:25:55 +01:00
|
|
|
processCallbackQueue(µb.onBeforeStartQueue, function() {
|
|
|
|
// https://github.com/gorhill/uBlock/issues/531
|
|
|
|
µb.restoreAdminSettings(onAdminSettingsRestored);
|
|
|
|
});
|
2015-03-11 23:26:00 +01:00
|
|
|
};
|
2015-02-13 18:10:10 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|
2014-08-21 16:56:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2015-03-11 23:26:00 +01:00
|
|
|
|
|
|
|
µBlock.restart();
|