X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Foembed.php;h=0f3296b254c9a7db2e2efa29f48b8695fd6d7c28;hb=0cd9db9cb7f4c96f597e37590a536eaae123238d;hp=be6c298e8d5ff0f5f89ccc1e15afc2395ca3366c;hpb=4b33573c20850607d9e1cc0f33a57ffacf12fec8;p=friendica.git diff --git a/include/oembed.php b/include/oembed.php index be6c298e8d..0f3296b254 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -1,17 +1,27 @@ type != "error") { @@ -109,9 +108,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 +141,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=""; 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 +155,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' => App::get_baseurl(), + '$embedurl' => $embedurl, + '$escapedhtml' => base64_encode($jhtml), + '$tw' => $tw, + '$th' => $th, + '$turl' => $j->thumbnail_url, )); } else { $ret=$jhtml; } //$ret.="
"; - }; break; - case "photo": { + break; + case "photo": $ret.= ""; - }; 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 .= "

"; 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 .= "$embedlink"; - 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 .= "$embedlink"; } @@ -242,20 +245,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 ''; + $s = App::get_baseurl() . '/oembed/' . base64url_encode($src); + return ''; } 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", "". t('Embedding disabled') ." : $1" ,$text); } @@ -268,13 +272,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 +287,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 +304,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 {