Last active
February 15, 2022 08:04
-
-
Save meoow/e74946245a74116a0d0a01e98dcba962 to your computer and use it in GitHub Desktop.
This is the shExpMatch function for autoconfig pac. Normally the host machine that supports pac should have shExpMatch function built-in, but a piece of software I use reads pac file with lack of implementing this function, I ended up implemented by myself.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function shExpMatch(url, pat) { | |
var pcharcode0; | |
var ucharcode0; | |
var pcharcode1; | |
if (pat.length === 0) { | |
if (url.length === 0) { | |
return true; | |
} else { | |
return false; | |
} | |
} | |
if (pat.length === url.length && | |
pat.indexOf('*') < 0 && | |
pat.indexOf('?') < 0) { | |
return pat === url; | |
} | |
ucharcode0 = url.charCodeAt(0); | |
pcharcode0 = pat.charCodeAt(0); | |
if (pcharcode0 === 42) { // pat[0] === '*' | |
pcharcode1 = pat.charCodeAt(1); | |
if (isNaN(pcharcode1)) { | |
return true; | |
} else if (pcharcode1 === 42) { // pat[1] === '*' skip continuous '*' | |
return shExpMatch(url, pat.substr(1)); | |
} else { | |
if (url.length === 0) { | |
return false; | |
} | |
if (pcharcode1 === ucharcode0 || pcharcode1 === 63) { | |
if (shExpMatch(url.substr(1), pat)) { | |
return true; | |
} else { | |
return shExpMatch(url.substr(1), pat.substr(2)); | |
} | |
} else { | |
return shExpMatch(url.substr(1), pat); | |
} | |
} | |
} else if (pcharcode0 === 63) { | |
if (url.length === 0) { | |
return false; | |
} | |
return shExpMatch(url.substr(1),pat.substr(1)); | |
} else { | |
if (url.length === 0) { | |
return false; | |
} | |
if (ucharcode0 === pcharcode0) { | |
return shExpMatch(url.substr(1),pat.substr(1)); | |
} else { | |
return false; | |
} | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment