1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-19 09:22:40 +02:00

Revisit code to benefit from ES6 syntax

This commit is contained in:
Raymond Hill 2019-05-15 14:49:12 -04:00
parent fcbcbd16f1
commit fc109c8b7c
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -67,10 +67,10 @@
/******************************************************************************/ /******************************************************************************/
µBlock.saveLocalSettings = (function() { µBlock.saveLocalSettings = (function() {
let saveAfter = 4 * 60 * 1000; const saveAfter = 4 * 60 * 1000;
let onTimeout = ( ) => { const onTimeout = ( ) => {
let µb = µBlock; const µb = µBlock;
if ( µb.localSettingsLastModified > µb.localSettingsLastSaved ) { if ( µb.localSettingsLastModified > µb.localSettingsLastSaved ) {
µb.saveLocalSettings(); µb.saveLocalSettings();
} }
@ -153,16 +153,15 @@
/******************************************************************************/ /******************************************************************************/
µBlock.hiddenSettingsFromString = function(raw) { µBlock.hiddenSettingsFromString = function(raw) {
var out = Object.assign({}, this.hiddenSettingsDefault), const out = Object.assign({}, this.hiddenSettingsDefault);
lineIter = new this.LineIterator(raw), const lineIter = new this.LineIterator(raw);
line, matches, name, value;
while ( lineIter.eot() === false ) { while ( lineIter.eot() === false ) {
line = lineIter.next(); const line = lineIter.next();
matches = /^\s*(\S+)\s+(.+)$/.exec(line); const matches = /^\s*(\S+)\s+(.+)$/.exec(line);
if ( matches === null || matches.length !== 3 ) { continue; } if ( matches === null || matches.length !== 3 ) { continue; }
name = matches[1]; const name = matches[1];
if ( out.hasOwnProperty(name) === false ) { continue; } if ( out.hasOwnProperty(name) === false ) { continue; }
value = matches[2]; const value = matches[2];
switch ( typeof out[name] ) { switch ( typeof out[name] ) {
case 'boolean': case 'boolean':
if ( value === 'true' ) { if ( value === 'true' ) {
@ -188,9 +187,8 @@
}; };
µBlock.stringFromHiddenSettings = function() { µBlock.stringFromHiddenSettings = function() {
var out = [], const out = [];
keys = Object.keys(this.hiddenSettings).sort(); for ( const key of Object.keys(this.hiddenSettings).sort() ) {
for ( var key of keys ) {
out.push(key + ' ' + this.hiddenSettings[key]); out.push(key + ' ' + this.hiddenSettings[key]);
} }
return out.join('\n'); return out.join('\n');
@ -285,37 +283,32 @@
callback = append; callback = append;
append = false; append = false;
} }
var oldKeys = this.selectedFilterLists.slice(); const oldKeys = this.selectedFilterLists.slice();
if ( append ) { if ( append ) {
newKeys = newKeys.concat(oldKeys); newKeys = newKeys.concat(oldKeys);
} }
var newSet = new Set(newKeys); const newSet = new Set(newKeys);
// Purge unused filter lists from cache. // Purge unused filter lists from cache.
for ( var i = 0, n = oldKeys.length; i < n; i++ ) { for ( let i = 0, n = oldKeys.length; i < n; i++ ) {
if ( newSet.has(oldKeys[i]) === false ) { if ( newSet.has(oldKeys[i]) === false ) {
this.removeFilterList(oldKeys[i]); this.removeFilterList(oldKeys[i]);
} }
} }
newKeys = Array.from(newSet); newKeys = Array.from(newSet);
var bin = {
selectedFilterLists: newKeys
};
this.selectedFilterLists = newKeys; this.selectedFilterLists = newKeys;
vAPI.storage.set(bin, callback); vAPI.storage.set({ selectedFilterLists: newKeys }, callback);
}; };
/******************************************************************************/ /******************************************************************************/
µBlock.applyFilterListSelection = function(details, callback) { µBlock.applyFilterListSelection = function(details, callback) {
var µb = this, let selectedListKeySet = new Set(this.selectedFilterLists);
selectedListKeySet = new Set(this.selectedFilterLists), let externalLists = this.userSettings.externalLists;
externalLists = this.userSettings.externalLists,
i, n, assetKey;
// Filter lists to select // Filter lists to select
if ( Array.isArray(details.toSelect) ) { if ( Array.isArray(details.toSelect) ) {
if ( details.merge ) { if ( details.merge ) {
for ( i = 0, n = details.toSelect.length; i < n; i++ ) { for ( let i = 0, n = details.toSelect.length; i < n; i++ ) {
selectedListKeySet.add(details.toSelect[i]); selectedListKeySet.add(details.toSelect[i]);
} }
} else { } else {
@ -325,17 +318,17 @@
// Imported filter lists to remove // Imported filter lists to remove
if ( Array.isArray(details.toRemove) ) { if ( Array.isArray(details.toRemove) ) {
var removeURLFromHaystack = function(haystack, needle) { const removeURLFromHaystack = (haystack, needle) => {
return haystack.replace( return haystack.replace(
new RegExp( new RegExp(
'(^|\\n)' + '(^|\\n)' +
µb.escapeRegex(needle) + this.escapeRegex(needle) +
'(\\n|$)', 'g'), '(\\n|$)', 'g'),
'\n' '\n'
).trim(); ).trim();
}; };
for ( i = 0, n = details.toRemove.length; i < n; i++ ) { for ( let i = 0, n = details.toRemove.length; i < n; i++ ) {
assetKey = details.toRemove[i]; const assetKey = details.toRemove[i];
selectedListKeySet.delete(assetKey); selectedListKeySet.delete(assetKey);
externalLists = removeURLFromHaystack(externalLists, assetKey); externalLists = removeURLFromHaystack(externalLists, assetKey);
this.removeFilterList(assetKey); this.removeFilterList(assetKey);
@ -345,20 +338,20 @@
// Filter lists to import // Filter lists to import
if ( typeof details.toImport === 'string' ) { if ( typeof details.toImport === 'string' ) {
// https://github.com/gorhill/uBlock/issues/1181 // https://github.com/gorhill/uBlock/issues/1181
// Try mapping the URL of an imported filter list to the assetKey of an // Try mapping the URL of an imported filter list to the assetKey
// existing stock list. // of an existing stock list.
var assetKeyFromURL = function(url) { const assetKeyFromURL = url => {
var needle = url.replace(/^https?:/, ''); const needle = url.replace(/^https?:/, '');
var assets = µb.availableFilterLists, asset; const assets = this.availableFilterLists;
for ( var assetKey in assets ) { for ( const assetKey in assets ) {
asset = assets[assetKey]; const asset = assets[assetKey];
if ( asset.content !== 'filters' ) { continue; } if ( asset.content !== 'filters' ) { continue; }
if ( typeof asset.contentURL === 'string' ) { if ( typeof asset.contentURL === 'string' ) {
if ( asset.contentURL.endsWith(needle) ) { return assetKey; } if ( asset.contentURL.endsWith(needle) ) { return assetKey; }
continue; continue;
} }
if ( Array.isArray(asset.contentURL) === false ) { continue; } if ( Array.isArray(asset.contentURL) === false ) { continue; }
for ( i = 0, n = asset.contentURL.length; i < n; i++ ) { for ( let i = 0, n = asset.contentURL.length; i < n; i++ ) {
if ( asset.contentURL[i].endsWith(needle) ) { if ( asset.contentURL[i].endsWith(needle) ) {
return assetKey; return assetKey;
} }
@ -366,11 +359,11 @@
} }
return url; return url;
}; };
var importedSet = new Set(this.listKeysFromCustomFilterLists(externalLists)), const importedSet = new Set(this.listKeysFromCustomFilterLists(externalLists));
toImportSet = new Set(this.listKeysFromCustomFilterLists(details.toImport)); const toImportSet = new Set(this.listKeysFromCustomFilterLists(details.toImport));
for ( var urlKey of toImportSet ) { for ( const urlKey of toImportSet ) {
if ( importedSet.has(urlKey) ) { continue; } if ( importedSet.has(urlKey) ) { continue; }
assetKey = assetKeyFromURL(urlKey); const assetKey = assetKeyFromURL(urlKey);
if ( assetKey === urlKey ) { if ( assetKey === urlKey ) {
importedSet.add(urlKey); importedSet.add(urlKey);
} }
@ -379,7 +372,7 @@
externalLists = Array.from(importedSet).sort().join('\n'); externalLists = Array.from(importedSet).sort().join('\n');
} }
var result = Array.from(selectedListKeySet); const result = Array.from(selectedListKeySet);
if ( externalLists !== this.userSettings.externalLists ) { if ( externalLists !== this.userSettings.externalLists ) {
this.userSettings.externalLists = externalLists; this.userSettings.externalLists = externalLists;
vAPI.storage.set({ externalLists: externalLists }); vAPI.storage.set({ externalLists: externalLists });
@ -393,16 +386,13 @@
/******************************************************************************/ /******************************************************************************/
µBlock.listKeysFromCustomFilterLists = function(raw) { µBlock.listKeysFromCustomFilterLists = function(raw) {
var out = new Set(), const out = new Set();
reIgnore = /^[!#]/, const reIgnore = /^[!#]/;
reValid = /^[a-z-]+:\/\/\S+/, const reValid = /^[a-z-]+:\/\/\S+/;
lineIter = new this.LineIterator(raw), const lineIter = new this.LineIterator(raw);
location;
while ( lineIter.eot() === false ) { while ( lineIter.eot() === false ) {
location = lineIter.next().trim(); const location = lineIter.next().trim();
if ( reIgnore.test(location) || !reValid.test(location) ) { if ( reIgnore.test(location) || !reValid.test(location) ) { continue; }
continue;
}
out.add(location); out.add(location);
} }
return Array.from(out); return Array.from(out);
@ -498,11 +488,10 @@
/******************************************************************************/ /******************************************************************************/
µBlock.autoSelectRegionalFilterLists = function(lists) { µBlock.autoSelectRegionalFilterLists = function(lists) {
var selectedListKeys = [ this.userFiltersPath ], const selectedListKeys = [ this.userFiltersPath ];
list; for ( const key in lists ) {
for ( var key in lists ) {
if ( lists.hasOwnProperty(key) === false ) { continue; } if ( lists.hasOwnProperty(key) === false ) { continue; }
list = lists[key]; const list = lists[key];
if ( list.off !== true ) { if ( list.off !== true ) {
selectedListKeys.push(key); selectedListKeys.push(key);
continue; continue;
@ -518,8 +507,7 @@
/******************************************************************************/ /******************************************************************************/
µBlock.getAvailableLists = function(callback) { µBlock.getAvailableLists = function(callback) {
var µb = this, let oldAvailableLists = {},
oldAvailableLists = {},
newAvailableLists = {}; newAvailableLists = {};
// User filter list. // User filter list.
@ -529,11 +517,11 @@
}; };
// Custom filter lists. // Custom filter lists.
var importedListKeys = this.listKeysFromCustomFilterLists(µb.userSettings.externalLists), const importedListKeys = this.listKeysFromCustomFilterLists(
i = importedListKeys.length, listKey, entry; this.userSettings.externalLists
while ( i-- ) { );
listKey = importedListKeys[i]; for ( const listKey of importedListKeys ) {
entry = { const entry = {
content: 'filters', content: 'filters',
contentURL: listKey, contentURL: listKey,
external: true, external: true,
@ -546,14 +534,14 @@
} }
// Convert a no longer existing stock list into an imported list. // Convert a no longer existing stock list into an imported list.
var customListFromStockList = function(assetKey) { const customListFromStockList = assetKey => {
var oldEntry = oldAvailableLists[assetKey]; const oldEntry = oldAvailableLists[assetKey];
if ( oldEntry === undefined || oldEntry.off === true ) { return; } if ( oldEntry === undefined || oldEntry.off === true ) { return; }
var listURL = oldEntry.contentURL; let listURL = oldEntry.contentURL;
if ( Array.isArray(listURL) ) { if ( Array.isArray(listURL) ) {
listURL = listURL[0]; listURL = listURL[0];
} }
var newEntry = { const newEntry = {
content: 'filters', content: 'filters',
contentURL: listURL, contentURL: listURL,
external: true, external: true,
@ -562,28 +550,26 @@
title: oldEntry.title || '' title: oldEntry.title || ''
}; };
newAvailableLists[listURL] = newEntry; newAvailableLists[listURL] = newEntry;
µb.assets.registerAssetSource(listURL, newEntry); this.assets.registerAssetSource(listURL, newEntry);
importedListKeys.push(listURL); importedListKeys.push(listURL);
µb.userSettings.externalLists += '\n' + listURL; this.userSettings.externalLists += '\n' + listURL;
µb.userSettings.externalLists = µb.userSettings.externalLists.trim(); this.userSettings.externalLists = this.userSettings.externalLists.trim();
vAPI.storage.set({ externalLists: µb.userSettings.externalLists }); vAPI.storage.set({ externalLists: this.userSettings.externalLists });
µb.saveSelectedFilterLists([ listURL ], true); this.saveSelectedFilterLists([ listURL ], true);
}; };
// Final steps: // Final steps:
// - reuse existing list metadata if any; // - reuse existing list metadata if any;
// - unregister unreferenced imported filter lists if any. // - unregister unreferenced imported filter lists if any.
var finalize = function() { const finalize = ( ) => {
var assetKey, newEntry, oldEntry;
// Reuse existing metadata. // Reuse existing metadata.
for ( assetKey in oldAvailableLists ) { for ( const assetKey in oldAvailableLists ) {
oldEntry = oldAvailableLists[assetKey]; const oldEntry = oldAvailableLists[assetKey];
newEntry = newAvailableLists[assetKey]; const newEntry = newAvailableLists[assetKey];
// List no longer exists. If a stock list, try to convert to // List no longer exists. If a stock list, try to convert to
// imported list if it was selected. // imported list if it was selected.
if ( newEntry === undefined ) { if ( newEntry === undefined ) {
µb.removeFilterList(assetKey); this.removeFilterList(assetKey);
if ( assetKey.indexOf('://') === -1 ) { if ( assetKey.indexOf('://') === -1 ) {
customListFromStockList(assetKey); customListFromStockList(assetKey);
} }
@ -610,29 +596,29 @@
} }
// Remove unreferenced imported filter lists. // Remove unreferenced imported filter lists.
var dict = new Set(importedListKeys); const dict = new Set(importedListKeys);
for ( assetKey in newAvailableLists ) { for ( const assetKey in newAvailableLists ) {
newEntry = newAvailableLists[assetKey]; const newEntry = newAvailableLists[assetKey];
if ( newEntry.submitter !== 'user' ) { continue; } if ( newEntry.submitter !== 'user' ) { continue; }
if ( dict.has(assetKey) ) { continue; } if ( dict.has(assetKey) ) { continue; }
delete newAvailableLists[assetKey]; delete newAvailableLists[assetKey];
µb.assets.unregisterAssetSource(assetKey); this.assets.unregisterAssetSource(assetKey);
µb.removeFilterList(assetKey); this.removeFilterList(assetKey);
} }
}; };
// Built-in filter lists loaded. // Built-in filter lists loaded.
var onBuiltinListsLoaded = function(entries) { const onBuiltinListsLoaded = entries => {
for ( var assetKey in entries ) { for ( const assetKey in entries ) {
if ( entries.hasOwnProperty(assetKey) === false ) { continue; } if ( entries.hasOwnProperty(assetKey) === false ) { continue; }
entry = entries[assetKey]; const entry = entries[assetKey];
if ( entry.content !== 'filters' ) { continue; } if ( entry.content !== 'filters' ) { continue; }
newAvailableLists[assetKey] = Object.assign({}, entry); newAvailableLists[assetKey] = Object.assign({}, entry);
} }
// Load set of currently selected filter lists. // Load set of currently selected filter lists.
var listKeySet = new Set(µb.selectedFilterLists); const listKeySet = new Set(this.selectedFilterLists);
for ( listKey in newAvailableLists ) { for ( const listKey in newAvailableLists ) {
if ( newAvailableLists.hasOwnProperty(listKey) ) { if ( newAvailableLists.hasOwnProperty(listKey) ) {
newAvailableLists[listKey].off = !listKeySet.has(listKey); newAvailableLists[listKey].off = !listKeySet.has(listKey);
} }
@ -643,9 +629,9 @@
}; };
// Available lists previously computed. // Available lists previously computed.
var onOldAvailableListsLoaded = function(bin) { const onOldAvailableListsLoaded = bin => {
oldAvailableLists = bin && bin.availableFilterLists || {}; oldAvailableLists = bin && bin.availableFilterLists || {};
µb.assets.metadata(onBuiltinListsLoaded); this.assets.metadata(onBuiltinListsLoaded);
}; };
// Load previously saved available lists -- these contains data // Load previously saved available lists -- these contains data
@ -663,7 +649,6 @@
if ( this.loadingFilterLists ) { return; } if ( this.loadingFilterLists ) { return; }
this.loadingFilterLists = true; this.loadingFilterLists = true;
const µb = µBlock;
const loadedListKeys = []; const loadedListKeys = [];
let filterlistsCount = 0; let filterlistsCount = 0;
@ -671,35 +656,35 @@
callback = this.noopFunc; callback = this.noopFunc;
} }
const onDone = function() { const onDone = ( ) => {
µb.staticNetFilteringEngine.freeze(); this.staticNetFilteringEngine.freeze();
µb.staticExtFilteringEngine.freeze(); this.staticExtFilteringEngine.freeze();
µb.redirectEngine.freeze(); this.redirectEngine.freeze();
vAPI.storage.set({ 'availableFilterLists': µb.availableFilterLists }); vAPI.storage.set({ 'availableFilterLists': this.availableFilterLists });
vAPI.messaging.broadcast({ vAPI.messaging.broadcast({
what: 'staticFilteringDataChanged', what: 'staticFilteringDataChanged',
parseCosmeticFilters: µb.userSettings.parseAllABPHideFilters, parseCosmeticFilters: this.userSettings.parseAllABPHideFilters,
ignoreGenericCosmeticFilters: µb.userSettings.ignoreGenericCosmeticFilters, ignoreGenericCosmeticFilters: this.userSettings.ignoreGenericCosmeticFilters,
listKeys: loadedListKeys listKeys: loadedListKeys
}); });
callback(); callback();
µb.selfieManager.destroy(); this.selfieManager.destroy();
µb.lz4Codec.relinquish(); this.lz4Codec.relinquish();
µb.loadingFilterLists = false; this.loadingFilterLists = false;
}; };
const applyCompiledFilters = function(assetKey, compiled) { const applyCompiledFilters = (assetKey, compiled) => {
const snfe = µb.staticNetFilteringEngine; const snfe = this.staticNetFilteringEngine;
const sxfe = µb.staticExtFilteringEngine; const sxfe = this.staticExtFilteringEngine;
let acceptedCount = snfe.acceptedCount + sxfe.acceptedCount, let acceptedCount = snfe.acceptedCount + sxfe.acceptedCount,
discardedCount = snfe.discardedCount + sxfe.discardedCount; discardedCount = snfe.discardedCount + sxfe.discardedCount;
µb.applyCompiledFilters(compiled, assetKey === µb.userFiltersPath); this.applyCompiledFilters(compiled, assetKey === this.userFiltersPath);
if ( µb.availableFilterLists.hasOwnProperty(assetKey) ) { if ( this.availableFilterLists.hasOwnProperty(assetKey) ) {
const entry = µb.availableFilterLists[assetKey]; const entry = this.availableFilterLists[assetKey];
entry.entryCount = snfe.acceptedCount + sxfe.acceptedCount - entry.entryCount = snfe.acceptedCount + sxfe.acceptedCount -
acceptedCount; acceptedCount;
entry.entryUsedCount = entry.entryCount - entry.entryUsedCount = entry.entryCount -
@ -708,7 +693,7 @@
loadedListKeys.push(assetKey); loadedListKeys.push(assetKey);
}; };
const onCompiledListLoaded = function(details) { const onCompiledListLoaded = details => {
applyCompiledFilters(details.assetKey, details.content); applyCompiledFilters(details.assetKey, details.content);
filterlistsCount -= 1; filterlistsCount -= 1;
if ( filterlistsCount === 0 ) { if ( filterlistsCount === 0 ) {
@ -716,14 +701,14 @@
} }
}; };
const onFilterListsReady = function(lists) { const onFilterListsReady = lists => {
µb.availableFilterLists = lists; this.availableFilterLists = lists;
µb.redirectEngine.reset(); this.redirectEngine.reset();
µb.staticExtFilteringEngine.reset(); this.staticExtFilteringEngine.reset();
µb.staticNetFilteringEngine.reset(); this.staticNetFilteringEngine.reset();
µb.selfieManager.destroy(); this.selfieManager.destroy();
µb.staticFilteringReverseLookup.resetLists(); this.staticFilteringReverseLookup.resetLists();
// We need to build a complete list of assets to pull first: this is // We need to build a complete list of assets to pull first: this is
// because it *may* happens that some load operations are synchronous: // because it *may* happens that some load operations are synchronous:
@ -742,7 +727,7 @@
let i = toLoad.length; let i = toLoad.length;
while ( i-- ) { while ( i-- ) {
µb.getCompiledFilterList(toLoad[i], onCompiledListLoaded); this.getCompiledFilterList(toLoad[i], onCompiledListLoaded);
} }
}; };
@ -753,40 +738,39 @@
/******************************************************************************/ /******************************************************************************/
µBlock.getCompiledFilterList = function(assetKey, callback) { µBlock.getCompiledFilterList = function(assetKey, callback) {
var µb = this, const compiledPath = 'compiled/' + assetKey;
compiledPath = 'compiled/' + assetKey, let rawContent;
rawContent;
var onCompiledListLoaded2 = function(details) { const onCompiledListLoaded2 = details => {
if ( details.content === '' ) { if ( details.content === '' ) {
details.content = µb.compileFilters( details.content = this.compileFilters(
rawContent, rawContent,
{ assetKey: assetKey } { assetKey: assetKey }
); );
µb.assets.put(compiledPath, details.content); this.assets.put(compiledPath, details.content);
} }
rawContent = undefined; rawContent = undefined;
details.assetKey = assetKey; details.assetKey = assetKey;
callback(details); callback(details);
}; };
var onRawListLoaded = function(details) { const onRawListLoaded = details => {
if ( details.content === '' ) { if ( details.content === '' ) {
details.assetKey = assetKey; details.assetKey = assetKey;
callback(details); callback(details);
return; return;
} }
µb.extractFilterListMetadata(assetKey, details.content); this.extractFilterListMetadata(assetKey, details.content);
// Fectching the raw content may cause the compiled content to be // Fectching the raw content may cause the compiled content to be
// generated somewhere else in uBO, hence we try one last time to // generated somewhere else in uBO, hence we try one last time to
// fetch the compiled content in case it has become available. // fetch the compiled content in case it has become available.
rawContent = details.content; rawContent = details.content;
µb.assets.get(compiledPath, onCompiledListLoaded2); this.assets.get(compiledPath, onCompiledListLoaded2);
}; };
var onCompiledListLoaded1 = function(details) { const onCompiledListLoaded1 = details => {
if ( details.content === '' ) { if ( details.content === '' ) {
µb.assets.get(assetKey, onRawListLoaded); this.assets.get(assetKey, onRawListLoaded);
return; return;
} }
details.assetKey = assetKey; details.assetKey = assetKey;
@ -802,14 +786,14 @@
// Lower minimum update period to 1 day. // Lower minimum update period to 1 day.
µBlock.extractFilterListMetadata = function(assetKey, raw) { µBlock.extractFilterListMetadata = function(assetKey, raw) {
let listEntry = this.availableFilterLists[assetKey]; const listEntry = this.availableFilterLists[assetKey];
if ( listEntry === undefined ) { return; } if ( listEntry === undefined ) { return; }
// Metadata expected to be found at the top of content. // Metadata expected to be found at the top of content.
let head = raw.slice(0, 1024); const head = raw.slice(0, 1024);
// https://github.com/gorhill/uBlock/issues/313 // https://github.com/gorhill/uBlock/issues/313
// Always try to fetch the name if this is an external filter list. // Always try to fetch the name if this is an external filter list.
if ( listEntry.title === '' || listEntry.group === 'custom' ) { if ( listEntry.title === '' || listEntry.group === 'custom' ) {
let matches = head.match(/(?:^|\n)(?:!|# )[\t ]*Title[\t ]*:([^\n]+)/i); const matches = head.match(/(?:^|\n)(?:!|# )[\t ]*Title[\t ]*:([^\n]+)/i);
if ( matches !== null ) { if ( matches !== null ) {
// https://bugs.chromium.org/p/v8/issues/detail?id=2869 // https://bugs.chromium.org/p/v8/issues/detail?id=2869
// orphanizeString is to work around String.slice() // orphanizeString is to work around String.slice()
@ -819,7 +803,7 @@
} }
} }
// Extract update frequency information // Extract update frequency information
let matches = head.match(/(?:^|\n)(?:!|# )[\t ]*Expires[\t ]*:[\t ]*(\d+)[\t ]*(h)?/i); const matches = head.match(/(?:^|\n)(?:!|# )[\t ]*Expires[\t ]*:[\t ]*(\d+)[\t ]*(h)?/i);
if ( matches !== null ) { if ( matches !== null ) {
let v = Math.max(parseInt(matches[1], 10), 1); let v = Math.max(parseInt(matches[1], 10), 1);
if ( matches[2] !== undefined ) { if ( matches[2] !== undefined ) {
@ -1267,7 +1251,8 @@
/******************************************************************************/ /******************************************************************************/
µBlock.scheduleAssetUpdater = (function() { µBlock.scheduleAssetUpdater = (function() {
var timer, next = 0; let timer, next = 0;
return function(updateDelay) { return function(updateDelay) {
if ( timer ) { if ( timer ) {
clearTimeout(timer); clearTimeout(timer);
@ -1277,19 +1262,19 @@
next = 0; next = 0;
return; return;
} }
var now = Date.now(); const now = Date.now();
// Use the new schedule if and only if it is earlier than the previous // Use the new schedule if and only if it is earlier than the previous
// one. // one.
if ( next !== 0 ) { if ( next !== 0 ) {
updateDelay = Math.min(updateDelay, Math.max(next - now, 0)); updateDelay = Math.min(updateDelay, Math.max(next - now, 0));
} }
next = now + updateDelay; next = now + updateDelay;
timer = vAPI.setTimeout(function() { timer = vAPI.setTimeout(( ) => {
timer = undefined; timer = undefined;
next = 0; next = 0;
var µb = µBlock; this.assets.updateStart({
µb.assets.updateStart({ delay: this.hiddenSettings.autoUpdateAssetFetchPeriod * 1000 ||
delay: µb.hiddenSettings.autoUpdateAssetFetchPeriod * 1000 || 120000 120000
}); });
}, updateDelay); }, updateDelay);
}; };
@ -1324,7 +1309,8 @@
if ( topic === 'after-asset-updated' ) { if ( topic === 'after-asset-updated' ) {
// Skip selfie-related content. // Skip selfie-related content.
if ( details.assetKey.startsWith('selfie/') ) { return; } if ( details.assetKey.startsWith('selfie/') ) { return; }
var cached = typeof details.content === 'string' && details.content !== ''; const cached = typeof details.content === 'string' &&
details.content !== '';
if ( this.availableFilterLists.hasOwnProperty(details.assetKey) ) { if ( this.availableFilterLists.hasOwnProperty(details.assetKey) ) {
if ( cached ) { if ( cached ) {
if ( this.selectedFilterLists.indexOf(details.assetKey) !== -1 ) { if ( this.selectedFilterLists.indexOf(details.assetKey) !== -1 ) {