LEFT | RIGHT |
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-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 { | 158 { |
159 if (filter.text in this.keywordByFilter) | 159 if (filter.text in this.keywordByFilter) |
160 return this.keywordByFilter[filter.text]; | 160 return this.keywordByFilter[filter.text]; |
161 else | 161 else |
162 return null; | 162 return null; |
163 }, | 163 }, |
164 | 164 |
165 /** | 165 /** |
166 * Checks whether the entries for a particular keyword match a URL | 166 * Checks whether the entries for a particular keyword match a URL |
167 */ | 167 */ |
168 _checkEntryMatch: function(keyword, location, contentType, docDomain, thirdPar
ty, sitekey) | 168 _checkEntryMatch: function(keyword, location, typeMask, docDomain, thirdParty,
sitekey, specificOnly) |
169 { | 169 { |
170 let list = this.filterByKeyword[keyword]; | 170 let list = this.filterByKeyword[keyword]; |
171 for (let i = 0; i < list.length; i++) | 171 for (let i = 0; i < list.length; i++) |
172 { | 172 { |
173 let filter = list[i]; | 173 let filter = list[i]; |
174 if (filter.matches(location, contentType, docDomain, thirdParty, sitekey)) | 174 |
| 175 if (specificOnly && filter.isGeneric() && |
| 176 !(filter instanceof WhitelistFilter)) |
| 177 continue; |
| 178 |
| 179 if (filter.matches(location, typeMask, docDomain, thirdParty, sitekey)) |
175 return filter; | 180 return filter; |
176 } | 181 } |
177 return null; | 182 return null; |
178 }, | 183 }, |
179 | 184 |
180 /** | 185 /** |
181 * Tests whether the URL matches any of the known filters | 186 * Tests whether the URL matches any of the known filters |
182 * @param {String} location URL to be tested | 187 * @param {String} location URL to be tested |
183 * @param {String} contentType content type identifier of the URL | 188 * @param {String} typeMask bitmask of content / request types to match |
184 * @param {String} docDomain domain name of the document that loads the URL | 189 * @param {String} docDomain domain name of the document that loads the URL |
185 * @param {Boolean} thirdParty should be true if the URL is a third-party requ
est | 190 * @param {Boolean} thirdParty should be true if the URL is a third-party requ
est |
186 * @param {String} sitekey public key provided by the document | 191 * @param {String} sitekey public key provided by the document |
187 * @param {Boolean} specificOnly should be true if generic matches should be i
gnored | 192 * @param {Boolean} specificOnly should be true if generic matches should be i
gnored |
188 * @return {RegExpFilter} matching filter or null | 193 * @return {RegExpFilter} matching filter or null |
189 */ | 194 */ |
190 matchesAny: function(location, contentType, docDomain, thirdParty, sitekey, sp
ecificOnly) | 195 matchesAny: function(location, typeMask, docDomain, thirdParty, sitekey, speci
ficOnly) |
191 { | 196 { |
192 let candidates = location.toLowerCase().match(/[a-z0-9%]{3,}/g); | 197 let candidates = location.toLowerCase().match(/[a-z0-9%]{3,}/g); |
193 if (candidates === null) | 198 if (candidates === null) |
194 candidates = []; | 199 candidates = []; |
195 | 200 candidates.push(""); |
196 if (!specificOnly) | |
197 candidates.push(""); | |
198 | |
199 for (let i = 0, l = candidates.length; i < l; i++) | 201 for (let i = 0, l = candidates.length; i < l; i++) |
200 { | 202 { |
201 let substr = candidates[i]; | 203 let substr = candidates[i]; |
202 if (substr in this.filterByKeyword) | 204 if (substr in this.filterByKeyword) |
203 { | 205 { |
204 let result = this._checkEntryMatch(substr, location, contentType, docDom
ain, thirdParty, sitekey); | 206 let result = this._checkEntryMatch(substr, location, typeMask, docDomain
, thirdParty, sitekey, specificOnly); |
205 if (result) | 207 if (result) |
206 return result; | 208 return result; |
207 } | 209 } |
208 } | 210 } |
209 | 211 |
210 return null; | 212 return null; |
211 } | 213 } |
212 }; | 214 }; |
213 | 215 |
214 /** | 216 /** |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 return !matcher.getKeywordForFilter(filter); | 346 return !matcher.getKeywordForFilter(filter); |
345 else | 347 else |
346 return !matcher.findKeyword(filter); | 348 return !matcher.findKeyword(filter); |
347 }, | 349 }, |
348 | 350 |
349 /** | 351 /** |
350 * Optimized filter matching testing both whitelist and blacklist matchers | 352 * Optimized filter matching testing both whitelist and blacklist matchers |
351 * simultaneously. For parameters see Matcher.matchesAny(). | 353 * simultaneously. For parameters see Matcher.matchesAny(). |
352 * @see Matcher#matchesAny | 354 * @see Matcher#matchesAny |
353 */ | 355 */ |
354 matchesAnyInternal: function(location, contentType, docDomain, thirdParty, sit
ekey, specificOnly) | 356 matchesAnyInternal: function(location, typeMask, docDomain, thirdParty, siteke
y, specificOnly) |
355 { | 357 { |
356 let candidates = location.toLowerCase().match(/[a-z0-9%]{3,}/g); | 358 let candidates = location.toLowerCase().match(/[a-z0-9%]{3,}/g); |
357 if (candidates === null) | 359 if (candidates === null) |
358 candidates = []; | 360 candidates = []; |
359 | 361 candidates.push(""); |
360 if (!specificOnly) | |
361 candidates.push(""); | |
362 | 362 |
363 let blacklistHit = null; | 363 let blacklistHit = null; |
364 for (let i = 0, l = candidates.length; i < l; i++) | 364 for (let i = 0, l = candidates.length; i < l; i++) |
365 { | 365 { |
366 let substr = candidates[i]; | 366 let substr = candidates[i]; |
367 if (substr in this.whitelist.filterByKeyword) | 367 if (substr in this.whitelist.filterByKeyword) |
368 { | 368 { |
369 let result = this.whitelist._checkEntryMatch(substr, location, contentTy
pe, docDomain, thirdParty, sitekey); | 369 let result = this.whitelist._checkEntryMatch(substr, location, typeMask,
docDomain, thirdParty, sitekey); |
370 if (result) | 370 if (result) |
371 return result; | 371 return result; |
372 } | 372 } |
373 if (substr in this.blacklist.filterByKeyword && blacklistHit === null) | 373 if (substr in this.blacklist.filterByKeyword && blacklistHit === null) |
374 blacklistHit = this.blacklist._checkEntryMatch(substr, location, content
Type, docDomain, thirdParty, sitekey); | 374 blacklistHit = this.blacklist._checkEntryMatch(substr, location, typeMas
k, docDomain, thirdParty, sitekey, specificOnly); |
375 } | 375 } |
376 return blacklistHit; | 376 return blacklistHit; |
377 }, | 377 }, |
378 | 378 |
379 /** | 379 /** |
380 * @see Matcher#matchesAny | 380 * @see Matcher#matchesAny |
381 */ | 381 */ |
382 matchesAny: function(location, contentType, docDomain, thirdParty, sitekey, sp
ecificOnly) | 382 matchesAny: function(location, typeMask, docDomain, thirdParty, sitekey, speci
ficOnly) |
383 { | 383 { |
384 let key = location + " " + contentType + " " + docDomain + " " + thirdParty
+ " " + sitekey + " " + specificOnly; | 384 let key = location + " " + typeMask + " " + docDomain + " " + thirdParty + "
" + sitekey + " " + specificOnly; |
385 if (key in this.resultCache) | 385 if (key in this.resultCache) |
386 return this.resultCache[key]; | 386 return this.resultCache[key]; |
387 | 387 |
388 let result = this.matchesAnyInternal(location, contentType, docDomain, third
Party, sitekey, specificOnly); | 388 let result = this.matchesAnyInternal(location, typeMask, docDomain, thirdPar
ty, sitekey, specificOnly); |
389 | 389 |
390 if (this.cacheEntries >= CombinedMatcher.maxCacheEntries) | 390 if (this.cacheEntries >= CombinedMatcher.maxCacheEntries) |
391 { | 391 { |
392 this.resultCache = Object.create(null); | 392 this.resultCache = Object.create(null); |
393 this.cacheEntries = 0; | 393 this.cacheEntries = 0; |
394 } | 394 } |
395 | 395 |
396 this.resultCache[key] = result; | 396 this.resultCache[key] = result; |
397 this.cacheEntries++; | 397 this.cacheEntries++; |
398 | 398 |
399 return result; | 399 return result; |
400 } | 400 } |
401 } | 401 } |
402 | 402 |
403 /** | 403 /** |
404 * Shared CombinedMatcher instance that should usually be used. | 404 * Shared CombinedMatcher instance that should usually be used. |
405 * @type CombinedMatcher | 405 * @type CombinedMatcher |
406 */ | 406 */ |
407 let defaultMatcher = exports.defaultMatcher = new CombinedMatcher(); | 407 let defaultMatcher = exports.defaultMatcher = new CombinedMatcher(); |
LEFT | RIGHT |