From f43ce66e65aed5cfed7182ed6ff04646c4ffd335 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 9 Sep 2018 12:45:02 +0300 Subject: [PATCH] af_redditimgur: simplify handling of gfycat URLs --- plugins/af_redditimgur/init.php | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/plugins/af_redditimgur/init.php b/plugins/af_redditimgur/init.php index b4642867..270f1beb 100755 --- a/plugins/af_redditimgur/init.php +++ b/plugins/af_redditimgur/init.php @@ -132,26 +132,11 @@ class Af_RedditImgur extends Plugin { _debug("Handling as Gfycat", $debug); - $tmp = fetch_file_contents($entry->getAttribute("href")); - - if ($tmp) { - $tmpdoc = new DOMDocument(); - - if (@$tmpdoc->loadHTML($tmp)) { - $tmpxpath = new DOMXPath($tmpdoc); - - $source_node = $tmpxpath->query("//video[contains(@class,'share-video')]//source[contains(@src, '.mp4')]")->item(0); - $poster_node = $tmpxpath->query("//video[contains(@class,'share-video') and @poster]")->item(0); + $source_stream = 'https://giant.gfycat.com/' . $matches[2] . '.mp4'; + $poster_url = 'https://thumbs.gfycat.com/' . $matches[2] . '-mobile.jpg'; - if ($source_node && $poster_node) { - $source_stream = $source_node->getAttribute("src"); - $poster_url = $poster_node->getAttribute("poster"); - - $this->handle_as_video($doc, $entry, $source_stream, $poster_url); - $found = 1; - } - } - } + $this->handle_as_video($doc, $entry, $source_stream, $poster_url); + $found = 1; } if (!$found && preg_match("/https?:\/\/v\.redd\.it\/(.*)$/i", $entry->getAttribute("href"), $matches)) { -- 2.39.2