| 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 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ["input", "IMAGE"], | 28 ["input", "IMAGE"], |
| 29 ["picture", "IMAGE"], | 29 ["picture", "IMAGE"], |
| 30 ["audio", "MEDIA"], | 30 ["audio", "MEDIA"], |
| 31 ["video", "MEDIA"], | 31 ["video", "MEDIA"], |
| 32 ["frame", "SUBDOCUMENT"], | 32 ["frame", "SUBDOCUMENT"], |
| 33 ["iframe", "SUBDOCUMENT"], | 33 ["iframe", "SUBDOCUMENT"], |
| 34 ["object", "OBJECT"], | 34 ["object", "OBJECT"], |
| 35 ["embed", "OBJECT"] | 35 ["embed", "OBJECT"] |
| 36 ]); | 36 ]); |
| 37 | 37 |
| 38 function getURLsFromObjectElement(element) | 38 function* getURLsFromObjectParamChildren({children: [...children]}) |
| 39 { | 39 { |
| 40 let url = element.getAttribute("data"); | 40 const names = [ |
| 41 if (url) | 41 "movie", // Adobe Flash |
| 42 return [url]; | 42 "source", // Silverlight |
| 43 "src", // Real Media + Quicktime |
| 44 "FileName" // Windows Media |
| 45 ]; |
| 43 | 46 |
| 44 for (let child of element.children) | 47 let param = children.find( |
| 45 { | 48 child => child.localName == "param" && |
| 46 if (child.localName != "param") | 49 names.includes(child.getAttribute("name")) && |
| 47 continue; | 50 child.getAttribute("value") |
| 51 ); |
| 48 | 52 |
| 49 let name = child.getAttribute("name"); | 53 if (param) |
| 50 if (name != "movie" && // Adobe Flash | 54 yield param.getAttribute("value"); |
| 51 name != "source" && // Silverlight | |
| 52 name != "src" && // Real Media + Quicktime | |
| 53 name != "FileName") // Windows Media | |
| 54 continue; | |
| 55 | |
| 56 let value = child.getAttribute("value"); | |
| 57 if (!value) | |
| 58 continue; | |
| 59 | |
| 60 return [value]; | |
| 61 } | |
| 62 | |
| 63 return []; | |
| 64 } | 55 } |
| 65 | 56 |
| 66 function getURLsFromAttributes(element) | 57 function* getURLsFromObjectElement(element) |
| 67 { | 58 { |
| 68 let urls = []; | 59 let data = element.getAttribute("data"); |
| 69 | 60 if (data) |
| 70 if (element.src) | 61 yield data; |
| 71 urls.push(element.src); | 62 else |
| 72 | 63 yield* getURLsFromObjectParamChildren(element); |
| 73 if (element.srcset) | |
| 74 { | |
| 75 for (let candidate of element.srcset.split(",")) | |
| 76 { | |
| 77 let url = candidate.trim().replace(/\s+\S+$/, ""); | |
| 78 if (url) | |
| 79 urls.push(url); | |
| 80 } | |
| 81 } | |
| 82 | |
| 83 return urls; | |
| 84 } | 64 } |
| 85 | 65 |
| 86 function getURLsFromMediaElement(element) | 66 function* getURLsFromMediaSourceChildren({children: [...children]}) |
| 87 { | 67 { |
| 88 let urls = getURLsFromAttributes(element); | 68 let sources = children.filter( |
| 69 ({localName}) => ["source", "track"].includes(localName) |
| 70 ); |
| 89 | 71 |
| 90 for (let child of element.children) | 72 for (let source of sources) |
| 91 { | 73 yield* getURLsFromAttributes(source); |
| 92 if (child.localName == "source" || child.localName == "track") | 74 } |
| 93 urls.push(...getURLsFromAttributes(child)); | |
| 94 } | |
| 95 | 75 |
| 96 if (element.poster) | 76 function* getURLsFromMediaElement(element) |
| 97 urls.push(element.poster); | 77 { |
| 78 yield* getURLsFromAttributes(element); |
| 79 yield* getURLsFromMediaSourceChildren(element); |
| 98 | 80 |
| 99 return urls; | 81 yield element.poster; |
| 82 } |
| 83 |
| 84 function* getURLsFromAttributes({src, srcset = ""}) |
| 85 { |
| 86 yield src; |
| 87 |
| 88 yield* srcset.split(",").map(url => url.trim().replace(/\s+\S+$/, "")); |
| 100 } | 89 } |
| 101 | 90 |
| 102 function getURLsFromElement(element) | 91 function getURLsFromElement(element) |
| 103 { | 92 { |
| 104 let urls; | 93 let urls = null; |
| 105 switch (element.localName) | |
| 106 { | |
| 107 case "object": | |
| 108 urls = getURLsFromObjectElement(element); | |
| 109 break; | |
| 110 | 94 |
| 111 case "video": | 95 let {localName} = element; |
| 112 case "audio": | |
| 113 case "picture": | |
| 114 urls = getURLsFromMediaElement(element); | |
| 115 break; | |
| 116 | 96 |
| 117 default: | 97 if (localName == "object") |
| 118 urls = getURLsFromAttributes(element); | 98 urls = getURLsFromObjectElement(element); |
| 119 break; | 99 else if (["video", "audio", "picture"].includes(localName)) |
| 120 } | 100 urls = getURLsFromMediaElement(element); |
| 101 else |
| 102 urls = getURLsFromAttributes(element); |
| 121 | 103 |
| 122 for (let i = 0; i < urls.length; i++) | 104 return [...urls].filter(url => url && !/^(?!https?:)[\w-]+:/i.test(url)); |
| 123 { | |
| 124 if (/^(?!https?:)[\w-]+:/i.test(urls[i])) | |
| 125 urls.splice(i--, 1); | |
| 126 } | |
| 127 | |
| 128 return urls; | |
| 129 } | 105 } |
| 130 | 106 |
| 131 function hideElement(element) | 107 function hideElement(element) |
| 132 { | 108 { |
| 133 function doHide() | 109 function doHide() |
| 134 { | 110 { |
| 135 let propertyName = "display"; | 111 let propertyName = "display"; |
| 136 let propertyValue = "none"; | 112 let propertyValue = "none"; |
| 137 if (element.localName == "frame") | 113 if (element.localName == "frame") |
| 138 { | 114 { |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 let element = event.target; | 513 let element = event.target; |
| 538 if (/^i?frame$/.test(element.localName)) | 514 if (/^i?frame$/.test(element.localName)) |
| 539 checkCollapse(element); | 515 checkCollapse(element); |
| 540 }, true); | 516 }, true); |
| 541 } | 517 } |
| 542 | 518 |
| 543 window.checkCollapse = checkCollapse; | 519 window.checkCollapse = checkCollapse; |
| 544 window.elemhide = elemhide; | 520 window.elemhide = elemhide; |
| 545 window.typeMap = typeMap; | 521 window.typeMap = typeMap; |
| 546 window.getURLsFromElement = getURLsFromElement; | 522 window.getURLsFromElement = getURLsFromElement; |
| OLD | NEW |