summaryrefslogtreecommitdiff
path: root/plugins/af_redditimgur/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-07-10 09:02:52 +0300
committerAndrew Dolgov <[email protected]>2015-07-10 09:02:52 +0300
commitb8887ebb14cb8d27d385e3e4db965dbc46473732 (patch)
tree4c1e9c352bb5ffbd36e672b6591d8cd9c4182cff /plugins/af_redditimgur/init.php
parent9959acc87a6c95f0a9c87dac898def1afdad1bf8 (diff)
redditimgur: extract video poster urls
Diffstat (limited to 'plugins/af_redditimgur/init.php')
-rw-r--r--plugins/af_redditimgur/init.php21
1 files changed, 17 insertions, 4 deletions
diff --git a/plugins/af_redditimgur/init.php b/plugins/af_redditimgur/init.php
index 1091f3088..6f2c7ff98 100644
--- a/plugins/af_redditimgur/init.php
+++ b/plugins/af_redditimgur/init.php
@@ -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");