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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 /** | 20 /** |
21 * @fileOverview Matcher class implementing matching addresses against | 21 * @fileOverview Matcher class implementing matching addresses against |
22 * a list of filters. | 22 * a list of filters. |
23 */ | 23 */ |
24 | 24 |
25 const {RegExpFilter, WhitelistFilter} = require("./filterClasses"); | 25 const {RegExpFilter, WhitelistFilter} = require("./filterClasses"); |
26 const {suffixes} = require("./domain"); | 26 const {normalizeHostname, suffixes} = require("./domain"); |
27 | 27 |
28 /** | 28 /** |
29 * Regular expression for matching a keyword in a filter. | 29 * Regular expression for matching a keyword in a filter. |
30 * @type {RegExp} | 30 * @type {RegExp} |
31 */ | 31 */ |
32 const keywordRegExp = /[^a-z0-9%*][a-z0-9%]{3,}(?=[^a-z0-9%*])/; | 32 const keywordRegExp = /[^a-z0-9%*][a-z0-9%]{3,}(?=[^a-z0-9%*])/; |
33 | 33 |
34 /** | 34 /** |
35 * Regular expression for matching all keywords in a filter. | 35 * Regular expression for matching all keywords in a filter. |
36 * @type {RegExp} | 36 * @type {RegExp} |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 | 420 |
421 _checkEntryMatchByDomain(keyword, location, typeMask, docDomain, thirdParty, | 421 _checkEntryMatchByDomain(keyword, location, typeMask, docDomain, thirdParty, |
422 sitekey, specificOnly, collection) | 422 sitekey, specificOnly, collection) |
423 { | 423 { |
424 let filtersByDomain = this._filterDomainMapsByKeyword.get(keyword); | 424 let filtersByDomain = this._filterDomainMapsByKeyword.get(keyword); |
425 if (filtersByDomain) | 425 if (filtersByDomain) |
426 { | 426 { |
427 // The code in this block is similar to the generateStyleSheetForDomain | 427 // The code in this block is similar to the generateStyleSheetForDomain |
428 // function in lib/elemHide.js. | 428 // function in lib/elemHide.js. |
429 | 429 |
430 if (docDomain) | |
431 { | |
432 if (docDomain[docDomain.length - 1] == ".") | |
433 docDomain = docDomain.replace(/\.+$/, ""); | |
434 | |
435 docDomain = docDomain.toLowerCase(); | |
436 } | |
437 | |
438 let excluded = new Set(); | 430 let excluded = new Set(); |
439 | 431 |
440 for (let suffix of suffixes(docDomain || "", !specificOnly)) | 432 for (let suffix of suffixes(docDomain ? normalizeHostname(docDomain) : "", |
| 433 !specificOnly)) |
441 { | 434 { |
442 let filters = filtersByDomain.get(suffix); | 435 let filters = filtersByDomain.get(suffix); |
443 if (filters) | 436 if (filters) |
444 { | 437 { |
445 for (let [filter, include] of filters.entries()) | 438 for (let [filter, include] of filters.entries()) |
446 { | 439 { |
447 if (!include) | 440 if (!include) |
448 { | 441 { |
449 excluded.add(filter); | 442 excluded.add(filter); |
450 } | 443 } |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 | 814 |
822 exports.CombinedMatcher = CombinedMatcher; | 815 exports.CombinedMatcher = CombinedMatcher; |
823 | 816 |
824 /** | 817 /** |
825 * Shared {@link CombinedMatcher} instance that should usually be used. | 818 * Shared {@link CombinedMatcher} instance that should usually be used. |
826 * @type {CombinedMatcher} | 819 * @type {CombinedMatcher} |
827 */ | 820 */ |
828 let defaultMatcher = new CombinedMatcher(); | 821 let defaultMatcher = new CombinedMatcher(); |
829 | 822 |
830 exports.defaultMatcher = defaultMatcher; | 823 exports.defaultMatcher = defaultMatcher; |
OLD | NEW |