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

Side by Side Diff: lib/elemHideHelper.js

Issue 29410607: Issue 5090 - Use user stylesheets for element hiding if possible (Closed)
Patch Set: Use feature detection Created May 18, 2017, 2:21 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
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-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
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/>.
Sebastian Noack 2017/05/24 08:31:41 This file is new. So how does it come that there a
Manish Jethani 2017/05/24 17:13:34 This is probably upload.py messing up. I'm trying
Sebastian Noack 2017/05/24 18:14:05 Well, that is what usually happens if you commit y
Manish Jethani 2017/05/25 02:52:25 That may have been the case, I get your point. hg
16 */ 16 */
17 17
18 /** @module elemHideHelper */
19
18 "use strict"; 20 "use strict";
19 21
20 const {RegExpFilter} = require("filterClasses"); 22 const {RegExpFilter} = require("filterClasses");
21 const {ElemHide} = require("elemHide"); 23 const {ElemHide} = require("elemHide");
22 const {checkWhitelisted} = require("whitelisting"); 24 const {checkWhitelisted} = require("whitelisting");
23 const {extractHostFromFrame} = require("url"); 25 const {extractHostFromFrame} = require("url");
24 const {port} = require("messaging"); 26 const {port} = require("messaging");
25 const devtools = require("devtools"); 27 const devtools = require("devtools");
26 28
29 let userStylesheetsSupported = true;
30
31 function hideElements(tabId, frameId, selectors, callback)
Sebastian Noack 2017/05/24 08:31:41 Perhaps we should make this function return a prom
Manish Jethani 2017/05/24 17:13:34 Done.
32 {
33 let code = selectors.join(", ") + "{display: none !important;}";
34
35 try
36 {
37 chrome.tabs.insertCSS(tabId,
38 {
39 code,
40 cssOrigin: "user",
41 frameId,
42 matchAboutBlank: true
43 },
44 () =>
45 {
46 callback(chrome.runtime.lastError);
47 }
48 );
49 }
50 catch (error)
51 {
52 if (/\bError processing cssOrigin\b/.test(error.message) != -1)
53 userStylesheetsSupported = false;
54
55 callback(error);
Manish Jethani 2017/05/18 02:25:23 Doing this for any errors instead of just the one
Sebastian Noack 2017/05/24 08:31:41 Yeah, we definitely should make sure that any unex
Manish Jethani 2017/05/24 17:13:34 Done.
56 }
57 }
58
27 port.on("get-selectors", (msg, sender) => 59 port.on("get-selectors", (msg, sender) =>
28 { 60 {
29 let selectors; 61 let selectors;
30 let trace = devtools && devtools.hasPanel(sender.page); 62 let trace = devtools && devtools.hasPanel(sender.page);
31 63
32 if (!checkWhitelisted(sender.page, sender.frame, 64 if (!checkWhitelisted(sender.page, sender.frame,
33 RegExpFilter.typeMap.DOCUMENT | 65 RegExpFilter.typeMap.DOCUMENT |
34 RegExpFilter.typeMap.ELEMHIDE)) 66 RegExpFilter.typeMap.ELEMHIDE))
35 { 67 {
36 let specificOnly = checkWhitelisted(sender.page, sender.frame, 68 let specificOnly = checkWhitelisted(sender.page, sender.frame,
37 RegExpFilter.typeMap.GENERICHIDE); 69 RegExpFilter.typeMap.GENERICHIDE);
38 selectors = ElemHide.getSelectorsForDomain( 70 selectors = ElemHide.getSelectorsForDomain(
39 extractHostFromFrame(sender.frame), 71 extractHostFromFrame(sender.frame),
40 specificOnly ? ElemHide.SPECIFIC_ONLY : ElemHide.ALL_MATCHING 72 specificOnly ? ElemHide.SPECIFIC_ONLY : ElemHide.ALL_MATCHING
41 ); 73 );
42 } 74 }
43 else 75 else
44 { 76 {
45 selectors = []; 77 selectors = [];
46 } 78 }
47 79
48 return {selectors, trace}; 80 if (!userStylesheetsSupported)
81 return {selectors, trace, inject: true};
82
83 if (selectors.length == 0)
84 {
85 if (trace)
86 return {selectors, trace, inject: false};
87
88 return {trace, inject: false};
89 }
90
91 return new Promise(resolve =>
92 {
93 hideElements(sender.page.id, sender.frame.id, selectors, error =>
94 {
95 let response = {trace, inject: !!error};
96
97 if (trace || error)
98 response.selectors = selectors;
99
100 resolve(response);
101 });
102 });
49 }); 103 });
50 104
51 port.on("forward", (msg, sender) => 105 port.on("hide-elements", (msg, sender) =>
52 { 106 {
53 let targetPage; 107 if (!msg.selectors || msg.selectors.length == 0)
54 if (msg.targetPageId) 108 return {success: true};
55 targetPage = ext.getPage(msg.targetPageId);
56 else
57 targetPage = sender.page;
58 109
59 if (targetPage) 110 return new Promise(resolve =>
60 { 111 {
61 msg.payload.sender = sender.page.id; 112 hideElements(sender.page.id, sender.frame.id, msg.selectors, error =>
62 if (msg.expectsResponse) 113 {
63 return new Promise(targetPage.sendMessage.bind(targetPage, msg.payload)); 114 resolve({success: !error});
64 targetPage.sendMessage(msg.payload); 115 });
65 } 116 });
66 }); 117 });
OLDNEW
« include.preload.js ('K') | « include.preload.js ('k') | metadata.chrome » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld