]> git.mxchange.org Git - friendica.git/blobdiff - include/oembed.php
Merge pull request #3868 from rabuzarus/20171104_-_use_best_link_url_for_events
[friendica.git] / include / oembed.php
index be6c298e8d5ff0f5f89ccc1e15afc2395ca3366c..715a0ba5bd6454445043bea6875bdad17a5fd112 100755 (executable)
@@ -1,17 +1,28 @@
 <?php
+
+/**
+ * @file include/oembed.php
+ */
+
+use Friendica\App;
+use Friendica\Core\System;
+use Friendica\ParseUrl;
+use Friendica\Core\Config;
+
 function oembed_replacecb($matches){
        $embedurl=$matches[1];
        $j = oembed_fetch_url($embedurl);
        $s =  oembed_format_object($j);
+
        return $s;
 }
 
 /**
  * @brief Get data from an URL to embed its content.
- * 
+ *
  * @param string $embedurl The URL from which the data should be fetched.
  * @param bool $no_rich_type If set to true rich type content won't be fetched.
- * 
+ *
  * @return bool|object Returns object with embed content or false if no embedable
  *      content exists
  */
@@ -32,8 +43,8 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
        // These media files should now be caught in bbcode.php
        // left here as a fallback in case this is called from another source
 
-       $noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm");
-       $ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION);
+       $noexts = array("mp3", "mp4", "ogg", "ogv", "oga", "ogm", "webm");
+       $ext = pathinfo(strtolower($embedurl), PATHINFO_EXTENSION);
 
 
        if (is_null($txt)) {
@@ -65,29 +76,15 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
                        }
                }
 
-               if ($txt==false || $txt=="") {
-                       $embedly = get_config("system", "embedly");
-                       if ($embedly != "") {
-                               // try embedly service
-                               $ourl = "https://api.embed.ly/1/oembed?key=".$embedly."&url=".urlencode($embedurl);
-                               $txt = fetch_url($ourl);
-
-                               logger("oembed_fetch_url: ".$txt, LOGGER_DEBUG);
-                       }
-               }
-
-               $txt=trim($txt);
+               $txt = trim($txt);
 
