]> git.mxchange.org Git - friendica.git/blobdiff - mod/oembed.php
Merge pull request #3518 from AndyHee/3.5.2rc
[friendica.git] / mod / oembed.php
index 236625f68a662ac23b1631b659bfb7e15f875f1e..3266ad963e110a0956a69a36844252e13f2f0397 100644 (file)
@@ -1,7 +1,10 @@
 <?php
+
+use Friendica\App;
+
 require_once("include/oembed.php");
 
-function oembed_content(&$a){
+function oembed_content(App $a) {
        // logger('mod_oembed ' . $a->query_string, LOGGER_ALL);
 
        if ($a->argv[1]=='b2h'){
@@ -9,17 +12,24 @@ function oembed_content(&$a){
                echo oembed_replacecb($url);
                killme();
        }
-       
+
        if ($a->argv[1]=='h2b'){
                $text = trim(hex2bin($_REQUEST['text']));
                echo oembed_html2bbcode($text);
                killme();
        }
-       
+
        if ($a->argc == 2){
                echo "<html><body>";
                $url = base64url_decode($a->argv[1]);
                $j = oembed_fetch_url($url);
+
+               // workaround for media.ccc.de (and any other endpoint that return size 0)
+               if (substr($j->html, 0, 7) == "<iframe" && strstr($j->html, 'width="0"')) {
+                       $j->html = '<style>html,body{margin:0;padding:0;} iframe{width:100%;height:100%;}</style>'. $j->html;
+                       $j->html = str_replace('width="0"', '', $j->html);
+                       $j->html = str_replace('height="0"', '', $j->html);
+               }
                echo $j->html;
 //             logger('mod-oembed ' . $j->html, LOGGER_ALL);
                echo "</body></html>";