1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 01:27:12 +02:00

Allow uritransform to process the hash part of a URL

Related issue:
https://github.com/uBlockOrigin/uBlock-issues/issues/3084
This commit is contained in:
Raymond Hill 2024-01-18 11:36:40 -05:00
parent c9ceb561fc
commit b19094339f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -5309,13 +5309,16 @@ FilterContainer.prototype.transformRequest = function(fctxt) {
const cache = refs.$cache;
if ( cache === undefined ) { return; }
const redirectURL = new URL(fctxt.url);
const before = redirectURL.pathname + redirectURL.search;
const before = `${redirectURL.pathname}${redirectURL.search}${redirectURL.hash}`;
if ( cache.re.test(before) !== true ) { return; }
const after = before.replace(cache.re, cache.replacement);
if ( after === before ) { return; }
const searchPos = after.includes('?') && after.indexOf('?') || after.length;
redirectURL.pathname = after.slice(0, searchPos);
redirectURL.search = after.slice(searchPos);
const hashPos = after.indexOf('#');
redirectURL.hash = hashPos !== -1 ? after.slice(hashPos) : '';
const afterMinusHash = hashPos !== -1 ? after.slice(0, hashPos) : after;
const searchPos = afterMinusHash.indexOf('?');
redirectURL.search = searchPos !== -1 ? afterMinusHash.slice(searchPos) : '';
redirectURL.pathname = searchPos !== -1 ? after.slice(0, searchPos) : after;
fctxt.redirectURL = redirectURL.href;
return directives;
};