From 02bb26a93ff5b60e7bc3236ef3f62c818d32bd12 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 20 Aug 2018 14:13:14 +0300 Subject: [PATCH] rewrite_cached_urls: support video posters --- include/functions.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/functions.php b/include/functions.php index fe058667..f03ed3a9 100755 --- a/include/functions.php +++ b/include/functions.php @@ -1579,16 +1579,16 @@ $doc->loadHTML($charset_hack . $res); $xpath = new DOMXPath($doc); - $entries = $xpath->query('(//img[@src]|//video/source[@src]|//audio/source[@src])'); + $entries = $xpath->query('(//img[@src]|//video[@poster]|//video/source[@src]|//audio/source[@src])'); $need_saving = false; foreach ($entries as $entry) { - if ($entry->hasAttribute('src')) { + if ($entry->hasAttribute('src') || $entry->hasAttribute('poster')) { // should be already absolutized because this is called after sanitize() - $src = $entry->getAttribute('src'); + $src = $entry->hasAttribute('poster') ? $entry->getAttribute('poster') : $entry->getAttribute('src'); $cached_filename = CACHE_DIR . '/images/' . sha1($src); if (file_exists($cached_filename)) { @@ -1606,7 +1606,11 @@ $src = get_self_url_prefix() . '/public.php?op=cached_url&hash=' . sha1($src) . $suffix; - $entry->setAttribute('src', $src); + if ($entry->hasAttribute('poster')) + $entry->setAttribute('poster', $src); + else + $entry->setAttribute('src', $src); + $need_saving = true; } } -- 2.39.2