2011-01-31 10:38:49 +01:00
|
|
|
<?php
|
2016-11-24 01:11:22 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/oembed.php
|
|
|
|
*/
|
|
|
|
|
|
|
|
use \Friendica\ParseUrl;
|
|
|
|
use \Friendica\Core\Config;
|
|
|
|
|
2011-01-31 10:38:49 +01:00
|
|
|
function oembed_replacecb($matches){
|
2011-05-22 23:03:34 +02:00
|
|
|
$embedurl=$matches[1];
|
|
|
|
$j = oembed_fetch_url($embedurl);
|
2011-10-25 05:10:46 +02:00
|
|
|
$s = oembed_format_object($j);
|
2016-11-24 01:11:22 +01:00
|
|
|
|
2015-12-28 18:07:31 +01:00
|
|
|
return $s;
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-05-29 11:45:32 +02:00
|
|
|
function oembed_fetch_url($embedurl, $no_rich_type = false){
|
2014-04-04 10:56:33 +02:00
|
|
|
$embedurl = trim($embedurl, "'");
|
|
|
|
$embedurl = trim($embedurl, '"');
|
|
|
|
|
2012-08-06 17:59:57 +02:00
|
|
|
$a = get_app();
|
|
|
|
|
2016-01-14 23:59:51 +01:00
|
|
|
$r = q("SELECT * FROM `oembed` WHERE `url` = '%s'",
|
|
|
|
dbesc(normalise_link($embedurl)));
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2016-01-14 23:59:51 +01:00
|
|
|
$txt = $r[0]["content"];
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-01-14 23:59:51 +01:00
|
|
|
$txt = Cache::get($a->videowidth . $embedurl);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2012-03-14 04:46:37 +01:00
|
|
|
// These media files should now be caught in bbcode.php
|
|
|
|
// left here as a fallback in case this is called from another source
|
|
|
|
|
2011-11-17 13:40:11 +01:00
|
|
|
$noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm");
|
|
|
|
$ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION);
|
2013-12-02 20:24:41 +01:00
|
|
|
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if (is_null($txt)) {
|
2011-05-22 23:03:34 +02:00
|
|
|
$txt = "";
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-11-17 13:40:11 +01:00
|
|
|
if (!in_array($ext, $noexts)){
|
|
|
|
// try oembed autodiscovery
|
|
|
|
$redirects = 0;
|
2016-11-04 16:44:49 +01:00
|
|
|
$html_text = fetch_url($embedurl, false, $redirects, 15, "text/*");
|
|
|
|
if ($html_text) {
|
2011-11-17 13:40:11 +01:00
|
|
|
$dom = @DOMDocument::loadHTML($html_text);
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($dom) {
|
2011-11-17 13:40:11 +01:00
|
|
|
$xpath = new DOMXPath($dom);
|
|
|
|
$attr = "oembed";
|
|
|
|
$xattr = oe_build_xpath("class","oembed");
|
|
|
|
$entries = $xpath->query("//link[@type='application/json+oembed']");
|
2016-11-04 16:44:49 +01:00
|
|
|
foreach ($entries as $e) {
|
2011-11-17 13:40:11 +01:00
|
|
|
$href = $e->getAttributeNode("href")->nodeValue;
|
2015-06-10 23:45:56 +02:00
|
|
|
$txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$entries = $xpath->query("//link[@type='text/json+oembed']");
|
2016-11-04 16:44:49 +01:00
|
|
|
foreach ($entries as $e) {
|
2015-06-10 23:45:56 +02:00
|
|
|
$href = $e->getAttributeNode("href")->nodeValue;
|
2012-08-06 17:59:57 +02:00
|
|
|
$txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
|
2012-03-25 06:26:50 +02:00
|
|
|
break;
|
2011-11-17 13:40:11 +01:00
|
|
|
}
|
2011-10-24 17:28:28 +02:00
|
|
|
}
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($txt==false || $txt=="") {
|
2016-11-24 01:11:22 +01:00
|
|
|
$embedly = Config::get("system", "embedly");
|
2015-08-25 19:50:23 +02:00
|
|
|
if ($embedly != "") {
|
2014-04-04 10:56:33 +02:00
|
|
|
// try embedly service
|
|
|
|
$ourl = "https://api.embed.ly/1/oembed?key=".$embedly."&url=".urlencode($embedurl);
|
|
|
|
$txt = fetch_url($ourl);
|
|
|
|
|
2015-08-25 19:50:23 +02:00
|
|
|
logger("oembed_fetch_url: ".$txt, LOGGER_DEBUG);
|
|
|
|
}
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
$txt=trim($txt);
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($txt[0]!="{") {
|
2015-08-25 19:50:23 +02:00
|
|
|
$txt='{"type":"error"}';
|
2016-11-04 16:44:49 +01:00
|
|
|
} else { //save in cache
|
2016-01-14 23:59:51 +01:00
|
|
|
$j = json_decode($txt);
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($j->type != "error") {
|
2016-05-03 19:20:58 +02:00
|
|
|
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()));
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2016-01-14 23:59:51 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
Cache::set($a->videowidth.$embedurl, $txt, CACHE_DAY);
|
2016-01-14 23:59:51 +01:00
|
|
|
}
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
$j = json_decode($txt);
|
2014-02-03 23:06:12 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if (!is_object($j)) {
|
2014-02-03 23:06:12 +01:00
|
|
|
return false;
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2014-02-03 23:06:12 +01:00
|
|
|
|
2014-12-14 12:47:16 +01:00
|
|
|
// Always embed the SSL version
|
2016-11-04 16:44:49 +01:00
|
|
|
if (isset($j->html)) {
|
2014-12-14 12:47:16 +01:00
|
|
|
$j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"),
|
|
|
|
array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2014-12-14 12:47:16 +01:00
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
$j->embedurl = $embedurl;
|
2014-05-29 11:45:32 +02:00
|
|
|
|
|
|
|
// If fetching information doesn't work, then improve via internal functions
|
|
|
|
if (($j->type == "error") OR ($no_rich_type AND ($j->type == "rich"))) {
|
2016-11-24 01:11:22 +01:00
|
|
|
$data = ParseUrl::getSiteinfoCached($embedurl, true, false);
|
2014-05-29 11:45:32 +02:00
|
|
|
$j->type = $data["type"];
|
|
|
|
|
|
|
|
if ($j->type == "photo") {
|
|
|
|
$j->url = $data["url"];
|
|
|
|
//$j->width = $data["images"][0]["width"];
|
|
|
|
//$j->height = $data["images"][0]["height"];
|
|
|
|
}
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if (isset($data["title"])) {
|
|
|
|
$j->title = $data["title"];
|
|
|
|
}
|
2014-05-29 11:45:32 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if (isset($data["text"])) {
|
|
|
|
$j->description = $data["text"];
|
|
|
|
}
|
2014-05-29 11:45:32 +02:00
|
|
|
|
|
|
|
if (is_array($data["images"])) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$j->thumbnail_url = $data["images"][0]["src"];
|
|
|
|
$j->thumbnail_width = $data["images"][0]["width"];
|
|
|
|
$j->thumbnail_height = $data["images"][0]["height"];
|
2014-05-29 11:45:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-25 00:58:51 +01:00
|
|
|
call_hooks('oembed_fetch_url', $embedurl, $j);
|
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
return $j;
|
|
|
|
}
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
function oembed_format_object($j){
|
2014-08-13 00:13:13 +02:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2013-12-02 20:24:41 +01:00
|
|
|
$embedurl = $j->embedurl;
|
2012-02-28 22:56:42 +01:00
|
|
|
$jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) );
|
2011-05-22 23:03:34 +02:00
|
|
|
$ret="<span class='oembed ".$j->type."'>";
|
|
|
|
switch ($j->type) {
|
2016-11-24 01:11:22 +01:00
|
|
|
case "video":
|
2011-05-22 23:03:34 +02:00
|
|
|
if (isset($j->thumbnail_url)) {
|
2012-12-17 02:58:12 +01:00
|
|
|
$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;
|
|
|
|
// make sure we don't attempt divide by zero, fallback is a 1:1 ratio
|
|
|
|
$tr = (($th) ? $tw/$th : 1);
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-10-24 17:31:14 +02:00
|
|
|
$th=120; $tw = $th*$tr;
|
2011-10-24 17:28:28 +02:00
|
|
|
$tpl=get_markup_template('oembed_video.tpl');
|
|
|
|
$ret.=replace_macros($tpl, array(
|
2016-12-15 09:49:00 +01:00
|
|
|
'$baseurl' => App::get_baseurl(),
|
|
|
|
'$embedurl' => $embedurl,
|
|
|
|
'$escapedhtml' => base64_encode($jhtml),
|
|
|
|
'$tw' => $tw,
|
|
|
|
'$th' => $th,
|
|
|
|
'$turl' => $j->thumbnail_url,
|
2011-10-24 17:28:28 +02:00
|
|
|
));
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-05-22 23:03:34 +02:00
|
|
|
} else {
|
2011-10-25 14:59:31 +02:00
|
|
|
$ret=$jhtml;
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
2015-12-28 18:07:31 +01:00
|
|
|
//$ret.="<br>";
|
2016-11-24 01:11:22 +01:00
|
|
|
break;
|
|
|
|
case "photo":
|
2014-08-13 00:13:13 +02:00
|
|
|
$ret.= "<img width='".$j->width."' src='".proxy_url($j->url)."'>";
|
2016-11-24 01:11:22 +01:00
|
|
|
break;
|
|
|
|
case "link":
|
|
|
|
break;
|
|
|
|
case "rich":
|
2013-12-02 20:24:41 +01:00
|
|
|
// not so safe..
|
2016-11-24 01:11:22 +01:00
|
|
|
if (!Config::get("system","no_oembed_rich_content")) {
|
2015-10-05 22:19:34 +02:00
|
|
|
$ret.= proxy_parse_html($jhtml);
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
|
|
|
break;
|
2011-05-22 23:03:34 +02:00
|
|
|
}
|
|
|
|
|
2011-10-21 16:26:29 +02:00
|
|
|
// add link to source if not present in "rich" type
|
2013-12-02 20:24:41 +01:00
|
|
|
if ($j->type!='rich' || !strpos($j->html,$embedurl) ){
|
2015-03-01 21:58:31 +01:00
|
|
|
$ret .= "<h4>";
|
2014-01-26 09:59:20 +01:00
|
|
|
if (isset($j->title)) {
|
2016-11-24 01:11:22 +01:00
|
|
|
if (isset($j->provider_name)) {
|
2014-01-26 09:59:20 +01:00
|
|
|
$ret .= $j->provider_name.": ";
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2014-01-26 09:59:20 +01:00
|
|
|
|
|
|
|
$embedlink = (isset($j->title))?$j->title:$embedurl;
|
|
|
|
$ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
|
2016-11-24 01:11:22 +01:00
|
|
|
if (isset($j->author_name)) {
|
2014-01-26 09:59:20 +01:00
|
|
|
$ret.=" (".$j->author_name.")";
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2014-01-26 09:59:20 +01:00
|
|
|
} elseif (isset($j->provider_name) OR isset($j->author_name)) {
|
|
|
|
$embedlink = "";
|
2016-11-24 01:11:22 +01:00
|
|
|
if (isset($j->provider_name)) {
|
2014-01-26 09:59:20 +01:00
|
|
|
$embedlink .= $j->provider_name;
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2014-01-26 09:59:20 +01:00
|
|
|
|
|
|
|
if (isset($j->author_name)) {
|
2016-11-24 01:11:22 +01:00
|
|
|
if ($embedlink != "") {
|
2014-01-26 09:59:20 +01:00
|
|
|
$embedlink .= ": ";
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2014-01-26 09:59:20 +01:00
|
|
|
|
|
|
|
$embedlink .= $j->author_name;
|
|
|
|
}
|
2016-11-24 01:11:22 +01:00
|
|
|
if (trim($embedlink) == "") {
|
2014-08-28 01:14:46 +02:00
|
|
|
$embedlink = $embedurl;
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2014-08-28 01:14:46 +02:00
|
|
|
|
2014-01-26 09:59:20 +01:00
|
|
|
$ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
|
|
|
|
}
|
2013-12-02 20:24:41 +01:00
|
|
|
//if (isset($j->author_name)) $ret.=" by ".$j->author_name;
|
|
|
|
//if (isset($j->provider_name)) $ret.=" on ".$j->provider_name;
|
2015-03-01 21:58:31 +01:00
|
|
|
$ret .= "</h4>";
|
2011-10-21 16:26:29 +02:00
|
|
|
} else {
|
|
|
|
// add <a> for html2bbcode conversion
|
2014-08-28 01:14:46 +02:00
|
|
|
$ret .= "<a href='$embedurl' rel='oembed'>$embedurl</a>";
|
2011-10-21 16:26:29 +02:00
|
|
|
}
|
2015-06-02 18:38:16 +02:00
|
|
|
$ret.="</span>";
|
2015-12-28 18:07:31 +01:00
|
|
|
$ret = str_replace("\n","",$ret);
|
|
|
|
return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
|
2011-01-31 10:38:49 +01:00
|
|
|
}
|
|
|
|
|
2016-10-01 05:26:22 +02:00
|
|
|
/**
|
2016-10-02 06:04:34 +02:00
|
|
|
* @brief Generates the iframe HTML for an oembed attachment.
|
|
|
|
*
|
|
|
|
* Width and height are given by the remote, and are regularly too small for
|
|
|
|
* the generated iframe.
|
2016-10-01 05:26:22 +02:00
|
|
|
*
|
|
|
|
* The width is entirely discarded for the actual width of the post, while fixed
|
|
|
|
* height is used as a starting point before the inevitable resizing.
|
|
|
|
*
|
|
|
|
* Since the iframe is automatically resized on load, there are no need for ugly
|
|
|
|
* and impractical scrollbars.
|
|
|
|
*
|
|
|
|
* @param string $src Original remote URL to embed
|
|
|
|
* @param string $width
|
|
|
|
* @param string $height
|
2016-10-02 06:04:34 +02:00
|
|
|
* @return string formatted HTML
|
2016-10-01 05:26:22 +02:00
|
|
|
*
|
|
|
|
* @see oembed_format_object()
|
|
|
|
*/
|
|
|
|
function oembed_iframe($src, $width, $height) {
|
2016-12-13 10:16:36 +01:00
|
|
|
$a = get_app();
|
|
|
|
|
2016-10-01 05:26:22 +02:00
|
|
|
if (!$height || strstr($height,'%')) {
|
|
|
|
$height = '200';
|
|
|
|
}
|
|
|
|
$width = '100%';
|
2011-10-25 05:10:46 +02:00
|
|
|
|
2016-12-14 09:49:52 +01:00
|
|
|
$s = App::get_baseurl() . '/oembed/' . base64url_encode($src);
|
2016-12-04 14:55:57 +01:00
|
|
|
return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $s . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
|
2011-10-25 05:10:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-01-31 16:45:58 +01:00
|
|
|
function oembed_bbcode2html($text){
|
2016-11-24 01:11:22 +01:00
|
|
|
$stopoembed = Config::get("system","no_oembed");
|
2011-01-31 11:00:35 +01:00
|
|
|
if ($stopoembed == true){
|
|
|
|
return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
|
|
|
|
}
|
2011-02-01 08:06:45 +01:00
|
|
|
return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text);
|
2011-01-31 10:38:49 +01:00
|
|
|
}
|
2011-01-31 16:45:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
function oe_build_xpath($attr, $value){
|
|
|
|
// http://westhoffswelt.de/blog/0036_xpath_to_select_html_by_class.html
|
|
|
|
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'";
|
|
|
|
}
|
|
|
|
|
2016-11-24 01:11:22 +01:00
|
|
|
function oe_get_inner_html($node) {
|
|
|
|
$innerHTML= '';
|
|
|
|
$children = $node->childNodes;
|
|
|
|
foreach ($children as $child) {
|
|
|
|
$innerHTML .= $child->ownerDocument->saveXML($child);
|
|
|
|
}
|
|
|
|
return $innerHTML;
|
2013-12-02 20:24:41 +01:00
|
|
|
}
|
2011-01-31 16:45:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find <span class='oembed'>..<a href='url' rel='oembed'>..</a></span>
|
|
|
|
* and replace it with [embed]url[/embed]
|
|
|
|
*/
|
|
|
|
function oembed_html2bbcode($text) {
|
2011-02-16 09:22:32 +01:00
|
|
|
// start parser only if 'oembed' is in text
|
2016-11-24 01:11:22 +01:00
|
|
|
if (strpos($text, "oembed")) {
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-02-16 09:22:32 +01:00
|
|
|
// convert non ascii chars to html entities
|
|
|
|
$html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-02-16 09:22:32 +01:00
|
|
|
// If it doesn't parse at all, just return the text.
|
|
|
|
$dom = @DOMDocument::loadHTML($html_text);
|
2016-11-24 01:11:22 +01:00
|
|
|
if (! $dom) {
|
2011-02-16 09:22:32 +01:00
|
|
|
return $text;
|
2016-11-24 01:11:22 +01:00
|
|
|
}
|
2011-02-16 09:22:32 +01:00
|
|
|
$xpath = new DOMXPath($dom);
|
|
|
|
$attr = "oembed";
|
2013-12-02 20:24:41 +01:00
|
|
|
|
2011-02-16 09:22:32 +01:00
|
|
|
$xattr = oe_build_xpath("class","oembed");
|
|
|
|
$entries = $xpath->query("//span[$xattr]");
|
2011-10-21 16:26:29 +02:00
|
|
|
|
|
|
|
$xattr = "@rel='oembed'";//oe_build_xpath("rel","oembed");
|
2011-02-16 09:22:32 +01:00
|
|
|
foreach($entries as $e) {
|
|
|
|
$href = $xpath->evaluate("a[$xattr]/@href", $e)->item(0)->nodeValue;
|
2011-05-22 21:56:47 +02:00
|
|
|
if(!is_null($href)) $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
|
2011-02-16 09:22:32 +01:00
|
|
|
}
|
|
|
|
return oe_get_inner_html( $dom->getElementsByTagName("body")->item(0) );
|
|
|
|
} else {
|
2011-02-09 05:55:34 +01:00
|
|
|
return $text;
|
2013-12-02 20:24:41 +01:00
|
|
|
}
|
2011-01-31 16:45:58 +01:00
|
|
|
}
|