]> git.mxchange.org Git - friendica.git/blob - src/Content/OEmbed.php
46442dd6f17b3c2267dd8ddfbc851dc4337a62d5
[friendica.git] / src / Content / OEmbed.php
1 <?php
2
3 /**
4  * @file src/Content/OEmbed.php
5  */
6
7 namespace Friendica\Content;
8
9 use Friendica\Core\Cache;
10 use Friendica\Core\System;
11 use Friendica\Core\Config;
12 use Friendica\Database\DBM;
13 use Friendica\Util\ParseUrl;
14 use dba;
15 use DOMDocument;
16 use DOMXPath;
17 use DOMNode;
18 use Exception;
19
20 require_once 'include/dba.php';
21 require_once 'mod/proxy.php';
22
23 /**
24  * Handles all OEmbed content fetching and replacement
25  *
26  * OEmbed is a standard used to allow an embedded representation of a URL on
27  * third party sites
28  *
29  * @see https://oembed.com
30  *
31  * @author Hypolite Petovan <mrpetovan@gmail.com>
32  */
33 class OEmbed
34 {
35         public static function replaceCallback($matches)
36         {
37                 $embedurl = $matches[1];
38                 $j = self::fetchURL($embedurl, !self::isAllowedURL($embedurl));
39                 $s = self::formatObject($j);
40
41                 return $s;
42         }
43
44         /**
45          * @brief Get data from an URL to embed its content.
46          *
47          * @param string $embedurl The URL from which the data should be fetched.
48          * @param bool $no_rich_type If set to true rich type content won't be fetched.
49          *
50          * @return bool|object Returns object with embed content or false if no embeddable
51          *                         content exists
52          */
53         public static function fetchURL($embedurl, $no_rich_type = false)
54         {
55                 $embedurl = trim($embedurl, "'");
56                 $embedurl = trim($embedurl, '"');
57
58                 $a = get_app();
59
60                 $condition = ['url' => normalise_link($embedurl), 'maxwidth' => $a->videowidth];
61                 $oembed = dba::selectFirst('oembed', ['content'], $condition);
62                 if (DBM::is_result($oembed)) {
63                         $txt = $oembed["content"];
64                 } else {
65                         $txt = Cache::get($a->videowidth . $embedurl);
66                 }
67                 // These media files should now be caught in bbcode.php
68                 // left here as a fallback in case this is called from another source
69
70                 $noexts = array("mp3", "mp4", "ogg", "ogv", "oga", "ogm", "webm");
71                 $ext = pathinfo(strtolower($embedurl), PATHINFO_EXTENSION);
72
73
74                 if (is_null($txt)) {
75                         $txt = "";
76
77                         if (!in_array($ext, $noexts)) {
78                                 // try oembed autodiscovery
79                                 $redirects = 0;
80                                 $html_text = fetch_url($embedurl, false, $redirects, 15, "text/*");
81                                 if ($html_text) {
82                                         $dom = @DOMDocument::loadHTML($html_text);
83                                         if ($dom) {
84                                                 $xpath = new DOMXPath($dom);
85                                                 $entries = $xpath->query("//link[@type='application/json+oembed']");
86                                                 foreach ($entries as $e) {
87                                                         $href = $e->getAttributeNode("href")->nodeValue;
88                                                         $txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
89                                                         break;
90                                                 }
91                                                 $entries = $xpath->query("//link[@type='text/json+oembed']");
92                                                 foreach ($entries as $e) {
93                                                         $href = $e->getAttributeNode("href")->nodeValue;
94                                                         $txt = fetch_url($href . '&maxwidth=' . $a->videowidth);
95                                                         break;
96                                                 }
97                                         }
98                                 }
99                         }
100
101                         $txt = trim($txt);
102
103                         if (!$txt || $txt[0] != "{") {
104                                 $txt = '{"type":"error"}';
105                         } else { //save in cache
106                                 $j = json_decode($txt);
107                                 if ($j->type != "error") {
108                                         dba::insert('oembed', [
109                                                 'url' => normalise_link($embedurl),
110                                                 'maxwidth' => $a->videowidth,
111                                                 'content' => $txt,
112                                                 'created' => datetime_convert()
113                                         ], true);
114                                 }
115
116                                 Cache::set($a->videowidth . $embedurl, $txt, CACHE_DAY);
117                         }
118                 }
119
120                 $j = json_decode($txt);
121
122                 if (!is_object($j)) {
123                         return false;
124                 }
125
126                 // Always embed the SSL version
127                 if (isset($j->html)) {
128                         $j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"), array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html);
129                 }
130
131                 $j->embedurl = $embedurl;
132
133                 // If fetching information doesn't work, then improve via internal functions
134                 if (($j->type == "error") || ($no_rich_type && ($j->type == "rich"))) {
135                         $data = ParseUrl::getSiteinfoCached($embedurl, true, false);
136                         $j->type = $data["type"];
137
138                         if ($j->type == "photo") {
139                                 $j->url = $data["url"];
140                                 //$j->width = $data["images"][0]["width"];
141                                 //$j->height = $data["images"][0]["height"];
142                         }
143
144                         if (isset($data["title"])) {
145                                 $j->title = $data["title"];
146                         }
147
148                         if (isset($data["text"])) {
149                                 $j->description = $data["text"];
150                         }
151
152                         if (is_array($data["images"])) {
153                                 $j->thumbnail_url = $data["images"][0]["src"];
154                                 $j->thumbnail_width = $data["images"][0]["width"];
155                                 $j->thumbnail_height = $data["images"][0]["height"];
156                         }
157                 }
158
159                 call_hooks('oembed_fetch_url', $embedurl, $j);
160
161                 return $j;
162         }
163
164         private static function formatObject($j)
165         {
166                 $embedurl = $j->embedurl;
167                 $jhtml = $j->html;
168                 $ret = '<div class="oembed ' . $j->type . '">';
169                 switch ($j->type) {
170                         case "video":
171                                 if (isset($j->thumbnail_url)) {
172                                         $tw = (isset($j->thumbnail_width) && intval($j->thumbnail_width)) ? $j->thumbnail_width : 200;
173                                         $th = (isset($j->thumbnail_height) && intval($j->thumbnail_height)) ? $j->thumbnail_height : 180;
174                                         // make sure we don't attempt divide by zero, fallback is a 1:1 ratio
175                                         $tr = (($th) ? $tw / $th : 1);
176
177                                         $th = 120;
178                                         $tw = $th * $tr;
179                                         $tpl = get_markup_template('oembed_video.tpl');
180                                         $ret .= replace_macros($tpl, array(
181                                                 '$baseurl' => System::baseUrl(),
182                                                 '$embedurl' => $embedurl,
183                                                 '$escapedhtml' => base64_encode($jhtml),
184                                                 '$tw' => $tw,
185                                                 '$th' => $th,
186                                                 '$turl' => $j->thumbnail_url,
187                                         ));
188                                 } else {
189                                         $ret = $jhtml;
190                                 }
191                                 break;
192                         case "photo":
193                                 $ret .= '<img width="' . $j->width . '" src="' . proxy_url($j->url) . '">';
194                                 break;
195                         case "link":
196                                 break;
197                         case "rich":
198                                 $ret .= proxy_parse_html($jhtml);
199                                 break;
200                 }
201
202                 $ret .= '</div>';
203                 // add link to source if not present in "rich" type
204                 if ($j->type != 'rich' || !strpos($j->html, $embedurl)) {
205                         $ret .= '<h4>';
206                         if (isset($j->title)) {
207                                 if (isset($j->provider_name)) {
208                                         $ret .= $j->provider_name . ": ";
209                                 }
210
211                                 $embedlink = (isset($j->title)) ? $j->title : $embedurl;
212                                 $ret .= '<a href="' . $embedurl . '" rel="oembed">' . $embedlink . '</a>';
213                                 if (isset($j->author_name)) {
214                                         $ret .= ' (' . $j->author_name . ')';
215                                 }
216                         } elseif (isset($j->provider_name) || isset($j->author_name)) {
217                                 $embedlink = "";
218                                 if (isset($j->provider_name)) {
219                                         $embedlink .= $j->provider_name;
220                                 }
221
222                                 if (isset($j->author_name)) {
223                                         if ($embedlink != "") {
224                                                 $embedlink .= ": ";
225                                         }
226
227                                         $embedlink .= $j->author_name;
228                                 }
229                                 if (trim($embedlink) == "") {
230                                         $embedlink = $embedurl;
231                                 }
232
233                                 $ret .= '<a href="' . $embedurl . '" rel="oembed">' . $embedlink . '</a>';
234                         }
235                         $ret .= "</h4>";
236                 } elseif (!strpos($j->html, $embedurl)) {
237                         // add <a> for html2bbcode conversion
238                         $ret .= '<a href="' . $embedurl . '" rel="oembed">' . $j->title . '</a>';
239                 }
240
241                 $ret = str_replace("\n", "", $ret);
242                 return mb_convert_encoding($ret, 'HTML-ENTITIES', mb_detect_encoding($ret));
243         }
244
245         public static function BBCode2HTML($text)
246         {
247                 $stopoembed = Config::get("system", "no_oembed");
248                 if ($stopoembed == true) {
249                         return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>" . t('Embedding disabled') . " : $1</i><!-- /oembed $1 -->", $text);
250                 }
251                 return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", ['self', 'replaceCallback'], $text);
252         }
253
254         /**
255          * Find <span class='oembed'>..<a href='url' rel='oembed'>..</a></span>
256          * and replace it with [embed]url[/embed]
257          */
258         public static function HTML2BBCode($text)
259         {
260                 // start parser only if 'oembed' is in text
261                 if (strpos($text, "oembed")) {
262
263                         // convert non ascii chars to html entities
264                         $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text));
265
266                         // If it doesn't parse at all, just return the text.
267                         $dom = @DOMDocument::loadHTML($html_text);
268                         if (!$dom) {
269                                 return $text;
270                         }
271                         $xpath = new DOMXPath($dom);
272
273                         $xattr = self::buildXPath("class", "oembed");
274                         $entries = $xpath->query("//div[$xattr]");
275
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)) {
280                                         $e->parentNode->replaceChild(new DOMText("[embed]" . $href . "[/embed]"), $e);
281                                 }
282                         }
283                         return self::getInnerHTML($dom->getElementsByTagName("body")->item(0));
284                 } else {
285                         return $text;
286                 }
287         }
288
289         /**
290          * Determines if rich content OEmbed is allowed for the provided URL
291          *
292          * @brief Determines if rich content OEmbed is allowed for the provided URL
293          * @param string $url
294          * @return boolean
295          */
296         public static function isAllowedURL($url)
297         {
298                 if (!Config::get('system', 'no_oembed_rich_content')) {
299                         return true;
300                 }
301
302                 $domain = parse_url($url, PHP_URL_HOST);
303                 if (!x($domain)) {
304                         return false;
305                 }
306
307                 $str_allowed = Config::get('system', 'allowed_oembed', '');
308                 if (!x($str_allowed)) {
309                         return false;
310                 }
311
312                 $allowed = explode(',', $str_allowed);
313
314                 return allowed_domain($domain, $allowed);
315         }
316
317         public static function getHTML($url, $title = null)
318         {
319                 // Always embed the SSL version
320                 $url = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"),
321                                         array("https://www.youtube.com/", "https://player.vimeo.com/"), $url);
322
323                 $o = self::fetchURL($url, !self::isAllowedURL($url));
324
325                 if (!is_object($o) || $o->type == 'error') {
326                         throw new Exception('OEmbed failed for URL: ' . $url);
327                 }
328
329                 if (x($title)) {
330                         $o->title = $title;
331                 }
332
333                 $html = self::formatObject($o);
334
335                 return $html;
336         }
337
338         /**
339          * @brief Generates the iframe HTML for an oembed attachment.
340          *
341          * Width and height are given by the remote, and are regularly too small for
342          * the generated iframe.
343          *
344          * The width is entirely discarded for the actual width of the post, while fixed
345          * height is used as a starting point before the inevitable resizing.
346          *
347          * Since the iframe is automatically resized on load, there are no need for ugly
348          * and impractical scrollbars.
349          *
350          * @todo This function is currently unused until someoneā„¢ adds support for a separate OEmbed domain
351          *
352          * @param string $src Original remote URL to embed
353          * @param string $width
354          * @param string $height
355          * @return string formatted HTML
356          *
357          * @see oembed_format_object()
358          */
359         private static function iframe($src, $width, $height)
360         {
361                 $a = get_app();
362
363                 if (!$height || strstr($height, '%')) {
364                         $height = '200';
365                 }
366                 $width = '100%';
367
368                 $src = System::baseUrl() . '/oembed/' . base64url_encode($src);
369                 return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $src . '" allowfullscreen scrolling="no" frameborder="no">' . t('Embedded content') . '</iframe>';
370         }
371
372         /**
373          * Generates an XPath query to select elements whose provided attribute contains
374          * the provided value in a space-separated list.
375          *
376          * @brief Generates attribute search XPath string
377          *
378          * @param string $attr Name of the attribute to seach
379          * @param string $value Value to search in a space-separated list
380          * @return string
381          */
382         private static function buildXPath($attr, $value)
383         {
384                 // https://www.westhoffswelt.de/blog/2009/6/9/select-html-elements-with-more-than-one-css-class-using-xpath
385                 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'";
386         }
387
388         /**
389          * Returns the inner XML string of a provided DOMNode
390          *
391          * @brief Returns the inner XML string of a provided DOMNode
392          *
393          * @param DOMNode $node
394          * @return string
395          */
396         private static function getInnerHTML(DOMNode $node)
397         {
398                 $innerHTML = '';
399                 $children = $node->childNodes;
400                 foreach ($children as $child) {
401                         $innerHTML .= $child->ownerDocument->saveXML($child);
402                 }
403                 return $innerHTML;
404         }
405
406 }