uri-utils.js (5667B) - View raw
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181/******************************************************************************* uBlock Origin - a comprehensive, efficient content blocker Copyright (C) 2014-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 */ import publicSuffixList from '../lib/publicsuffixlist/publicsuffixlist.js'; import punycode from '../lib/punycode.js'; /******************************************************************************/ // Originally: // https://github.com/gorhill/uBlock/blob/8b5733a58d3acf9fb62815e14699c986bd1c2fdc/src/js/uritools.js const reHostnameFromCommonURL = /^https:\/\/[0-9a-z._-]+[0-9a-z]\//; const reAuthorityFromURI = /^(?:[^:/?#]+:)?(\/\/[^/?#]+)/; const reHostFromNakedAuthority = /^[0-9a-z._-]+[0-9a-z]$/i; const reHostFromAuthority = /^(?:[^@]*@)?([^:]+)(?::\d*)?$/; const reIPv6FromAuthority = /^(?:[^@]*@)?(\[[0-9a-f:]+\])(?::\d*)?$/i; const reMustNormalizeHostname = /[^0-9a-z._-]/; const reOriginFromURI = /^[^:/?#]+:\/\/[^/?#]+/; const reHostnameFromNetworkURL = /^(?:http|ws|ftp)s?:\/\/([0-9a-z_][0-9a-z._-]*[0-9a-z])(?::\d+)?\//; const reIPAddressNaive = /^\d+\.\d+\.\d+\.\d+$|^\[[\da-zA-Z:]+\]$/; const reNetworkURI = /^(?:ftps?|https?|wss?):\/\//; // For performance purpose, as simple tests as possible const reIPv4VeryCoarse = /\.\d+$/; const reHostnameVeryCoarse = /[g-z_-]/; /******************************************************************************/ function domainFromHostname(hostname) { return reIPAddressNaive.test(hostname) ? hostname : publicSuffixList.getDomain(hostname); } function domainFromURI(uri) { if ( !uri ) { return ''; } return domainFromHostname(hostnameFromURI(uri)); } function entityFromDomain(domain) { const pos = domain.indexOf('.'); return pos !== -1 ? domain.slice(0, pos) + '.*' : ''; } function entityFromHostname(hostname, domain) { if ( domain === undefined ) { domain = domainFromHostname(hostname); } const entity = entityFromDomain(domain); if ( entity === '' ) { return ''; } return `${hostname.slice(0, -domain.length)}${entity}` } function hostnameFromURI(uri) { let match = reHostnameFromCommonURL.exec(uri); if ( match !== null ) { return match[0].slice(8, -1); } match = reAuthorityFromURI.exec(uri); if ( match === null ) { return ''; } const authority = match[1].slice(2); if ( reHostFromNakedAuthority.test(authority) ) { return authority.toLowerCase(); } match = reHostFromAuthority.exec(authority); if ( match === null ) { match = reIPv6FromAuthority.exec(authority); if ( match === null ) { return ''; } } let hostname = match[1]; while ( hostname.endsWith('.') ) { hostname = hostname.slice(0, -1); } if ( reMustNormalizeHostname.test(hostname) ) { hostname = punycode.toASCII(hostname.toLowerCase()); } return hostname; } function hostnameFromNetworkURL(url) { const matches = reHostnameFromNetworkURL.exec(url); return matches !== null ? matches[1] : ''; } function originFromURI(uri) { let match = reHostnameFromCommonURL.exec(uri); if ( match !== null ) { return match[0].slice(0, -1); } match = reOriginFromURI.exec(uri); return match !== null ? match[0].toLowerCase() : ''; } function isNetworkURI(uri) { return reNetworkURI.test(uri); } /******************************************************************************/ function toBroaderHostname(hostname) { const pos = hostname.indexOf('.'); if ( pos !== -1 ) { return hostname.slice(pos + 1); } return hostname !== '*' && hostname !== '' ? '*' : ''; } function toBroaderIPv4Address(ipaddress) { if ( ipaddress === '*' || ipaddress === '' ) { return ''; } const pos = ipaddress.lastIndexOf('.'); if ( pos === -1 ) { return '*'; } return ipaddress.slice(0, pos); } function toBroaderIPv6Address(ipaddress) { return ipaddress !== '*' && ipaddress !== '' ? '*' : ''; } function decomposeHostname(hostname, out) { if ( out.length !== 0 && out[0] === hostname ) { return out; } let broadenFn; if ( reHostnameVeryCoarse.test(hostname) === false ) { if ( reIPv4VeryCoarse.test(hostname) ) { broadenFn = toBroaderIPv4Address; } else if ( hostname.startsWith('[') ) { broadenFn = toBroaderIPv6Address; } } if ( broadenFn === undefined ) { broadenFn = toBroaderHostname; } out[0] = hostname; let i = 1; for (;;) { hostname = broadenFn(hostname); if ( hostname === '' ) { break; } out[i++] = hostname; } out.length = i; return out; } /******************************************************************************/ export { decomposeHostname, domainFromHostname, domainFromURI, entityFromDomain, entityFromHostname, hostnameFromNetworkURL, hostnameFromURI, isNetworkURI, originFromURI, };