]> git.mxchange.org Git - friendica.git/blob - include/oembed.php
oembed: Option to disallow displaying of "rich" content and some beautification for...
[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) && intval($j->thumbnail_width)) ? $j->thumbnail_width:200;
78                                 $th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height:180;
79                                 // make sure we don't attempt divide by zero, fallback is a 1:1 ratio
80                                 $tr = (($th) ? $tw/$th : 1);
81
82                                 $th=120; $tw = $th*$tr;
83                                 $tpl=get_markup_template('oembed_video.tpl');
84                                 $ret.=replace_macros($tpl, array(
85                                 '$baseurl' => $a->get_baseurl(),
86                                         '$embedurl'=>$embedurl,
87                                         '$escapedhtml'=>base64_encode($jhtml),
88                                         '$tw'=>$tw,
89                                         '$th'=>$th,
90                                         '$turl'=>$j->thumbnail_url,
91                                 ));
92
93                         } else {
94                                 $ret=$jhtml;
95                         }
96                         $ret.="<br>";
97                 }; break;
98                 case "photo": {
99                         $ret.= "<img width='".$j->width."' src='".$j->url."'>";
100                         //$ret.= "<img width='".$j->width."' height='".$j->height."' src='".$j->url."'>";
101                         $ret.="<br>";
102                 }; break;
103                 case "link": {
104                         //$ret = "<a href='".$embedurl."'>".$j->title."</a>";
105                 }; break;
106                 case "rich": {
107                         // not so safe..
108                         if (!get_config("system","no_oembed_rich_content"))
109                                 $ret.= $jhtml;
110                 }; break;
111         }
112
113         // add link to source if not present in "rich" type
114         if ($j->type!='rich' || !strpos($j->html,$embedurl) ){
115                 if (isset($j->title)) {
116                         if (isset($j->provider_name))
117                                 $ret .= $j->provider_name.": ";
118
119                         $embedlink = (isset($j->title))?$j->title:$embedurl;
120                         $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
121                         if (isset($j->author_name))
122                                 $ret.=" (".$j->author_name.")";
123                 } elseif (isset($j->provider_name) OR isset($j->author_name)) {
124                         $embedlink = "";
125                         if (isset($j->provider_name))
126                                 $embedlink .= $j->provider_name;
127
128                         if (isset($j->author_name)) {
129                                 if ($embedlink != "")
130                                         $embedlink .= ": ";
131
132                                 $embedlink .= $j->author_name;
133                         }
134                         $ret .= "<a href='$embedurl' rel='oembed'>$embedlink</a>";
135                 }
136                 //if (isset($j->author_name)) $ret.=" by ".$j->author_name;
137                 //if (isset($j->provider_name)) $ret.=" on ".$j->provider_name;
138         } else {
139                 // add <a> for html2bbcode conversion
140                 $ret .= "<a href='$embedurl' rel='oembed'></a>";
141         }
142         $ret.="<br style='clear:left'></span>";
143         return  mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
144 }
145
146 function oembed_iframe($src,$width,$height) {
147         if(! $width || strstr($width,'%'))
148                 $width = '640';
149         if(! $height || strstr($height,'%'))
150                 $height = '300';
151         // try and leave some room for the description line.
152         $height = intval($height) + 80;
153         $width  = intval($width) + 40;
154
155         $a = get_app();
156
157         $s = $a->get_baseurl()."/oembed/".base64url_encode($src);
158         return '<iframe height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>';
159
160 }
161
162
163
164 function oembed_bbcode2html($text){
165         $stopoembed = get_config("system","no_oembed");
166         if ($stopoembed == true){
167                 return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>". t('Embedding disabled') ." : $1</i><!-- /oembed $1 -->" ,$text);
168         }
169         return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", 'oembed_replacecb' ,$text);
170 }
171
172
173 function oe_build_xpath($attr, $value){
174         // http://westhoffswelt.de/blog/0036_xpath_to_select_html_by_class.html
175         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'";
176 }
177
178 function oe_get_inner_html( $node ) {
179     $innerHTML= '';
180     $children = $node->childNodes;
181     foreach ($children as $child) {
182         $innerHTML .= $child->ownerDocument->saveXML( $child );
183     }
184     return $innerHTML;
185 }
186
187 /**
188  * Find <span class='oembed'>..<a href='url' rel='oembed'>..</a></span>
189  * and replace it with [embed]url[/embed]
190  */
191 function oembed_html2bbcode($text) {
192         // start parser only if 'oembed' is in text
193         if (strpos($text, "oembed")){
194
195                 // convert non ascii chars to html entities
196                 $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
197
198                 // If it doesn't parse at all, just return the text.
199                 $dom = @DOMDocument::loadHTML($html_text);
200                 if(! $dom)
201                         return $text;
202                 $xpath = new DOMXPath($dom);
203                 $attr = "oembed";
204
205                 $xattr = oe_build_xpath("class","oembed");
206                 $entries = $xpath->query("//span[$xattr]");
207
208                 $xattr = "@rel='oembed'";//oe_build_xpath("rel","oembed");
209                 foreach($entries as $e) {
210                         $href = $xpath->evaluate("a[$xattr]/@href", $e)->item(0)->nodeValue;
211                         if(!is_null($href)) $e->parentNode->replaceChild(new DOMText("[embed]".$href."[/embed]"), $e);
212                 }
213                 return oe_get_inner_html( $dom->getElementsByTagName("body")->item(0) );
214         } else {
215                 return $text;
216         }
217 }