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

Delta Between Two Patch Sets: lib/filterClasses.js

Issue 29737558: Issue 6538, 6781 - Implement support for snippet filters (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Left Patch Set: Change ElemHideBase.fromText to ContentFilter.fromText Created July 6, 2018, 1:24 p.m.
Right Patch Set: Improve comment formatting Created July 11, 2018, 1:02 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | lib/filterListener.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 text = text.replace(/[^\S ]+/g, ""); 179 text = text.replace(/[^\S ]+/g, "");
180 180
181 // Don't remove spaces inside comments 181 // Don't remove spaces inside comments
182 if (/^ *!/.test(text)) 182 if (/^ *!/.test(text))
183 return text.trim(); 183 return text.trim();
184 184
185 // Special treatment for content filters, right side is allowed to contain 185 // Special treatment for content filters, right side is allowed to contain
186 // spaces 186 // spaces
187 if (Filter.contentRegExp.test(text)) 187 if (Filter.contentRegExp.test(text))
188 { 188 {
189 let [, domains, separator, script] = /^(.*?)(#[@?$]?#?)(.*)$/.exec(text); 189 let [, domains, separator, body] = /^(.*?)(#[@?$]?#?)(.*)$/.exec(text);
190 return domains.replace(/ +/g, "") + separator + script.trim(); 190 return domains.replace(/ +/g, "") + separator + body.trim();
191 } 191 }
192 192
193 // For most regexp filters we strip all spaces, but $csp filter options 193 // For most regexp filters we strip all spaces, but $csp filter options
194 // are allowed to contain single (non trailing) spaces. 194 // are allowed to contain single (non trailing) spaces.
195 let strippedText = text.replace(/ +/g, ""); 195 let strippedText = text.replace(/ +/g, "");
196 if (!strippedText.includes("$") || !/\bcsp=/i.test(strippedText)) 196 if (!strippedText.includes("$") || !/\bcsp=/i.test(strippedText))
197 return strippedText; 197 return strippedText;
198 198
199 let optionsMatch = Filter.optionsRegExp.exec(strippedText); 199 let optionsMatch = Filter.optionsRegExp.exec(strippedText);
200 if (!optionsMatch) 200 if (!optionsMatch)
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 */ 391 */
392 domainSourceIsLowerCase: false, 392 domainSourceIsLowerCase: false,
393 393
394 /** 394 /**
395 * Map containing domains that this filter should match on/not match 395 * Map containing domains that this filter should match on/not match
396 * on or null if the filter should match on all domains 396 * on or null if the filter should match on all domains
397 * @type {?Map.<string,boolean>} 397 * @type {?Map.<string,boolean>}
398 */ 398 */
399 get domains() 399 get domains()
400 { 400 {
401 let prop = Object.getOwnPropertyDescriptor(this, "_domains");
402 if (prop)
403 {
404 let {value} = prop;
405 return typeof value == "string" ?
406 new Map([[value, true], ["", false]]) : value;
407 }
408
401 let domains = null; 409 let domains = null;
402 410
403 if (this.domainSource) 411 if (this.domainSource)
404 { 412 {
405 let source = this.domainSource; 413 let source = this.domainSource;
406 if (!this.domainSourceIsLowerCase) 414 if (!this.domainSourceIsLowerCase)
407 { 415 {
408 // RegExpFilter already have lowercase domains 416 // RegExpFilter already have lowercase domains
409 source = source.toLowerCase(); 417 source = source.toLowerCase();
410 } 418 }
411 let list = source.split(this.domainSeparator); 419 let list = source.split(this.domainSeparator);
412 if (list.length == 1 && list[0][0] != "~") 420 if (list.length == 1 && list[0][0] != "~")
413 { 421 {
414 // Fast track for the common one-domain scenario 422 // Fast track for the common one-domain scenario
415 domains = new Map([["", false], [list[0], true]]); 423 domains = list[0];
416 } 424 }
417 else 425 else
418 { 426 {
419 let hasIncludes = false; 427 let hasIncludes = false;
420 for (let i = 0; i < list.length; i++) 428 for (let i = 0; i < list.length; i++)
421 { 429 {
422 let domain = list[i]; 430 let domain = list[i];
423 if (domain == "") 431 if (domain == "")
424 continue; 432 continue;
425 433
(...skipping 14 matching lines...) Expand all
440 448
441 domains.set(domain, include); 449 domains.set(domain, include);
442 } 450 }
443 if (domains) 451 if (domains)
444 domains.set("", !hasIncludes); 452 domains.set("", !hasIncludes);
445 } 453 }
446 454
447 this.domainSource = null; 455 this.domainSource = null;
448 } 456 }
449 457
450 Object.defineProperty(this, "domains", {value: domains, enumerable: true}); 458 Object.defineProperty(this, "_domains", {value: domains});
451 return this.domains; 459 return this.domains;
452 }, 460 },
453 461
454 /** 462 /**
455 * Array containing public keys of websites that this filter should apply to 463 * Array containing public keys of websites that this filter should apply to
456 * @type {?string[]} 464 * @type {?string[]}
457 */ 465 */
458 sitekeys: null, 466 sitekeys: null,
459 467
460 /** 468 /**
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 990
983 WhitelistFilter.prototype = extend(RegExpFilter, { 991 WhitelistFilter.prototype = extend(RegExpFilter, {
984 type: "whitelist" 992 type: "whitelist"
985 }); 993 });
986 994
987 /** 995 /**
988 * Base class for content filters 996 * Base class for content filters
989 * @param {string} text see {@link Filter Filter()} 997 * @param {string} text see {@link Filter Filter()}
990 * @param {string} [domains] Host names or domains the filter should be 998 * @param {string} [domains] Host names or domains the filter should be
991 * restricted to 999 * restricted to
992 * @param {string} script Script that should be executed 1000 * @param {string} body The body of the filter
993 * @constructor 1001 * @constructor
994 * @augments ActiveFilter 1002 * @augments ActiveFilter
995 */ 1003 */
996 function ContentFilter(text, domains, script) 1004 function ContentFilter(text, domains, body)
997 { 1005 {
998 ActiveFilter.call(this, text, domains || null); 1006 ActiveFilter.call(this, text, domains || null);
999 1007
1000 this.script = script; 1008 this.body = body;
1001 } 1009 }
1002 exports.ContentFilter = ContentFilter; 1010 exports.ContentFilter = ContentFilter;
1003 1011
1004 ContentFilter.prototype = extend(ActiveFilter, { 1012 ContentFilter.prototype = extend(ActiveFilter, {
1005 /** 1013 /**
1006 * @see ActiveFilter.domainSeparator 1014 * @see ActiveFilter.domainSeparator
1007 */ 1015 */
1008 domainSeparator: ",", 1016 domainSeparator: ",",
1009 1017
1010 /** 1018 /**
1011 * Script that should be executed 1019 * The body of the filter
1012 * @type {string} 1020 * @type {string}
1013 */ 1021 */
1014 script: null 1022 body: null
1015 }); 1023 });
1016 1024
1017 /** 1025 /**
1018 * Creates a content filter from a pre-parsed text representation 1026 * Creates a content filter from a pre-parsed text representation
1019 * 1027 *
1020 * @param {string} text same as in Filter() 1028 * @param {string} text same as in Filter()
1021 * @param {string} [domains] 1029 * @param {string} [domains]
1022 * domains part of the text representation 1030 * domains part of the text representation
1023 * @param {string} [type] 1031 * @param {string} [type]
1024 * rule type, either empty or @ (exception) or ? (emulation rule) or 1032 * rule type, either:
1025 * $ (snippet) 1033 * <li>"" for an element hiding filter</li>
Manish Jethani 2018/07/11 13:04:26 Using just "-" doesn't work in the HTML version, b
kzar 2018/07/11 17:17:52 Acknowledged.
1026 * @param {string} script 1034 * <li>"@" for an element hiding exception filter</li>
1027 * script part of the text representation, either a CSS selector or a snippet 1035 * <li>"?" for an element hiding emulation filter</li>
1036 * <li>"$" for a snippet filter</li>
1037 * @param {string} body
1038 * body part of the text representation, either a CSS selector or a snippet
1028 * script 1039 * script
1029 * @return {ElemHideFilter|ElemHideException| 1040 * @return {ElemHideFilter|ElemHideException|
1030 * ElemHideEmulationFilter|SnippetFilter|InvalidFilter} 1041 * ElemHideEmulationFilter|SnippetFilter|InvalidFilter}
1031 */ 1042 */
1032 ContentFilter.fromText = function(text, domains, type, script) 1043 ContentFilter.fromText = function(text, domains, type, body)
1033 { 1044 {
1034 // We don't allow content filters which have any empty domains. 1045 // We don't allow content filters which have any empty domains.
1035 // Note: The ContentFilter.prototype.domainSeparator is duplicated here, if 1046 // Note: The ContentFilter.prototype.domainSeparator is duplicated here, if
1036 // that changes this must be changed too. 1047 // that changes this must be changed too.
1037 if (domains && /(^|,)~?(,|$)/.test(domains)) 1048 if (domains && /(^|,)~?(,|$)/.test(domains))
1038 return new InvalidFilter(text, "filter_invalid_domain"); 1049 return new InvalidFilter(text, "filter_invalid_domain");
1039 1050
1040 if (type == "@") 1051 if (type == "@")
1041 return new ElemHideException(text, domains, script); 1052 return new ElemHideException(text, domains, body);
1042 1053
1043 if (type == "$") 1054 if (type == "$")
1044 return new SnippetFilter(text, domains, script); 1055 return new SnippetFilter(text, domains, body);
1045 1056
1046 if (type == "?") 1057 if (type == "?")
1047 { 1058 {
1048 // Element hiding emulation filters are inefficient so we need to make sure 1059 // Element hiding emulation filters are inefficient so we need to make sure
1049 // that they're only applied if they specify active domains 1060 // that they're only applied if they specify active domains
1050 if (!/,[^~][^,.]*\.[^,]/.test("," + domains)) 1061 if (!/,[^~][^,.]*\.[^,]/.test("," + domains))
1051 return new InvalidFilter(text, "filter_elemhideemulation_nodomain"); 1062 return new InvalidFilter(text, "filter_elemhideemulation_nodomain");
1052 1063
1053 return new ElemHideEmulationFilter(text, domains, script); 1064 return new ElemHideEmulationFilter(text, domains, body);
1054 } 1065 }
1055 1066
1056 return new ElemHideFilter(text, domains, script); 1067 return new ElemHideFilter(text, domains, body);
1057 }; 1068 };
1058 1069
1059 /* 1070 /**
1060 * Base class for element hiding filters 1071 * Base class for element hiding filters
1061 * @param {string} text see {@link Filter Filter()} 1072 * @param {string} text see {@link Filter Filter()}
1062 * @param {string} [domains] see {@link ContentFilter ContentFilter()} 1073 * @param {string} [domains] see {@link ContentFilter ContentFilter()}
1063 * @param {string} selector CSS selector for the HTML elements that should be 1074 * @param {string} selector CSS selector for the HTML elements that should be
1064 * hidden 1075 * hidden
1065 * @constructor 1076 * @constructor
1066 * @augments ContentFilter 1077 * @augments ContentFilter
1067 */ 1078 */
1068 function ElemHideBase(text, domains, selector) 1079 function ElemHideBase(text, domains, selector)
1069 { 1080 {
1070 ContentFilter.call(this, text, domains, selector); 1081 ContentFilter.call(this, text, domains, selector);
1071 } 1082 }
1072 exports.ElemHideBase = ElemHideBase; 1083 exports.ElemHideBase = ElemHideBase;
1073 1084
1074 ElemHideBase.prototype = extend(ContentFilter, { 1085 ElemHideBase.prototype = extend(ContentFilter, {
1075 /** 1086 /**
1076 * CSS selector for the HTML elements that should be hidden 1087 * CSS selector for the HTML elements that should be hidden
1077 * @type {string} 1088 * @type {string}
1078 */ 1089 */
1079 get selector() 1090 get selector()
1080 { 1091 {
1081 // Braces are being escaped to prevent CSS rule injection. 1092 // Braces are being escaped to prevent CSS rule injection.
1082 return this.script.replace("{", "\\7B ").replace("}", "\\7D "); 1093 return this.body.replace("{", "\\7B ").replace("}", "\\7D ");
1083 } 1094 }
1084 }); 1095 });
1085 1096
1086 /** 1097 /**
1087 * Class for element hiding filters 1098 * Class for element hiding filters
1088 * @param {string} text see {@link Filter Filter()} 1099 * @param {string} text see {@link Filter Filter()}
1089 * @param {string} [domains] see {@link ElemHideBase ElemHideBase()} 1100 * @param {string} [domains] see {@link ElemHideBase ElemHideBase()}
1090 * @param {string} selector see {@link ElemHideBase ElemHideBase()} 1101 * @param {string} selector see {@link ElemHideBase ElemHideBase()}
1091 * @constructor 1102 * @constructor
1092 * @augments ElemHideBase 1103 * @augments ElemHideBase
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1145 * @constructor 1156 * @constructor
1146 * @augments ContentFilter 1157 * @augments ContentFilter
1147 */ 1158 */
1148 function SnippetFilter(text, domains, script) 1159 function SnippetFilter(text, domains, script)
1149 { 1160 {
1150 ContentFilter.call(this, text, domains, script); 1161 ContentFilter.call(this, text, domains, script);
1151 } 1162 }
1152 exports.SnippetFilter = SnippetFilter; 1163 exports.SnippetFilter = SnippetFilter;
1153 1164
1154 SnippetFilter.prototype = extend(ContentFilter, { 1165 SnippetFilter.prototype = extend(ContentFilter, {
1155 type: "snippet" 1166 type: "snippet",
1156 }); 1167
1168 /**
1169 * Script that should be executed
1170 * @type {string}
1171 */
1172 get script()
1173 {
1174 return this.body;
1175 }
1176 });
LEFTRIGHT

Powered by Google App Engine
This is Rietveld