mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
153 lines
No EOL
5.3 KiB
JavaScript
153 lines
No EOL
5.3 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin Lite - a comprehensive, MV3-compliant content blocker
|
|
Copyright (C) 2022-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/
|
|
|
|
*/
|
|
|
|
/******************************************************************************/
|
|
|
|
(api => {
|
|
if ( typeof api === 'object' ) { return; }
|
|
|
|
const isolatedAPI = self.isolatedAPI = {};
|
|
|
|
const hostnameStack = (( ) => {
|
|
const docloc = document.location;
|
|
isolatedAPI.docHostname = docloc.hostname;
|
|
const origins = [ docloc.origin ];
|
|
if ( docloc.ancestorOrigins ) {
|
|
origins.push(...docloc.ancestorOrigins);
|
|
}
|
|
return origins.map((origin, i) => {
|
|
const beg = origin.lastIndexOf('://');
|
|
if ( beg === -1 ) { return; }
|
|
const hn1 = origin.slice(beg+3)
|
|
const end = hn1.indexOf(':');
|
|
const hn2 = end === -1 ? hn1 : hn1.slice(0, end);
|
|
return { hnparts: hn2.split('.'), i };
|
|
}).filter(a => a !== undefined);
|
|
})();
|
|
|
|
const forEachHostname = (entry, callback, details) => {
|
|
const hnparts = entry.hnparts;
|
|
const hnpartslen = hnparts.length;
|
|
if ( hnpartslen === 0 ) { return; }
|
|
for ( let i = 0; i < hnpartslen; i++ ) {
|
|
const r = callback(`${hnparts.slice(i).join('.')}`, details);
|
|
if ( r !== undefined ) { return r; }
|
|
}
|
|
if ( details?.hasEntities !== true ) { return; }
|
|
const n = hnpartslen - 1;
|
|
for ( let i = 0; i < n; i++ ) {
|
|
for ( let j = n; j > i; j-- ) {
|
|
const r = callback(`${hnparts.slice(i,j).join('.')}.*`, details);
|
|
if ( r !== undefined ) { return r; }
|
|
}
|
|
}
|
|
};
|
|
|
|
isolatedAPI.forEachHostname = (callback, details) => {
|
|
if ( hostnameStack.length === 0 ) { return; }
|
|
return forEachHostname(hostnameStack[0], callback, details);
|
|
};
|
|
|
|
isolatedAPI.forEachHostnameAncestors = (callback, details) => {
|
|
for ( const entry of hostnameStack ) {
|
|
if ( entry.i === 0 ) { continue; }
|
|
const r = forEachHostname(entry, callback, details);
|
|
if ( r !== undefined ) { return r; }
|
|
}
|
|
};
|
|
|
|
isolatedAPI.binarySearch = (sorted, target) => {
|
|
let l = 0, i = 0, d = 0;
|
|
let r = sorted.length;
|
|
let candidate;
|
|
while ( l < r ) {
|
|
i = l + r >>> 1;
|
|
candidate = sorted[i];
|
|
d = target.length - candidate.length;
|
|
if ( d === 0 ) {
|
|
if ( target === candidate ) { return i; }
|
|
d = target < candidate ? -1 : 1;
|
|
}
|
|
if ( d < 0 ) {
|
|
r = i;
|
|
} else {
|
|
l = i + 1;
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
|
|
isolatedAPI.sessionGet = async function(key) {
|
|
try {
|
|
const bin = await chrome.storage.session.get(key);
|
|
return bin?.[key] ?? undefined;
|
|
} catch {
|
|
}
|
|
};
|
|
|
|
isolatedAPI.sessionSet = function(key, data) {
|
|
try {
|
|
chrome.storage.session.set({ [key]: data });
|
|
} catch {
|
|
}
|
|
};
|
|
|
|
isolatedAPI.localGet = async function(key) {
|
|
try {
|
|
const bin = await chrome.storage.local.get(key);
|
|
return bin?.[key] ?? undefined;
|
|
} catch {
|
|
}
|
|
};
|
|
|
|
isolatedAPI.getSelectors = async function(realm, details) {
|
|
const selectors = new Set();
|
|
const exceptions = new Set();
|
|
const lookupHostname = (hostname, data) => {
|
|
const listref = isolatedAPI.binarySearch(data.hostnames, hostname);
|
|
if ( listref === -1 ) { return; }
|
|
const ilist = data.selectorListRefs[listref];
|
|
const list = JSON.parse(`[${data.selectorLists[ilist]}]`);
|
|
for ( const iselector of list ) {
|
|
if ( iselector >= 0 ) {
|
|
selectors.add(data.selectors[iselector]);
|
|
} else {
|
|
exceptions.add(data.selectors[~iselector]);
|
|
}
|
|
}
|
|
};
|
|
const selectorsFromRuleset = async rulesetId => {
|
|
const data = await isolatedAPI.localGet(`css.${realm}.json.${rulesetId}`);
|
|
isolatedAPI.forEachHostname(lookupHostname, data);
|
|
};
|
|
await Promise.all(details.map(a => selectorsFromRuleset(a.rulesetId)));
|
|
for ( const selector of exceptions ) {
|
|
selectors.delete(selector);
|
|
}
|
|
return Array.from(selectors);
|
|
};
|
|
|
|
})(self.isolatedAPI);
|
|
|
|
/******************************************************************************/
|
|
|
|
void 0; |