Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: lib/antiadblockInit.js

Issue 29785581: Issue 6091 - Add checks for overly generic antiadblock filters (Closed) Base URL: https://hg.adblockplus.org/adblockplusui/
Patch Set: Address PS5 comments Created May 25, 2018, 10:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /* globals publicSuffixes */
19
18 "use strict"; 20 "use strict";
19 21
20 const {Prefs} = require("prefs"); 22 const {Prefs} = require("prefs");
21 const {ActiveFilter} = require("filterClasses"); 23 const {ActiveFilter} = require("filterClasses");
22 const {FilterStorage} = require("filterStorage"); 24 const {FilterStorage} = require("filterStorage");
23 const {FilterNotifier} = require("filterNotifier"); 25 const {FilterNotifier} = require("filterNotifier");
24 const {Subscription} = require("subscriptionClasses"); 26 const {Subscription} = require("subscriptionClasses");
25 const {Notification} = require("notification"); 27 const {Notification} = require("notification");
26 28
27 exports.initAntiAdblockNotification = function initAntiAdblockNotification() 29 exports.initAntiAdblockNotification = function initAntiAdblockNotification()
(...skipping 17 matching lines...) Expand all
45 { 47 {
46 let urlFilters = []; 48 let urlFilters = [];
47 for (let filter of subscription.filters) 49 for (let filter of subscription.filters)
48 { 50 {
49 if (filter instanceof ActiveFilter && filter.domains) 51 if (filter instanceof ActiveFilter && filter.domains)
50 { 52 {
51 for (let [domain, included] of filter.domains) 53 for (let [domain, included] of filter.domains)
52 { 54 {
53 let urlFilter = "||" + domain + "^$document"; 55 let urlFilter = "||" + domain + "^$document";
54 if (domain && included && urlFilters.indexOf(urlFilter) == -1) 56 if (domain && included && urlFilters.indexOf(urlFilter) == -1)
55 urlFilters.push(urlFilter); 57 {
58 if (domain.match(/\.[^$]/) && !publicSuffixes.hasOwnProperty(domain) )
Thomas Greiner 2018/05/28 13:09:37 Detail: We're only interested in whether the strin
Jon Sonesen 2018/05/29 20:31:43 Acknowledged.
59 urlFilters.push(urlFilter);
60 }
56 } 61 }
57 } 62 }
58 } 63 }
59 notification.urlFilters = urlFilters; 64 notification.urlFilters = urlFilters;
60 Notification.addNotification(notification); 65 Notification.addNotification(notification);
61 Notification.addQuestionListener(notification.id, notificationListener); 66 Notification.addQuestionListener(notification.id, notificationListener);
62 } 67 }
63 68
64 function removeAntiAdblockNotification() 69 function removeAntiAdblockNotification()
65 { 70 {
(...skipping 16 matching lines...) Expand all
82 if (url in FilterStorage.knownSubscriptions && subscription.disabled) 87 if (url in FilterStorage.knownSubscriptions && subscription.disabled)
83 addAntiAdblockNotification(subscription); 88 addAntiAdblockNotification(subscription);
84 else 89 else
85 removeAntiAdblockNotification(); 90 removeAntiAdblockNotification();
86 } 91 }
87 92
88 FilterNotifier.on("subscription.updated", onSubscriptionChange); 93 FilterNotifier.on("subscription.updated", onSubscriptionChange);
89 FilterNotifier.on("subscription.removed", onSubscriptionChange); 94 FilterNotifier.on("subscription.removed", onSubscriptionChange);
90 FilterNotifier.on("subscription.disabled", onSubscriptionChange); 95 FilterNotifier.on("subscription.disabled", onSubscriptionChange);
91 }; 96 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld