]> git.mxchange.org Git - friendica.git/blob - include/oembed.php
Merge branch 'master' of https://github.com/friendica/friendica into threaded_items
[friendica.git] / include / oembed.php
1 <?php
2 function oembed_replacecb($matches){
3 //      logger('oembedcb');
4         $embedurl=$matches[1];
5         $j = oembed_fetch_url($embedurl);
6         $s =  oembed_format_object($j);
7         return $s;//oembed_iframe($s,$j->width,$j->height);
8
9
10 }
11
12
13 function oembed_fetch_url($embedurl){
14
15         $a = get_app();
16
17         $txt = Cache::get($a->videowidth . $embedurl);
18
19         // These media files should now be caught in bbcode.php
20         // left here as a fallback in case this is called from another source
21
22         $noexts = array("mp3","mp4","ogg","ogv","oga","ogm","webm");
23         $ext = pathinfo(strtolower($embedurl),PATHINFO_EXTENSION);
24         
25                                 
26         if(is_null($txt)){
27                 $txt = "";
28                 
29                 if (!in_array($ext, $noexts)){
30                         // try oembed autodiscovery
31                         $redirects = 0;
32                         $html_text = fetch_url($embedurl, false, $redirects, 15, "text/*");
33                         if($html_text){
34                                 $dom = @DOMDocument::loadHTML($html_text);
35                                 if ($dom){
36                                         $xpath = new DOMXPath($dom);
37                                         $attr = "oembed";
38                                 
39                                         $xattr = oe_build_xpath("class","oembed");
40                                         $entries = $xpath->query("//link[@type='application/json+oembed']");
41                                         foreach($entries as $e){
42                                                 $href = $e->getAttributeNode("href")->nodeValue;
43                                                 $txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
44                                                 break;
45                                         }
46                                 }
47                         }
48                 }
49                 
50                 if ($txt==false || $txt==""){
51                         // try oohembed service
52                         $ourl = "http://oohembed.com/oohembed/?url=".urlencode($embedurl).'&maxwidth=' . $a->videowidth;  
53                         $txt = fetch_url($ourl);
54                 }
55                 
56                 $txt=trim($txt);
57                 if ($txt[0]!="{") $txt='{"type":"error"}';
58         
59                 //save in cache
60                 Cache::set($a->videowidth . $embedurl,$txt);
61
62         }
63         
64         $j = json_decode($txt);
65         $j->embedurl = $embedurl;
66         return $j;
67 }
68         
69 function oembed_format_object($j){
70         $a = get_app();
71     $embedurl = $j->embedurl;
72         $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) );
73         $ret="<span class='oembed ".$j->type."'>";
74         switch ($j->type) {
75                 case "video": {
76                         if (isset($j->thumbnail_url)) {
77                                 $tw = (isset($j->thumbnail_width)) ? $j->thumbnail_width:200;
78                                 $th = (isset($j->thumbnail_height)) ? $j->thumbnail_height:180;
79                                 $tr = $tw/$th;
80                                 
81                                 $th=120; $tw = $th*$tr;
82                                 $tpl=get_markup_template('oembed_video.tpl');
83                                 $ret.=replace_macros($tpl, array(
84                     '$baseurl' => $a->get_baseurl(),
85                                         '$embedurl'=>$embedurl,
86                                         '$escapedhtml'=>base64_encode($jhtml),
87                                         '$tw'=>$tw,
88                                         '$th'=>$th,
89                                         '$turl'=>$j->thumbnail_url,
90                                 ));
91                                 
92                         } else {
93                                 $ret=$jhtml;
94                         }
95                         $ret.="<br>";
96                 }; break;
97                 case "photo": {
98                         $ret.= "<img width='".$j->width."' src='".$j->url."'>";
99                         //$ret.= "<img width='".$j->width."' height='".$j->height."' src='".$j->url."'>";
100                         $ret.="<br>";
101                 }; break;  
102                 case "link": {
103                         //$ret = "<a href='".$embedurl."'>".$j->title."</a>";
104                 }; break;  
105                 case "rich": {
106                         // not so safe.. 
107                         $ret.= $jhtml;
108                 }; break;
109         }
110
111         // add link to source if not present in "rich" type
112         if (  $j->type!='rich' || !strpos($j->html,$embedurl) ){
113                 $embedlink = (isset($j->title))?$j->title:$embedurl;
114                 $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
115                 if (isset($j->author_name)) $ret.=" by ".$j->author_name;
116                 if (isset($j->provider_name)) $ret.=" on ".$j->provider_name;
117         } else {
118                 // add <a> for html2bbcode conversion
119                 $ret .= "<a href='$embedurl' rel='oembed'/>";
120         }
121         $ret.="<br style='clear:left'></span>";
122         return  mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
123 }
124
125 function oembed_iframe($src,$width,$height) {
126         if(! $width || strstr($width,'%'))
127                 $width = '640';
128         if(! $height || strstr($height,'%'))
129                 $height = '300';
130         // try and leave some room for the description line. 
131         $height = intval($height) + 80;
132         $width  = intval($width) + 40;
133
134         $a = get_app();
135
136         $s = $a->get_baseurl()."/oembed/".base64url_encode($src);
137         return '<iframe height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>'; 
138
139 }
140
141
142
143 function oembed_bbcode2html($text){
144         $stopoembed = get_config("system","no_oembed");
145         if ($stopoembed == true){
146                 return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
147         }
148         return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text);
149 }
150
151
152 function oe_build_xpath($attr, $value){
153         // http://westhoffswelt.de/blog/0036_xpath_to_select_html_by_class.html
154         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'";
155 }
156
157 function oe_get_inner_html( $node ) {
158     $innerHTML= '';
159     $children = $node->childNodes;
160     foreach ($children as $child) {
161         $innerHTML .= $child->ownerDocument->saveXML( $child );
162     }
163     return $innerHTML;
164
165
166 /**
167  * Find <span class='oembed'>..<a href='url' rel='oembed'>..</a></span>
168  * and replace it with [embed]url[/embed]
169  */
170 function oembed_html2bbcode($text) {
171         // start parser only if 'oembed' is in text
172         if (strpos($text, "oembed")){
173                 
174                 // convert non ascii chars to html entities
175                 $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
176                 
177                 // If it doesn't parse at all, just return the text.
178                 $dom = @DOMDocument::loadHTML($html_text);
179                 if(! $dom)
180                         return $text;
181                 $xpath = new DOMXPath($dom);
182                 $attr = "oembed";
183                 
184                 $xattr = oe_build_xpath("class","oembed");
185                 $entries = $xpath->query("//span[$xattr]");
186
187                 $xattr = "@rel='oembed'";//oe_build_xpath("rel","oembed");
188                 foreach($entries as $e) {
189                         $href = $xpath->evaluate("a[$xattr]/@href", $e)->item(0)->nodeValue;
190                         if(!is_null($href)) $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
191                 }
192                 return oe_get_inner_html( $dom->getElementsByTagName("body")->item(0) );
193         } else {
194                 return $text;
195         } 
196 }
197
198
199