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

Delta Between Two Patch Sets: lib/requestBlocker.js

Issue 29445639: Noissue - Use lowercase for WebRTC and WebSocket resource types (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Left Patch Set: Created May 22, 2017, 2:40 p.m.
Right Patch Set: Uppercase resource type before check Created May 22, 2017, 5:20 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 | « inject.preload.js ('k') | no next file » | 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-2017 eyeo GmbH 3 * Copyright (C) 2006-2017 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 20 matching lines...) Expand all
31 31
32 // Chrome and Firefox (WebExtensions) can't distinguish between 32 // Chrome and Firefox (WebExtensions) can't distinguish between
33 // OBJECT_SUBREQUEST and OBJECT requests. 33 // OBJECT_SUBREQUEST and OBJECT requests.
34 RegExpFilter.typeMap.OBJECT_SUBREQUEST = RegExpFilter.typeMap.OBJECT; 34 RegExpFilter.typeMap.OBJECT_SUBREQUEST = RegExpFilter.typeMap.OBJECT;
35 35
36 // Map of content types reported by the browser to the respecitve content types 36 // Map of content types reported by the browser to the respecitve content types
37 // used by Adblock Plus. Other content types are simply mapped to OTHER. 37 // used by Adblock Plus. Other content types are simply mapped to OTHER.
38 let resourceTypes = new Map(function*() 38 let resourceTypes = new Map(function*()
39 { 39 {
40 for (let type in RegExpFilter.typeMap) 40 for (let type in RegExpFilter.typeMap)
41 yield [type, type]; 41 yield [type.toLowerCase(), type];
42 42
43 yield ["SUB_FRAME", "SUBDOCUMENT"]; 43 yield ["sub_frame", "SUBDOCUMENT"];
44 44
45 // Treat navigator.sendBeacon() the same as <a ping>, it's essentially the 45 // Treat navigator.sendBeacon() the same as <a ping>, it's essentially the
46 // same concept - merely generalized. 46 // same concept - merely generalized.
47 yield ["BEACON", "PING"]; 47 yield ["beacon", "PING"];
48 48
49 // Treat <img srcset> and <picture> the same as other images. 49 // Treat <img srcset> and <picture> the same as other images.
50 yield ["IMAGESET", "IMAGE"]; 50 yield ["imageset", "IMAGE"];
51 }()); 51 }());
52 52
53 function onBeforeRequestAsync(page, url, type, docDomain, 53 function onBeforeRequestAsync(page, url, type, docDomain,
54 thirdParty, sitekey, 54 thirdParty, sitekey,
55 specificOnly, filter) 55 specificOnly, filter)
56 { 56 {
57 if (filter) 57 if (filter)
58 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page); 58 FilterNotifier.emit("filter.hitCount", filter, 0, 0, page);
59 59
60 if (devtools) 60 if (devtools)
(...skipping 13 matching lines...) Expand all
74 74
75 let urlString = stringifyURL(url); 75 let urlString = stringifyURL(url);
76 let docDomain = extractHostFromFrame(frame); 76 let docDomain = extractHostFromFrame(frame);
77 let thirdParty = isThirdParty(url, docDomain); 77 let thirdParty = isThirdParty(url, docDomain);
78 let sitekey = getKey(page, frame); 78 let sitekey = getKey(page, frame);
79 79
80 let specificOnly = !!checkWhitelisted( 80 let specificOnly = !!checkWhitelisted(
81 page, frame, RegExpFilter.typeMap.GENERICBLOCK 81 page, frame, RegExpFilter.typeMap.GENERICBLOCK
82 ); 82 );
83 83
84 let mappedType = resourceTypes.get(type.toUpperCase()) || "OTHER"; 84 let mappedType = resourceTypes.get(type) || "OTHER";
85 85
86 let filter = defaultMatcher.matchesAny( 86 let filter = defaultMatcher.matchesAny(
87 urlString, RegExpFilter.typeMap[mappedType], 87 urlString, RegExpFilter.typeMap[mappedType],
88 docDomain, thirdParty, sitekey, specificOnly 88 docDomain, thirdParty, sitekey, specificOnly
89 ); 89 );
90 90
91 setTimeout(onBeforeRequestAsync, 0, page, urlString, 91 setTimeout(onBeforeRequestAsync, 0, page, urlString,
92 mappedType, docDomain, 92 mappedType, docDomain,
93 thirdParty, sitekey, 93 thirdParty, sitekey,
94 specificOnly, filter); 94 specificOnly, filter);
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 FilterNotifier.on("filter.added", onFilterChange); 172 FilterNotifier.on("filter.added", onFilterChange);
173 FilterNotifier.on("filter.removed", onFilterChange); 173 FilterNotifier.on("filter.removed", onFilterChange);
174 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true)); 174 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true));
175 FilterNotifier.on("load", onFilterChange); 175 FilterNotifier.on("load", onFilterChange);
176 176
177 port.on("request.blockedByWrapper", (msg, sender) => 177 port.on("request.blockedByWrapper", (msg, sender) =>
178 { 178 {
179 // Chrome 58 onwards directly supports WebSocket blocking, so we can ignore 179 // Chrome 58 onwards directly supports WebSocket blocking, so we can ignore
180 // messages from the wrapper here (see https://crbug.com/129353). Hopefully 180 // messages from the wrapper here (see https://crbug.com/129353). Hopefully
181 // WebRTC will be supported soon too (see https://crbug.com/707683). 181 // WebRTC will be supported soon too (see https://crbug.com/707683).
182 if (msg.requestType in chrome.webRequest.ResourceType) 182 if (msg.requestType.toUpperCase() in chrome.webRequest.ResourceType)
183 return false; 183 return false;
184 184
185 return ext.webRequest.onBeforeRequest._dispatch( 185 return ext.webRequest.onBeforeRequest._dispatch(
186 new URL(msg.url), 186 new URL(msg.url),
187 msg.requestType, 187 msg.requestType,
188 sender.page, 188 sender.page,
189 sender.frame 189 sender.frame
190 ).includes(false); 190 ).includes(false);
191 }); 191 });
LEFTRIGHT

Powered by Google App Engine
This is Rietveld