2 function oembed_replacecb($matches){
4 $j = oembed_fetch_url($embedurl);
5 $s = oembed_format_object($j);
10 function oembed_fetch_url($embedurl, $no_rich_type = false){
11 $embedurl = trim($embedurl, "'");
12 $embedurl = trim($embedurl, '"');
16 $r = q("SELECT * FROM `oembed` WHERE `url` = '%s'",
17 dbesc(normalise_link($embedurl)));
20 $txt = $r[0]["content"];
22 $txt = Cache::get($a->videowidth . $embedurl);
24 // These media files should now be caught in bbcode.php
25 // left here as a fallback in case this is called from another source
27 $noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm");
28 $ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION);
34 if (!in_array($ext, $noexts)){
35 // try oembed autodiscovery
37 $html_text = fetch_url($embedurl, false, $redirects, 15, "text/*"); /**/
39 $dom = @DOMDocument::loadHTML($html_text);
41 $xpath = new DOMXPath($dom);
43 $xattr = oe_build_xpath("class","oembed");
44 $entries = $xpath->query("//link[@type='application/json+oembed']");
45 foreach($entries as $e){
46 $href = $e->getAttributeNode("href")->nodeValue;
47 $txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
50 $entries = $xpath->query("//link[@type='text/json+oembed']");
51 foreach($entries as $e){
52 $href = $e->getAttributeNode("href")->nodeValue;
53 $txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
60 if ($txt==false || $txt==""){
61 $embedly = get_config("system", "embedly");
63 // try embedly service
64 $ourl = "https://api.embed.ly/1/oembed?key=".$embedly."&url=".urlencode($embedurl);
65 $txt = fetch_url($ourl);
67 logger("oembed_fetch_url: ".$txt, LOGGER_DEBUG);
74 $txt='{"type":"error"}';
75 else { //save in cache
76 $j = json_decode($txt);
77 if ($j->type != "error")
78 q("INSERT INTO `oembed` (`url`, `content`, `created`) VALUES ('%s', '%s', '%s')",
79 dbesc(normalise_link($embedurl)), dbesc($txt), dbesc(datetime_convert()));
81 Cache::set($a->videowidth . $embedurl,$txt, CACHE_DAY);
85 $j = json_decode($txt);
90 // Always embed the SSL version
92 $j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"),
93 array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html);
95 $j->embedurl = $embedurl;
97 // If fetching information doesn't work, then improve via internal functions
98 if (($j->type == "error") OR ($no_rich_type AND ($j->type == "rich"))) {
99 require_once("mod/parse_url.php");
100 $data = parseurl_getsiteinfo_cached($embedurl, true, false);
101 $j->type = $data["type"];
103 if ($j->type == "photo") {
104 $j->url = $data["url"];
105 //$j->width = $data["images"][0]["width"];
106 //$j->height = $data["images"][0]["height"];
109 if (isset($data["title"]))
110 $j->title = $data["title"];
112 if (isset($data["text"]))
113 $j->description = $data["text"];
115 if (is_array($data["images"])) {
116 $j->thumbnail_url = $data["images"][0]["src"];
117 $j->thumbnail_width = $data["images"][0]["width"];
118 $j->thumbnail_height = $data["images"][0]["height"];
122 call_hooks('oembed_fetch_url', $embedurl, $j);
127 function oembed_format_object($j){
128 require_once("mod/proxy.php");
131 $embedurl = $j->embedurl;
132 $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) );
133 $ret="<span class='oembed ".$j->type."'>";
136 if (isset($j->thumbnail_url)) {
137 $tw = (isset($j->thumbnail_width) && intval($j->thumbnail_width)) ? $j->thumbnail_width:200;
138 $th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height:180;
139 // make sure we don't attempt divide by zero, fallback is a 1:1 ratio
140 $tr = (($th) ? $tw/$th : 1);
142 $th=120; $tw = $th*$tr;
143 $tpl=get_markup_template('oembed_video.tpl');
144 $ret.=replace_macros($tpl, array(
145 '$baseurl' => $a->get_baseurl(),
146 '$embedurl'=>$embedurl,
147 '$escapedhtml'=>base64_encode($jhtml),
150 '$turl'=>$j->thumbnail_url,
159 $ret.= "<img width='".$j->width."' src='".proxy_url($j->url)."'>";
165 if (!get_config("system","no_oembed_rich_content"))
166 $ret.= proxy_parse_html($jhtml);
170 // add link to source if not present in "rich" type
171 if ($j->type!='rich' || !strpos($j->html,$embedurl) ){
173 if (isset($j->title)) {
174 if (isset($j->provider_name))
175 $ret .= $j->provider_name.": ";
177 $embedlink = (isset($j->title))?$j->title:$embedurl;
178 $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
179 if (isset($j->author_name))
180 $ret.=" (".$j->author_name.")";
181 } elseif (isset($j->provider_name) OR isset($j->author_name)) {
183 if (isset($j->provider_name))
184 $embedlink .= $j->provider_name;
186 if (isset($j->author_name)) {
187 if ($embedlink != "")
190 $embedlink .= $j->author_name;
192 if (trim($embedlink) == "")
193 $embedlink = $embedurl;
195 $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
197 //if (isset($j->author_name)) $ret.=" by ".$j->author_name;
198 //if (isset($j->provider_name)) $ret.=" on ".$j->provider_name;
201 // add <a> for html2bbcode conversion
202 $ret .= "<a href='$embedurl' rel='oembed'>$embedurl</a>";
205 $ret = str_replace("\n","",$ret);
206 return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
209 function oembed_iframe($src,$width,$height) {
211 if(! $width || strstr($width,'%'))
213 if(! $height || strstr($height,'%')) {
215 $resize = 'onload="resizeIframe(this);"';
219 // try and leave some room for the description line.
220 $height = intval($height) + 80;
221 $width = intval($width) + 40;
225 $s = $a->get_baseurl()."/oembed/".base64url_encode($src);
226 return '<iframe '.$resize.' class="embed_rich" height="'.$height.'" width="'.$width.'" src="'.$s.'" frameborder="no">'.t('Embedded content').'</iframe>';
232 function oembed_bbcode2html($text){
233 $stopoembed = get_config("system","no_oembed");
234 if ($stopoembed == true){
235 return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
237 return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text);
241 function oe_build_xpath($attr, $value){
242 // http://westhoffswelt.de/blog/0036_xpath_to_select_html_by_class.html
243 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'";
246 function oe_get_inner_html( $node ) {
248 $children = $node->childNodes;
249 foreach ($children as $child) {
250 $innerHTML .= $child->ownerDocument->saveXML( $child );
256 * Find <span class='oembed'>..<a href='url' rel='oembed'>..</a></span>
257 * and replace it with [embed]url[/embed]
259 function oembed_html2bbcode($text) {
260 // start parser only if 'oembed' is in text
261 if (strpos($text, "oembed")){
263 // convert non ascii chars to html entities
264 $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
266 // If it doesn't parse at all, just return the text.
267 $dom = @DOMDocument::loadHTML($html_text);
270 $xpath = new DOMXPath($dom);
273 $xattr = oe_build_xpath("class","oembed");
274 $entries = $xpath->query("//span[$xattr]");
276 $xattr = "@rel='oembed'";//oe_build_xpath("rel","oembed");
277 foreach($entries as $e) {
278 $href = $xpath->evaluate("a[$xattr]/@href", $e)->item(0)->nodeValue;
279 if(!is_null($href)) $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
281 return oe_get_inner_html( $dom->getElementsByTagName("body")->item(0) );