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