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

Delta Between Two Patch Sets: lib/content/snippets.js

Issue 29829569: Issue 6538, 6781 - Add code injection wrapper to snippets library (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Left Patch Set: Add trace snippet Created July 13, 2018, 2:12 p.m.
Right Patch Set: Remove "safely" from comment, remove unnecessary checks Created July 17, 2018, 5:40 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 | 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-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 /* eslint-env webextensions */ 18 /* eslint-env webextensions */
19 /* eslint no-console: "off" */ 19 /* eslint no-console: "off" */
20 20
21 "use strict"; 21 "use strict";
22 22
23 /**
24 * Injects JavaScript code into the document using a temporary
25 * <code>script</code> element.
26 *
27 * @param {string} code The code to inject.
28 * @param {Array.<function|string>} [dependencies] A list of dependencies
29 * to inject along with the code. A dependency may be either a function or a
30 * string containing some executable code.
31 */
23 function injectCode(code, dependencies = []) 32 function injectCode(code, dependencies = [])
24 { 33 {
25 for (let dependency of dependencies) 34 for (let dependency of dependencies)
26 code += dependency; 35 code += dependency;
27 36
28 let script = document.createElement("script"); 37 let script = document.createElement("script");
29 38
30 script.type = "application/javascript"; 39 script.type = "application/javascript";
31 script.async = false; 40 script.async = false;
32 41
33 // Firefox 58 only bypasses site CSPs when assigning to 'src', 42 // Firefox 58 only bypasses site CSPs when assigning to 'src',
34 // while Chrome 67 only bypasses site CSPs when using 'textContent'. 43 // while Chrome 67 only bypasses site CSPs when using 'textContent'.
35 if (browser.runtime.getURL("").startsWith("chrome-extension://")) 44 if (browser.runtime.getURL("").startsWith("chrome-extension://"))
36 { 45 {
37 script.textContent = code; 46 script.textContent = code;
38 document.documentElement.appendChild(script); 47 document.documentElement.appendChild(script);
39 } 48 }
40 else 49 else
41 { 50 {
42 let url = URL.createObjectURL(new Blob([code])); 51 let url = URL.createObjectURL(new Blob([code]));
43 script.src = url; 52 script.src = url;
44 document.documentElement.appendChild(script); 53 document.documentElement.appendChild(script);
45 URL.revokeObjectURL(url); 54 URL.revokeObjectURL(url);
46 } 55 }
47 56
48 document.documentElement.removeChild(script); 57 document.documentElement.removeChild(script);
49 } 58 }
50 59
60 /**
61 * Converts a function and an optional list of arguments into a string of code
62 * containing a function call. The function is converted to its string
63 * representation using the <code>Function.prototype.toString</code> method.
64 * Each argument is stringified using <code>JSON.stringify</code>. The
65 * generated code begins with the <code>"use strict"</code> directive.
66 *
67 * @param {function} func The function to convert.
68 * @param {...*} [params] The arguments to convert.
69 *
70 * @returns {string} The generated code containing the function call.
71 */
51 function stringifyFunctionCall(func, ...params) 72 function stringifyFunctionCall(func, ...params)
52 { 73 {
74 // Call JSON.stringify on the arguments to avoid any arbitrary code
75 // execution.
53 return `"use strict";(${func})(${params.map(JSON.stringify).join(",")});`; 76 return `"use strict";(${func})(${params.map(JSON.stringify).join(",")});`;
54 } 77 }
55 78
79 /**
80 * Wraps a function and its dependencies into an injector. The injector, when
81 * called with zero or more arguments, generates code that calls the function,
82 * with the given arguments, if any, and injects the code, along with any
83 * dependencies, into the document using a temporary <code>script</code>
84 * element.
85 *
86 * @param {function} injectable The function to wrap into an injector.
87 * @param {...(function|string)} [dependencies] Any dependencies of the
88 * function. A dependency may be either a function or a string containing
89 * some executable code.
90 *
91 * @returns {function} The generated injector.
92 */
56 function makeInjector(injectable, ...dependencies) 93 function makeInjector(injectable, ...dependencies)
kzar 2018/07/16 14:13:56 Please could you add a JSDoc comment for this func
Manish Jethani 2018/07/17 10:44:42 Will do.
Manish Jethani 2018/07/17 15:42:36 Done.
57 { 94 {
58 return (...args) => injectCode(stringifyFunctionCall(injectable, ...args), 95 return (...args) => injectCode(stringifyFunctionCall(injectable, ...args),
kzar 2018/07/16 14:13:56 I'd prefer we did the work of `stringifyFunctionCa
Manish Jethani 2018/07/17 10:44:41 I would really prefer if stringifyFunctionCall is
kzar 2018/07/17 11:11:12 Alright, but what about my comment about making it
Manish Jethani 2018/07/17 15:42:36 That would inject code like: foo(...["x", "y",
kzar 2018/07/17 16:08:21 Acknowledged.
59 dependencies); 96 dependencies);
60 } 97 }
61 98
99 /**
100 * Logs its arguments to the console. This may be used for testing and
101 * debugging.
102 *
103 * @param {...*} [args] The arguments to log.
104 */
62 function log(...args) 105 function log(...args)
63 { 106 {
64 console.log(...args); 107 console.log(...args);
65 } 108 }
66 109
67 exports.log = log; 110 exports.log = log;
kzar 2018/07/16 14:13:56 Why not just export `console.log`? I don't think i
Manish Jethani 2018/07/17 10:44:41 Because console.log.toString() is "function log()
kzar 2018/07/17 11:11:12 Good point.
68 111
112 /**
113 * Similar to {@link log}, but does the logging in the context of the document
114 * rather than the content script. This may be used for testing and debugging,
115 * especially to verify that the injection of snippets into the document is
116 * working without any errors.
117 *
118 * @param {...*} [args] The arguments to log.
119 */
69 function trace(...args) 120 function trace(...args)
Manish Jethani 2018/07/13 14:17:33 I had to do this, both because it helps to have an
kzar 2018/07/16 14:13:57 Please could you add a JSDoc comment explaining th
Manish Jethani 2018/07/17 10:44:41 Will do.
Manish Jethani 2018/07/17 15:42:36 Done.
70 { 121 {
122 // We could simply use console.log here, but the goal is to demonstrate the
123 // usage of snippet dependencies.
71 log(...args); 124 log(...args);
kzar 2018/07/16 14:13:57 Why not call `console.log(...args);` here directly
Manish Jethani 2018/07/17 10:44:42 Because the goal is to demonstrate the use of the
kzar 2018/07/17 11:11:12 Acknowledged.
72 } 125 }
73 126
74 exports.trace = makeInjector(trace, log); 127 exports.trace = makeInjector(trace, log);
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld