Left: | ||
Right: |
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 * Creates a <code>URLInfo</code> object. | |
50 * | |
51 * @param {string} href The entire URL. | |
52 * @param {string} [protocol] The protocol scheme of the URL, including the | |
53 * final <code>:</code>. | |
54 * @param {string} [hostname] The hostname of the URL. | |
55 * | |
56 * @private | |
57 */ | |
58 constructor(href, protocol = "", hostname = "") | |
59 { | |
60 this._href = href; | |
61 this._protocol = protocol; | |
62 this._hostname = hostname; | |
63 } | |
64 | |
65 /** | |
66 * The entire URL. | |
67 * @type {string} | |
68 */ | |
69 get href() | |
70 { | |
71 return this._href; | |
72 } | |
73 | |
74 /** | |
75 * The protocol scheme of the URL, including the final <code>:</code>. | |
76 * @type {string} | |
77 */ | |
78 get protocol() | |
79 { | |
80 return this._protocol; | |
81 } | |
82 | |
83 /** | |
84 * The hostname of the URL. | |
85 * @type {string} | |
86 */ | |
87 get hostname() | |
88 { | |
89 return this._hostname; | |
90 } | |
91 | |
92 /** | |
93 * Returns the entire URL. | |
94 * @returns {string} The entire URL. | |
95 */ | |
96 toString() | |
97 { | |
98 return this._href; | |
99 } | |
100 } | |
101 | |
102 /** | |
103 * Parses a URL to extract the protocol and the hostname. This is a lightweight | |
104 * alternative to the native <code>URL</code> object. Unlike the | |
105 * <code>URL</code> object, this function is not robust and will give incorrect | |
106 * results for invalid URLs. <em>Use this function with valid, normalized, | |
107 * properly encoded (IDNA and percent-encoding) URLs only.</em> | |
108 * | |
109 * @param {string} url The URL to parse. | |
110 * @returns {URLInfo} Information about the URL. | |
111 */ | |
112 function parseURL(url) | |
113 { | |
114 let match = /^([^:]+:)(?:\/\/(?:[^/]*@)?(\[[^\]]*\]|[^:/]+))?/.exec(url); | |
115 return match ? new URLInfo(url, match[1], match[2]) : new URLInfo(url); | |
hub
2019/02/21 16:24:08
if the parsing fails, then we only have a valid `_
Manish Jethani
2019/02/23 07:32:05
Actually since the function assumes that the URL w
| |
116 } | |
117 | |
118 exports.parseURL = parseURL; | |
119 | |
120 /** | |
43 * Normalizes a hostname. | 121 * Normalizes a hostname. |
44 * @param {string} hostname | 122 * @param {string} hostname |
45 * @returns {string} | 123 * @returns {string} |
46 */ | 124 */ |
47 function normalizeHostname(hostname) | 125 function normalizeHostname(hostname) |
48 { | 126 { |
49 return (hostname[hostname.length - 1] == "." ? | 127 return (hostname[hostname.length - 1] == "." ? |
50 hostname.replace(/\.+$/, "") : hostname).toLowerCase(); | 128 hostname.replace(/\.+$/, "") : hostname).toLowerCase(); |
51 } | 129 } |
52 | 130 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
153 if (requestHostname == documentHostname) | 231 if (requestHostname == documentHostname) |
154 return false; | 232 return false; |
155 | 233 |
156 if (!isDomain(requestHostname) || !isDomain(documentHostname)) | 234 if (!isDomain(requestHostname) || !isDomain(documentHostname)) |
157 return true; | 235 return true; |
158 | 236 |
159 return getBaseDomain(requestHostname) != getBaseDomain(documentHostname); | 237 return getBaseDomain(requestHostname) != getBaseDomain(documentHostname); |
160 } | 238 } |
161 | 239 |
162 exports.isThirdParty = isThirdParty; | 240 exports.isThirdParty = isThirdParty; |
OLD | NEW |