| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 { | 33 { |
| 34 let map = new Map(); | 34 let map = new Map(); |
| 35 | 35 |
| 36 for (let key in publicSuffixes) | 36 for (let key in publicSuffixes) |
| 37 map.set(key, publicSuffixes[key]); | 37 map.set(key, publicSuffixes[key]); |
| 38 | 38 |
| 39 return map; | 39 return map; |
| 40 } | 40 } |
| 41 | 41 |
| 42 /** | 42 /** |
| 43 * A <code>URLInfo</code> object represents information about a URL. It is |
| 44 * returned by <code>{@link parseURL}</code>. |
| 45 */ |
| 46 class URLInfo |
| 47 { |
| 48 /** |
| 49 * @private |
| 50 */ |
| 51 constructor(href, protocol = "", hostname = "") |
| 52 { |
| 53 this._href = href; |
| 54 this._protocol = protocol; |
| 55 this._hostname = hostname; |
| 56 } |
| 57 |
| 58 /** |
| 59 * The entire URL. |
| 60 * @type {string} |
| 61 */ |
| 62 get href() |
| 63 { |
| 64 return this._href; |
| 65 } |
| 66 |
| 67 /** |
| 68 * The protocol scheme of the URL, including the final <code>:</code>. |
| 69 * @type {string} |
| 70 */ |
| 71 get protocol() |
| 72 { |
| 73 return this._protocol; |
| 74 } |
| 75 |
| 76 /** |
| 77 * The hostname of the URL. |
| 78 * @type {string} |
| 79 */ |
| 80 get hostname() |
| 81 { |
| 82 return this._hostname; |
| 83 } |
| 84 } |
| 85 |
| 86 /** |
| 87 * Parses a URL to extract the protocol and the hostname. This is a lightweight |
| 88 * alternative to the native <code>URL</code> object. Unlike the |
| 89 * <code>URL</code> object, this function is not robust and will give incorrect |
| 90 * results for invalid URLs. <em>Use this function with valid, normalized, |
| 91 * properly encoded (IDNA and percent-encoding) URLs only.</em> |
| 92 * |
| 93 * @param {string} url The URL to parse. |
| 94 * @returns {URLInfo} Information about the URL. |
| 95 */ |
| 96 function parseURL(url) |
| 97 { |
| 98 let match = /^([^:]+:)(?:\/\/(?:[^/]*@)?(\[[^\]]*\]|[^:/]+))?/.exec(url); |
| 99 return match ? new URLInfo(url, match[1], match[2]) : new URLInfo(url); |
| 100 } |
| 101 |
| 102 exports.parseURL = parseURL; |
| 103 |
| 104 /** |
| 43 * Normalizes a hostname. | 105 * Normalizes a hostname. |
| 44 * @param {string} hostname | 106 * @param {string} hostname |
| 45 * @returns {string} | 107 * @returns {string} |
| 46 */ | 108 */ |
| 47 function normalizeHostname(hostname) | 109 function normalizeHostname(hostname) |
| 48 { | 110 { |
| 49 return (hostname[hostname.length - 1] == "." ? | 111 return (hostname[hostname.length - 1] == "." ? |
| 50 hostname.replace(/\.+$/, "") : hostname).toLowerCase(); | 112 hostname.replace(/\.+$/, "") : hostname).toLowerCase(); |
| 51 } | 113 } |
| 52 | 114 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 if (requestHostname == documentHostname) | 215 if (requestHostname == documentHostname) |
| 154 return false; | 216 return false; |
| 155 | 217 |
| 156 if (!isDomain(requestHostname) || !isDomain(documentHostname)) | 218 if (!isDomain(requestHostname) || !isDomain(documentHostname)) |
| 157 return true; | 219 return true; |
| 158 | 220 |
| 159 return getBaseDomain(requestHostname) != getBaseDomain(documentHostname); | 221 return getBaseDomain(requestHostname) != getBaseDomain(documentHostname); |
| 160 } | 222 } |
| 161 | 223 |
| 162 exports.isThirdParty = isThirdParty; | 224 exports.isThirdParty = isThirdParty; |
| OLD | NEW |