]> git.wh0rd.org - tt-rss.git/commitdiff
redditimgur: extract video poster urls
authorAndrew Dolgov <noreply@fakecake.org>
Fri, 10 Jul 2015 06:02:52 +0000 (09:02 +0300)
committerAndrew Dolgov <noreply@fakecake.org>
Fri, 10 Jul 2015 06:02:52 +0000 (09:02 +0300)
plugins/af_redditimgur/init.php

index 1091f3088f6c52052fbb6a944ff04d1691f0fcb6..6f2c7ff9891108e65c64b212b2630dd4170fdb83 100644 (file)
@@ -80,7 +80,7 @@ class Af_RedditImgur extends Plugin {
 
                                $matches = array();
 
-                               if (preg_match("/https?:\/\/gfycat.com\/([a-z]+)$/i", $entry->getAttribute("href"), $matches)) {
+                               if (preg_match("/https?:\/\/(www\.)?gfycat.com\/([a-z]+)$/i", $entry->getAttribute("href"), $matches)) {
 
                                        $tmp = fetch_file_contents($entry->getAttribute("href"));
 
@@ -90,13 +90,20 @@ class Af_RedditImgur extends Plugin {
 
                                                if ($tmpdoc) {
                                                        $tmpxpath = new DOMXPath($tmpdoc);
+
                                                        $source_meta = $tmpxpath->query("//meta[@property='og:video']")->item(0);
+                                                       $poster_meta = $tmpxpath->query("//meta[@property='og:image' and contains(@content,'thumbs.gfycat.com')]")->item(0);
 
                                                        if ($source_meta) {
                                                                $source_stream = $source_meta->getAttribute("content");
+                                                               $poster_url = false;
 
                                                                if ($source_stream) {
-                                                                       $this->handle_as_video($doc, $entry, $source_stream);
+
+                                                                       if ($poster_meta)
+                                                                               $poster_url = $poster_meta->getAttribute("content");
+
+                                                                       $this->handle_as_video($doc, $entry, $source_stream, $poster_url);
                                                                        $found = 1;
                                                                }
                                                        }
@@ -108,7 +115,11 @@ class Af_RedditImgur extends Plugin {
                                if (preg_match("/\.(gifv)$/i", $entry->getAttribute("href"))) {
 
                                        $source_stream = str_replace(".gifv", ".mp4", $entry->getAttribute("href"));
-                                       $this->handle_as_video($doc, $entry, $source_stream);
+
+                                       if (strpos($source_stream, "i.imgur.com") !== FALSE)
+                                               $poster_url = str_replace(".mp4", "h.jpg", $source_stream);
+
+                                       $this->handle_as_video($doc, $entry, $source_stream, $poster_url);
 
                                        $found = true;
                                }
@@ -326,13 +337,15 @@ class Af_RedditImgur extends Plugin {
                return 2;
        }
 
-       private function handle_as_video($doc, $entry, $source_stream) {
+       private function handle_as_video($doc, $entry, $source_stream, $poster_url = false) {
 
                $video = $doc->createElement('video');
                $video->setAttribute("autoplay", "1");
                $video->setAttribute("controls", "1");
                $video->setAttribute("loop", "1");
 
+               if ($poster_url) $video->setAttribute("poster", $poster_url);
+
                $source = $doc->createElement('source');
                $source->setAttribute("src", $source_stream);
                $source->setAttribute("type", "video/mp4");