-               if ($txt[0]!="{") {
-                       $txt='{"type":"error"}';
+               if ($txt[0] != "{") {
+                       $txt = '{"type":"error"}';
                } else {        //save in cache
                        $j = json_decode($txt);
                        if ($j->type != "error") {
-                               q("INSERT INTO `oembed` (`url`, `content`, `created`) VALUES ('%s', '%s', '%s')
-                                       ON DUPLICATE KEY UPDATE `content` = '%s', `created` = '%s'",
-                                       dbesc(normalise_link($embedurl)),
-                                       dbesc($txt), dbesc(datetime_convert()),
-                                       dbesc($txt), dbesc(datetime_convert()));
+                               dba::insert('oembed', array('url' => normalise_link($embedurl),
+                                                       'content' => $txt, 'created' => datetime_convert()), true);
                        }
 
                        Cache::set($a->videowidth.$embedurl, $txt, CACHE_DAY);
@@ -109,9 +106,8 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
        $j->embedurl = $embedurl;
 
        // If fetching information doesn't work, then improve via internal functions
-       if (($j->type == "error") OR ($no_rich_type AND ($j->type == "rich"))) {
-               require_once("mod/parse_url.php");
-               $data = parseurl_getsiteinfo_cached($embedurl, true, false);
+       if (($j->type == "error") || ($no_rich_type && ($j->type == "rich"))) {
+               $data = ParseUrl::getSiteinfoCached($embedurl, true, false);
                $j->type = $data["type"];
 
                if ($j->type == "photo") {
@@ -143,12 +139,11 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
 function oembed_format_object($j){
        require_once("mod/proxy.php");
 
-       $a = get_app();
        $embedurl = $j->embedurl;
        $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) );
        $ret="<span class='oembed ".$j->type."'>";
        switch ($j->type) {
-               case "video": {
+               case "video":
                        if (isset($j->thumbnail_url)) {
                                $tw = (isset($j->thumbnail_width) && intval($j->thumbnail_width)) ? $j->thumbnail_width:200;
                                $th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height:180;
@@ -158,55 +153,61 @@ function oembed_format_object($j){
                                $th=120; $tw = $th*$tr;
                                $tpl=get_markup_template('oembed_video.tpl');
                                $ret.=replace_macros($tpl, array(
-                               '$baseurl' => $a->get_baseurl(),
-                                       '$embedurl'=>$embedurl,
-                                       '$escapedhtml'=>base64_encode($jhtml),
-                                       '$tw'=>$tw,
-                                       '$th'=>$th,
-                                       '$turl'=>$j->thumbnail_url,
+                                       '$baseurl'     => System::baseUrl(),
+                                       '$embedurl'    => $embedurl,
+                                       '$escapedhtml' => base64_encode($jhtml),
+                                       '$tw'          => $tw,
+                                       '$th'          => $th,
+                                       '$turl'        => $j->thumbnail_url,
                                ));
 
                        } else {
                                $ret=$jhtml;
                        }
                        //$ret.="<br>";
-               }; break;
-               case "photo": {
+                       break;
+               case "photo":
                        $ret.= "<img width='".$j->width."' src='".proxy_url($j->url)."'>";
-               }; break;
-               case "link": {
-               }; break;
-               case "rich": {
+                       break;
+               case "link":
+                       break;
+               case "rich":
                        // not so safe..
-                       if (!get_config("system","no_oembed_rich_content"))
+                       if (!Config::get("system","no_oembed_rich_content")) {
                                $ret.= proxy_parse_html($jhtml);
-               }; break;
+                       }
+                       break;
        }
 
        // add link to source if not present in "rich" type
        if ($j->type!='rich' || !strpos($j->html,$embedurl) ){
                $ret .= "<h4>";
                if (isset($j->title)) {
-                       if (isset($j->provider_name))
+                       if (isset($j->provider_name)) {
                                $ret .= $j->provider_name.": ";
+                       }
 
                        $embedlink = (isset($j->title))?$j->title:$embedurl;
                        $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
-                       if (isset($j->author_name))
+                       if (isset($j->author_name)) {
                                $ret.=" (".$j->author_name.")";
-               } elseif (isset($j->provider_name) OR isset($j->author_name)) {
+                       }
+               } elseif (isset($j->provider_name) || isset($j->author_name)) {
                        $embedlink = "";
-                       if (isset($j->provider_name))
+                       if (isset($j->provider_name)) {
                                $embedlink .= $j->provider_name;
+                       }
 
                        if (isset($j->author_name)) {
-                               if ($embedlink != "")
+                               if ($embedlink != "") {
                                        $embedlink .= ": ";
+                               }
 
                                $embedlink .= $j->author_name;
                        }
-                       if (trim($embedlink) == "")
+                       if (trim($embedlink) == "") {
                                $embedlink = $embedurl;
+                       }
 
                        $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
                }
@@ -242,20 +243,21 @@ function oembed_format_object($j){
  * @see oembed_format_object()
  */
 function oembed_iframe($src, $width, $height) {
+       $a = get_app();
+
        if (!$height || strstr($height,'%')) {
                $height = '200';
        }
        $width = '100%';
 
-       $a = get_app();
-       $s = $a->get_baseurl() . '/oembed/'.base64url_encode($src);
-       return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
+       $s = System::baseUrl() . '/oembed/' . base64url_encode($src);
+       return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
 }
 
 
 
 function oembed_bbcode2html($text){
-       $stopoembed = get_config("system","no_oembed");
+       $stopoembed = Config::get("system","no_oembed");
        if ($stopoembed == true){
                return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
        }
@@ -268,13 +270,13 @@ function oe_build_xpath($attr, $value){
        return "contains( normalize-space( @$attr ), ' $value ' ) or substring( normalize-space( @$attr ), 1, string-length( '$value' ) + 1 ) = '$value ' or substring( normalize-space( @$attr ), string-length( @$attr ) - string-length( '$value' ) ) = ' $value' or @$attr = '$value'";
 }
 
-function oe_get_inner_html( $node ) {
-    $innerHTML= '';
-    $children = $node->childNodes;
-    foreach ($children as $child) {
-        $innerHTML .= $child->ownerDocument->saveXML( $child );
-    }
-    return $innerHTML;
+function oe_get_inner_html($node) {
+       $innerHTML= '';
+       $children = $node->childNodes;
+       foreach ($children as $child) {
+               $innerHTML .= $child->ownerDocument->saveXML($child);
+       }
+       return $innerHTML;
 }
 
 /**
@@ -283,15 +285,16 @@ function oe_get_inner_html( $node ) {
  */
 function oembed_html2bbcode($text) {
        // start parser only if 'oembed' is in text
-       if (strpos($text, "oembed")){
+       if (strpos($text, "oembed")) {
 
                // convert non ascii chars to html entities
                $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
 
                // If it doesn't parse at all, just return the text.
                $dom = @DOMDocument::loadHTML($html_text);
-               if(! $dom)
+               if (! $dom) {
                        return $text;
+               }
                $xpath = new DOMXPath($dom);
                $attr = "oembed";
 
@@ -299,9 +302,11 @@ function oembed_html2bbcode($text) {
                $entries = $xpath->query("//span[$xattr]");
 
                $xattr = "@rel='oembed'";//oe_build_xpath("rel","oembed");
-               foreach($entries as $e) {
+               foreach ($entries as $e) {
                        $href = $xpath->evaluate("a[$xattr]/@href", $e)->item(0)->nodeValue;
-                       if(!is_null($href)) $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
+                       if (!is_null($href)) {
+                               $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
+                       }
                }
                return oe_get_inner_html( $dom->getElementsByTagName("body")->item(0) );
        } else {