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