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

Side by Side Diff: lib/filterValidation.js

Issue 29636648: Issue 6193 - Allow element hiding emulation exceptions (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Created Dec. 12, 2017, 6:53 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 /** @module filterValidation */ 18 /** @module filterValidation */
19 19
20 "use strict"; 20 "use strict";
21 21
22 const {Filter, InvalidFilter, ElemHideBase, ElemHideEmulationFilter} = 22 const {Filter, InvalidFilter, ElemHideBase, ElemHideException,
23 require("filterClasses"); 23 ElemHideEmulationFilter} = require("filterClasses");
24 const {Utils} = require("utils"); 24 const {Utils} = require("utils");
25 25
26 /** 26 /**
27 * An error returned by 27 * An error returned by
28 * {@link module:filterValidation.parseFilter parseFilter()} or 28 * {@link module:filterValidation.parseFilter parseFilter()} or
29 * {@link module:filterValidation.parseFilters parseFilters()} 29 * {@link module:filterValidation.parseFilters parseFilters()}
30 * indicating that a given filter cannot be parsed, 30 * indicating that a given filter cannot be parsed,
31 * contains an invalid CSS selector or is a filter list header. 31 * contains an invalid CSS selector or is a filter list header.
32 * 32 *
33 * @param {string} type See documentation in the constructor below. 33 * @param {string} type See documentation in the constructor below.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 document.querySelector(selector); 104 document.querySelector(selector);
105 sheet.insertRule(selector + "{}", 0); 105 sheet.insertRule(selector + "{}", 0);
106 } 106 }
107 catch (e) 107 catch (e)
108 { 108 {
109 return false; 109 return false;
110 } 110 }
111 return true; 111 return true;
112 } 112 }
113 113
114 function isValidFilterSelector(filter)
115 {
116 // Only ElemHideBase has selectors
kzar 2018/04/05 15:00:27 Perhaps split these up a bit? Something like this
hub 2018/04/05 17:04:41 Done.
117 // We don't check the syntax of ElemHideEmulationFilter yet
118 if (!(filter instanceof ElemHideBase)
119 || (filter instanceof ElemHideEmulationFilter))
kzar 2018/04/05 15:00:27 Nit: Parenthesis around the second clause seem red
hub 2018/04/05 17:04:41 Done.
120 return true;
kzar 2018/04/05 15:00:27 Nit: I think a newline between these cases would l
hub 2018/04/05 17:04:41 Done.
121 // If it ElemHideException, don't check if it is
122 // for an EmulationFilter
123 if ((filter instanceof ElemHideException) &&
124 (filter.selector.indexOf(":-abp-") != -1))
kzar 2018/04/05 15:00:27 Is this check good enough now that we support :has
hub 2018/04/05 17:04:41 This idea is that like above if we have one of the
kzar 2018/04/06 10:05:44 Acknowledged.
125 return true;
126
127 return isValidCSSSelector(filter.selector);
128 }
129
114 /** 130 /**
115 * @typedef ParsedFilter 131 * @typedef ParsedFilter
116 * @property {?Filter} [filter] 132 * @property {?Filter} [filter]
117 * The parsed filter if it is valid. Or null if the given string is empty. 133 * The parsed filter if it is valid. Or null if the given string is empty.
118 * @property {FilterParsingError} [error] 134 * @property {FilterParsingError} [error]
119 * See {@link module:filterValidation~FilterParsingError FilterParsingError} 135 * See {@link module:filterValidation~FilterParsingError FilterParsingError}
120 */ 136 */
121 137
122 let parseFilter = 138 let parseFilter =
123 /** 139 /**
(...skipping 12 matching lines...) Expand all
136 if (text[0] == "[") 152 if (text[0] == "[")
137 return {error: new FilterParsingError("unexpected-filter-list-header")}; 153 return {error: new FilterParsingError("unexpected-filter-list-header")};
138 154
139 filter = Filter.fromText(text); 155 filter = Filter.fromText(text);
140 156
141 if (filter instanceof InvalidFilter) 157 if (filter instanceof InvalidFilter)
142 { 158 {
143 return {error: new FilterParsingError("invalid-filter", 159 return {error: new FilterParsingError("invalid-filter",
144 {reason: filter.reason})}; 160 {reason: filter.reason})};
145 } 161 }
146 if (filter instanceof ElemHideBase && 162 if (!isValidFilterSelector(filter))
147 !(filter instanceof ElemHideEmulationFilter) &&
148 !isValidCSSSelector(filter.selector))
149 { 163 {
150 return {error: new FilterParsingError("invalid-css-selector", 164 return {error: new FilterParsingError("invalid-css-selector",
151 {selector: filter.selector})}; 165 {selector: filter.selector})};
152 } 166 }
153 } 167 }
154 168
155 return {filter}; 169 return {filter};
156 }; 170 };
157 171
158 /** 172 /**
(...skipping 25 matching lines...) Expand all
184 198
185 if (error) 199 if (error)
186 { 200 {
187 error.lineno = i + 1; 201 error.lineno = i + 1;
188 errors.push(error); 202 errors.push(error);
189 } 203 }
190 } 204 }
191 205
192 return {filters, errors}; 206 return {filters, errors};
193 }; 207 };
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