OLD | NEW |
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 no-console: "off" */ | 19 /* eslint no-console: "off" */ |
19 | 20 |
20 "use strict"; | 21 "use strict"; |
21 | 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 */ |
| 32 function injectCode(code, dependencies = []) |
| 33 { |
| 34 for (let dependency of dependencies) |
| 35 code += dependency; |
| 36 |
| 37 let script = document.createElement("script"); |
| 38 |
| 39 script.type = "application/javascript"; |
| 40 script.async = false; |
| 41 |
| 42 // Firefox 58 only bypasses site CSPs when assigning to 'src', |
| 43 // while Chrome 67 only bypasses site CSPs when using 'textContent'. |
| 44 if (browser.runtime.getURL("").startsWith("chrome-extension://")) |
| 45 { |
| 46 script.textContent = code; |
| 47 document.documentElement.appendChild(script); |
| 48 } |
| 49 else |
| 50 { |
| 51 let url = URL.createObjectURL(new Blob([code])); |
| 52 script.src = url; |
| 53 document.documentElement.appendChild(script); |
| 54 URL.revokeObjectURL(url); |
| 55 } |
| 56 |
| 57 document.documentElement.removeChild(script); |
| 58 } |
| 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 */ |
| 72 function stringifyFunctionCall(func, ...params) |
| 73 { |
| 74 // Call JSON.stringify on the arguments to avoid any arbitrary code |
| 75 // execution. |
| 76 return `"use strict";(${func})(${params.map(JSON.stringify).join(",")});`; |
| 77 } |
| 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 */ |
| 93 function makeInjector(injectable, ...dependencies) |
| 94 { |
| 95 return (...args) => injectCode(stringifyFunctionCall(injectable, ...args), |
| 96 dependencies); |
| 97 } |
| 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 */ |
22 function log(...args) | 105 function log(...args) |
23 { | 106 { |
24 console.log(...args); | 107 console.log(...args); |
25 } | 108 } |
26 | 109 |
27 exports.log = log; | 110 exports.log = log; |
| 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 */ |
| 120 function trace(...args) |
| 121 { |
| 122 // We could simply use console.log here, but the goal is to demonstrate the |
| 123 // usage of snippet dependencies. |
| 124 log(...args); |
| 125 } |
| 126 |
| 127 exports.trace = makeInjector(trace, log); |
OLD | NEW |