| Left: | ||
| Right: |
| 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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 348 | 348 |
| 349 observer.observe(parentNode, {childList: true}); | 349 observer.observe(parentNode, {childList: true}); |
| 350 return observer; | 350 return observer; |
| 351 } | 351 } |
| 352 | 352 |
| 353 function runInPage(fn, arg) | 353 function runInPage(fn, arg) |
| 354 { | 354 { |
| 355 var script = document.createElement("script"); | 355 var script = document.createElement("script"); |
| 356 script.type = "application/javascript"; | 356 script.type = "application/javascript"; |
| 357 script.async = false; | 357 script.async = false; |
| 358 | 358 script.textContent = "(" + fn + ")(" + JSON.stringify(arg) + ");"; |
| 359 // include.youtube.js passes this function a RegExp which JSON.stringify would | |
| 360 // convert to "{}". | |
| 361 if (!(arg instanceof RegExp)) | |
|
Sebastian Noack
2016/08/10 12:22:45
Perhaps I got a better idea to avoid that special
kzar
2016/08/10 12:58:55
Done.
| |
| 362 arg = JSON.stringify(arg); | |
| 363 | |
| 364 script.textContent = "(" + fn + ")(" + arg + ");"; | |
| 365 document.documentElement.appendChild(script); | 359 document.documentElement.appendChild(script); |
| 366 document.documentElement.removeChild(script); | 360 document.documentElement.removeChild(script); |
| 367 } | 361 } |
| 368 | 362 |
| 369 function protectStyleSheet(document, style) | 363 function protectStyleSheet(document, style) |
| 370 { | 364 { |
| 371 style.id = id; | 365 style.id = id; |
| 372 | 366 |
| 373 runInPage(function(id) | 367 runInPage(function(id) |
| 374 { | 368 { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 416 new CustomEvent(eventName + "-" + event.detail.url, {detail: block}) | 410 new CustomEvent(eventName + "-" + event.detail.url, {detail: block}) |
| 417 ); | 411 ); |
| 418 }); | 412 }); |
| 419 }); | 413 }); |
| 420 | 414 |
| 421 runInPage(function(eventName) | 415 runInPage(function(eventName) |
| 422 { | 416 { |
| 423 // As far as possible we must track everything we use that could be | 417 // As far as possible we must track everything we use that could be |
| 424 // sabotaged by the website later in order to circumvent us. | 418 // sabotaged by the website later in order to circumvent us. |
| 425 var RealWebSocket = WebSocket; | 419 var RealWebSocket = WebSocket; |
| 426 var closeWebSocket = RealWebSocket.prototype.close; | 420 var closeWebSocket = Function.prototype.call.bind(RealWebSocket.prototype.cl ose); |
| 427 var addEventListener = document.addEventListener.bind(document); | 421 var addEventListener = document.addEventListener.bind(document); |
| 428 var removeEventListener = document.removeEventListener.bind(document); | 422 var removeEventListener = document.removeEventListener.bind(document); |
| 429 var dispatchEvent = document.dispatchEvent.bind(document); | 423 var dispatchEvent = document.dispatchEvent.bind(document); |
| 430 var CustomEvent = window.CustomEvent; | 424 var CustomEvent = window.CustomEvent; |
| 431 var boundCall = Function.prototype.call.bind(Function.prototype.call); | |
|
Sebastian Noack
2016/08/10 12:22:45
Since WebSocket.prototype.close is the only method
kzar
2016/08/10 12:58:55
Done.
| |
| 432 | 425 |
| 433 function checkRequest(url, callback) | 426 function checkRequest(url, callback) |
| 434 { | 427 { |
| 435 var incomingEventName = eventName + "-" + url; | 428 var incomingEventName = eventName + "-" + url; |
| 436 function listener(event) | 429 function listener(event) |
| 437 { | 430 { |
| 438 callback(event.detail); | 431 callback(event.detail); |
| 439 removeEventListener(incomingEventName, listener); | 432 removeEventListener(incomingEventName, listener); |
| 440 } | 433 } |
| 441 addEventListener(incomingEventName, listener); | 434 addEventListener(incomingEventName, listener); |
| 442 | 435 |
| 443 dispatchEvent(new CustomEvent(eventName, { | 436 dispatchEvent(new CustomEvent(eventName, { |
| 444 detail: {url: url} | 437 detail: {url: url} |
| 445 })); | 438 })); |
| 446 } | 439 } |
| 447 | 440 |
| 448 WebSocket = function WrappedWebSocket(url, protocols) | 441 WebSocket = function WrappedWebSocket(url, protocols) |
| 449 { | 442 { |
| 450 // Throw correct exceptions if the constructor is used improperly. | 443 // Throw correct exceptions if the constructor is used improperly. |
| 451 if (!(this instanceof WrappedWebSocket)) return RealWebSocket(); | 444 if (!(this instanceof WrappedWebSocket)) return RealWebSocket(); |
| 452 if (arguments.length < 1) return new RealWebSocket(); | 445 if (arguments.length < 1) return new RealWebSocket(); |
| 453 | 446 |
| 454 var websocket = new RealWebSocket(url, protocols); | 447 var websocket = new RealWebSocket(url, protocols); |
| 455 | 448 |
| 456 checkRequest(websocket.url, function(blocked) | 449 checkRequest(websocket.url, function(blocked) |
| 457 { | 450 { |
| 458 if (blocked) | 451 if (blocked) |
| 459 boundCall(closeWebSocket, websocket); | 452 closeWebSocket(websocket); |
| 460 }); | 453 }); |
| 461 | 454 |
| 462 return websocket; | 455 return websocket; |
| 463 }.bind(); | 456 }.bind(); |
| 464 | 457 |
| 465 var properties = Object.getOwnPropertyNames(RealWebSocket); | 458 Object.defineProperties(WebSocket, { |
| 466 for (var i = 0; i < properties.length; i++) | 459 CONNECTING: {value: RealWebSocket.CONNECTING, enumerable: true}, |
| 467 { | 460 OPEN: {value: RealWebSocket.OPEN, enumerable: true}, |
| 468 var name = properties[i]; | 461 CLOSING: {value: RealWebSocket.CLOSING, enumerable: true}, |
| 469 var desc = Object.getOwnPropertyDescriptor(RealWebSocket, name); | 462 CLOSED: {value: RealWebSocket.CLOSED, enumerable: true}, |
| 470 Object.defineProperty(WebSocket, name, desc); | 463 prototype: {value: RealWebSocket.prototype} |
| 471 } | 464 }); |
| 472 | 465 |
| 473 RealWebSocket.prototype.constructor = WebSocket; | 466 RealWebSocket.prototype.constructor = WebSocket; |
| 474 }, eventName); | 467 }, eventName); |
| 475 } | 468 } |
| 476 | 469 |
| 477 function init(document) | 470 function init(document) |
| 478 { | 471 { |
| 479 var shadow = null; | 472 var shadow = null; |
| 480 var style = null; | 473 var style = null; |
| 481 var observer = null; | 474 var observer = null; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 646 }, true); | 639 }, true); |
| 647 | 640 |
| 648 return updateStylesheet; | 641 return updateStylesheet; |
| 649 } | 642 } |
| 650 | 643 |
| 651 if (document instanceof HTMLDocument) | 644 if (document instanceof HTMLDocument) |
| 652 { | 645 { |
| 653 checkSitekey(); | 646 checkSitekey(); |
| 654 window.updateStylesheet = init(document); | 647 window.updateStylesheet = init(document); |
| 655 } | 648 } |
| LEFT | RIGHT |