]> git.mxchange.org Git - friendica.git/blob - src/Util/ParseUrl.php
ParseUrl: Remove image when it doesn't fit the requirements
[friendica.git] / src / Util / ParseUrl.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Util;
23
24 use DOMDocument;
25 use DOMXPath;
26 use Friendica\Content\OEmbed;
27 use Friendica\Core\Hook;
28 use Friendica\Core\Logger;
29 use Friendica\Database\Database;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Network\HTTPException;
33
34 /**
35  * Get information about a given URL
36  *
37  * Class with methods for extracting certain content from an url
38  */
39 class ParseUrl
40 {
41         const DEFAULT_EXPIRATION_FAILURE = 'now + 1 day';
42         const DEFAULT_EXPIRATION_SUCCESS = 'now + 3 months';
43
44         /**
45          * Maximum number of characters for the description
46          */
47         const MAX_DESC_COUNT = 250;
48
49         /**
50          * Minimum number of characters for the description
51          */
52         const MIN_DESC_COUNT = 100;
53
54         /**
55          * Fetch the content type of the given url
56          * @param string $url URL of the page
57          * @return array content type 
58          */
59         public static function getContentType(string $url)
60         {
61                 $curlResult = DI::httpRequest()->head($url);
62                 if (!$curlResult->isSuccess()) {
63                         return [];
64                 }
65
66                 $contenttype =  $curlResult->getHeader('Content-Type');
67                 if (empty($contenttype)) {
68                         return [];
69                 }
70
71                 return explode('/', current(explode(';', $contenttype)));
72         }
73
74         /**
75          * Search for chached embeddable data of an url otherwise fetch it
76          *
77          * @param string $url         The url of the page which should be scraped
78          * @param bool   $do_oembed   The false option is used by the function fetch_oembed()
79          *                            to avoid endless loops
80          *
81          * @return array which contains needed data for embedding
82          *    string 'url'      => The url of the parsed page
83          *    string 'type'     => Content type
84          *    string 'title'    => (optional) The title of the content
85          *    string 'text'     => (optional) The description for the content
86          *    string 'image'    => (optional) A preview image of the content
87          *    array  'images'   => (optional) Array of preview pictures
88          *    string 'keywords' => (optional) The tags which belong to the content
89          *
90          * @throws HTTPException\InternalServerErrorException
91          * @see   ParseUrl::getSiteinfo() for more information about scraping
92          * embeddable content
93          */
94         public static function getSiteinfoCached($url, $do_oembed = true): array
95         {
96                 if (empty($url)) {
97                         return [
98                                 'url' => '',
99                                 'type' => 'error',
100                         ];
101                 }
102
103                 $urlHash = hash('sha256', $url);
104
105                 $parsed_url = DBA::selectFirst('parsed_url', ['content'],
106                         ['url_hash' => $urlHash, 'oembed' => $do_oembed]
107                 );
108                 if (!empty($parsed_url['content'])) {
109                         $data = unserialize($parsed_url['content']);
110                         return $data;
111                 }
112
113                 $data = self::getSiteinfo($url, $do_oembed);
114
115                 $expires = $data['expires'];
116
117                 unset($data['expires']);
118
119                 DI::dba()->insert(
120                         'parsed_url',
121                         [
122                                 'url_hash' => $urlHash,
123                                 'oembed'   => $do_oembed,
124                                 'url'      => $url,
125                                 'content'  => serialize($data),
126                                 'created'  => DateTimeFormat::utcNow(),
127                                 'expires'  => $expires,
128                         ],
129                         Database::INSERT_UPDATE
130                 );
131
132                 return $data;
133         }
134
135         /**
136          * Parse a page for embeddable content information
137          *
138          * This method parses to url for meta data which can be used to embed
139          * the content. If available it prioritizes Open Graph meta tags.
140          * If this is not available it uses the twitter cards meta tags.
141          * As fallback it uses standard html elements with meta informations
142          * like \<title\>Awesome Title\</title\> or
143          * \<meta name="description" content="An awesome description"\>
144          *
145          * @param string $url         The url of the page which should be scraped
146          * @param bool   $do_oembed   The false option is used by the function fetch_oembed()
147          *                            to avoid endless loops
148          * @param int    $count       Internal counter to avoid endless loops
149          *
150          * @return array which contains needed data for embedding
151          *    string 'url'      => The url of the parsed page
152          *    string 'type'     => Content type (error, link, photo, image, audio, video)
153          *    string 'title'    => (optional) The title of the content
154          *    string 'text'     => (optional) The description for the content
155          *    string 'image'    => (optional) A preview image of the content
156          *    array  'images'   => (optional) Array of preview pictures
157          *    string 'keywords' => (optional) The tags which belong to the content
158          *
159          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
160          * @todo  https://developers.google.com/+/plugins/snippet/
161          * @verbatim
162          * <meta itemprop="name" content="Awesome title">
163          * <meta itemprop="description" content="An awesome description">
164          * <meta itemprop="image" content="http://maple.libertreeproject.org/images/tree-icon.png">
165          *
166          * <body itemscope itemtype="http://schema.org/Product">
167          *   <h1 itemprop="name">Shiny Trinket</h1>
168          *   <img itemprop="image" src="{image-url}" />
169          *   <p itemprop="description">Shiny trinkets are shiny.</p>
170          * </body>
171          * @endverbatim
172          */
173         public static function getSiteinfo($url, $do_oembed = true, $count = 1)
174         {
175                 if (empty($url)) {
176                         return [
177                                 'url' => '',
178                                 'type' => 'error',
179                         ];
180                 }
181
182                 // Check if the URL does contain a scheme
183                 $scheme = parse_url($url, PHP_URL_SCHEME);
184
185                 if ($scheme == '') {
186                         $url = 'http://' . ltrim($url, '/');
187                 }
188
189                 $url = trim($url, "'\"");
190
191                 $url = Network::stripTrackingQueryParams($url);
192
193                 $siteinfo = [
194                         'url' => $url,
195                         'type' => 'link',
196                         'expires' => DateTimeFormat::utc(self::DEFAULT_EXPIRATION_FAILURE),
197                 ];
198
199                 if ($count > 10) {
200                         Logger::log('Endless loop detected for ' . $url, Logger::DEBUG);
201                         return $siteinfo;
202                 }
203
204                 $type = self::getContentType($url);
205                 Logger::info('Got content-type', ['content-type' => $type, 'url' => $url]);
206                 if (!empty($type) && in_array($type[0], ['image', 'video', 'audio'])) {
207                         $siteinfo['type'] = $type[0];
208                         return $siteinfo;
209                 }
210
211                 if ((count($type) >= 2) && (($type[0] != 'text') || ($type[1] != 'html'))) {
212                         Logger::info('Unparseable content-type, quitting here, ', ['content-type' => $type, 'url' => $url]);
213                         return $siteinfo;
214                 }
215
216                 $curlResult = DI::httpRequest()->get($url);
217                 if (!$curlResult->isSuccess()) {
218                         return $siteinfo;
219                 }
220
221                 $siteinfo['expires'] = DateTimeFormat::utc(self::DEFAULT_EXPIRATION_SUCCESS);
222
223                 // If the file is too large then exit
224                 if (($curlResult->getInfo()['download_content_length'] ?? 0) > 1000000) {
225                         return $siteinfo;
226                 }
227
228                 if ($cacheControlHeader = $curlResult->getHeader('Cache-Control')) {
229                         if (preg_match('/max-age=([0-9]+)/i', $cacheControlHeader, $matches)) {
230                                 $maxAge = max(86400, (int)array_pop($matches));
231                                 $siteinfo['expires'] = DateTimeFormat::utc("now + $maxAge seconds");
232                         }
233                 }
234
235                 $header = $curlResult->getHeader();
236                 $body = $curlResult->getBody();
237
238                 if ($do_oembed) {
239                         $oembed_data = OEmbed::fetchURL($url, false, false);
240
241                         if (!empty($oembed_data->type)) {
242                                 if (!in_array($oembed_data->type, ['error', 'rich', 'image', 'video', 'audio', ''])) {
243                                         $siteinfo['type'] = $oembed_data->type;
244                                 }
245
246                                 // See https://github.com/friendica/friendica/pull/5763#discussion_r217913178
247                                 if ($siteinfo['type'] != 'photo') {
248                                         if (!empty($oembed_data->title)) {
249                                                 $siteinfo['title'] = trim($oembed_data->title);
250                                         }
251                                         if (!empty($oembed_data->description)) {
252                                                 $siteinfo['text'] = trim($oembed_data->description);
253                                         }
254                                         if (!empty($oembed_data->author_name)) {
255                                                 $siteinfo['author_name'] = trim($oembed_data->author_name);
256                                         }
257                                         if (!empty($oembed_data->author_url)) {
258                                                 $siteinfo['author_url'] = trim($oembed_data->author_url);
259                                         }
260                                         if (!empty($oembed_data->provider_name)) {
261                                                 $siteinfo['publisher_name'] = trim($oembed_data->provider_name);
262                                         }
263                                         if (!empty($oembed_data->provider_url)) {
264                                                 $siteinfo['publisher_url'] = trim($oembed_data->provider_url);
265                                         }
266                                         if (!empty($oembed_data->thumbnail_url)) {
267                                                 $siteinfo['image'] = $oembed_data->thumbnail_url;
268                                         }
269                                 }
270                         }
271                 }
272
273                 $charset = '';
274                 // Look for a charset, first in headers
275                 // Expected form: Content-Type: text/html; charset=ISO-8859-4
276                 if (preg_match('/charset=([a-z0-9-_.\/]+)/i', $header, $matches)) {
277                         $charset = trim(trim(trim(array_pop($matches)), ';,'));
278                 }
279
280                 // Then in body that gets precedence
281                 // Expected forms:
282                 // - <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
283                 // - <meta charset="utf-8">
284                 // - <meta charset=utf-8>
285                 // - <meta charSet="utf-8">
286                 // We escape <style> and <script> tags since they can contain irrelevant charset information
287                 // (see https://github.com/friendica/friendica/issues/9251#issuecomment-698636806)
288                 Strings::performWithEscapedBlocks($body, '#<(?:style|script).*?</(?:style|script)>#ism', function ($body) use (&$charset) {
289                         if (preg_match('/charset=["\']?([a-z0-9-_.\/]+)/i', $body, $matches)) {
290                                 $charset = trim(trim(trim(array_pop($matches)), ';,'));
291                         }
292                 });
293
294                 $siteinfo['charset'] = $charset;
295
296                 if ($charset && strtoupper($charset) != 'UTF-8') {
297                         // See https://github.com/friendica/friendica/issues/5470#issuecomment-418351211
298                         $charset = str_ireplace('latin-1', 'latin1', $charset);
299
300                         Logger::log('detected charset ' . $charset, Logger::DEBUG);
301                         $body = iconv($charset, 'UTF-8//TRANSLIT', $body);
302                 }
303
304                 $body = mb_convert_encoding($body, 'HTML-ENTITIES', 'UTF-8');
305
306                 $doc = new DOMDocument();
307                 @$doc->loadHTML($body);
308
309                 XML::deleteNode($doc, 'style');
310                 XML::deleteNode($doc, 'option');
311                 XML::deleteNode($doc, 'h1');
312                 XML::deleteNode($doc, 'h2');
313                 XML::deleteNode($doc, 'h3');
314                 XML::deleteNode($doc, 'h4');
315                 XML::deleteNode($doc, 'h5');
316                 XML::deleteNode($doc, 'h6');
317                 XML::deleteNode($doc, 'ol');
318                 XML::deleteNode($doc, 'ul');
319
320                 $xpath = new DOMXPath($doc);
321
322                 $list = $xpath->query('//meta[@content]');
323                 foreach ($list as $node) {
324                         $meta_tag = [];
325                         if ($node->attributes->length) {
326                                 foreach ($node->attributes as $attribute) {
327                                         $meta_tag[$attribute->name] = $attribute->value;
328                                 }
329                         }
330
331                         if (@$meta_tag['http-equiv'] == 'refresh') {
332                                 $path = $meta_tag['content'];
333                                 $pathinfo = explode(';', $path);
334                                 $content = '';
335                                 foreach ($pathinfo as $value) {
336                                         if (substr(strtolower($value), 0, 4) == 'url=') {
337                                                 $content = substr($value, 4);
338                                         }
339                                 }
340                                 if ($content != '') {
341                                         $siteinfo = self::getSiteinfo($content, $do_oembed, ++$count);
342                                         return $siteinfo;
343                                 }
344                         }
345                 }
346
347                 $list = $xpath->query('//title');
348                 if ($list->length > 0) {
349                         $siteinfo['title'] = trim($list->item(0)->nodeValue);
350                 }
351
352                 $list = $xpath->query('//meta[@name]');
353                 foreach ($list as $node) {
354                         $meta_tag = [];
355                         if ($node->attributes->length) {
356                                 foreach ($node->attributes as $attribute) {
357                                         $meta_tag[$attribute->name] = $attribute->value;
358                                 }
359                         }
360
361                         if (empty($meta_tag['content'])) {
362                                 continue;
363                         }
364
365                         $meta_tag['content'] = trim(html_entity_decode($meta_tag['content'], ENT_QUOTES, 'UTF-8'));
366
367                         switch (strtolower($meta_tag['name'])) {
368                                 case 'fulltitle':
369                                         $siteinfo['title'] = trim($meta_tag['content']);
370                                         break;
371                                 case 'description':
372                                         $siteinfo['text'] = trim($meta_tag['content']);
373                                         break;
374                                 case 'thumbnail':
375                                         $siteinfo['image'] = $meta_tag['content'];
376                                         break;
377                                 case 'twitter:image':
378                                         $siteinfo['image'] = $meta_tag['content'];
379                                         break;
380                                 case 'twitter:image:src':
381                                         $siteinfo['image'] = $meta_tag['content'];
382                                         break;
383                                 case 'twitter:card':
384                                         // Detect photo pages
385                                         if ($meta_tag['content'] == 'summary_large_image') {
386                                                 $siteinfo['type'] = 'photo';
387                                         }
388                                         break;
389                                 case 'twitter:description':
390                                         $siteinfo['text'] = trim($meta_tag['content']);
391                                         break;
392                                 case 'twitter:title':
393                                         $siteinfo['title'] = trim($meta_tag['content']);
394                                         break;
395                                 case 'dc.title':
396                                         $siteinfo['title'] = trim($meta_tag['content']);
397                                         break;
398                                 case 'dc.description':
399                                         $siteinfo['text'] = trim($meta_tag['content']);
400                                         break;
401                                 case 'dc.creator':
402                                         $siteinfo['publisher_name'] = trim($meta_tag['content']);
403                                         break;
404                                 case 'keywords':
405                                         $keywords = explode(',', $meta_tag['content']);
406                                         break;
407                                 case 'news_keywords':
408                                         $keywords = explode(',', $meta_tag['content']);
409                                         break;
410                         }
411                 }
412
413                 if (isset($keywords)) {
414                         $siteinfo['keywords'] = [];
415                         foreach ($keywords as $keyword) {
416                                 if (!in_array(trim($keyword), $siteinfo['keywords'])) {
417                                         $siteinfo['keywords'][] = trim($keyword);
418                                 }
419                         }
420                 }
421
422                 $list = $xpath->query('//meta[@property]');
423                 foreach ($list as $node) {
424                         $meta_tag = [];
425                         if ($node->attributes->length) {
426                                 foreach ($node->attributes as $attribute) {
427                                         $meta_tag[$attribute->name] = $attribute->value;
428                                 }
429                         }
430
431                         if (!empty($meta_tag['content'])) {
432                                 $meta_tag['content'] = trim(html_entity_decode($meta_tag['content'], ENT_QUOTES, 'UTF-8'));
433
434                                 switch (strtolower($meta_tag['property'])) {
435                                         case 'og:image':
436                                                 $siteinfo['image'] = $meta_tag['content'];
437                                                 break;
438                                         case 'og:image:url':
439                                                 $siteinfo['image'] = $meta_tag['content'];
440                                                 break;
441                                         case 'og:image:secure_url':
442                                                 $siteinfo['image'] = $meta_tag['content'];
443                                                 break;
444                                         case 'og:title':
445                                                 $siteinfo['title'] = trim($meta_tag['content']);
446                                                 break;
447                                         case 'og:description':
448                                                 $siteinfo['text'] = trim($meta_tag['content']);
449                                                 break;
450                                         case 'og:site_name':
451                                                 $siteinfo['publisher_name'] = trim($meta_tag['content']);
452                                                 break;
453                                         case 'twitter:description':
454                                                 $siteinfo['text'] = trim($meta_tag['content']);
455                                                 break;
456                                         case 'twitter:title':
457                                                 $siteinfo['title'] = trim($meta_tag['content']);
458                                                 break;
459                                         case 'twitter:image':
460                                                 $siteinfo['image'] = $meta_tag['content'];
461                                                 break;
462                                 }
463                         }
464                 }
465
466                 $list = $xpath->query("//script[@type='application/ld+json']");
467                 foreach ($list as $node) {
468                         if (!empty($node->nodeValue)) {
469                                 if ($jsonld = json_decode($node->nodeValue, true)) {
470                                         $siteinfo = self::parseParts($siteinfo, $jsonld);
471                                 }
472                         }
473                 }
474
475                 // Prevent to have a photo type without an image
476                 if ((empty($siteinfo['image']) || !empty($siteinfo['text'])) && ($siteinfo['type'] == 'photo')) {
477                         $siteinfo['type'] = 'link';
478                 }
479
480                 if (!empty($siteinfo['image'])) {
481                         $siteinfo['images'] = $siteinfo['images'] ?? [];
482                         array_unshift($siteinfo['images'], ['url' => $siteinfo['image']]);
483                         unset($siteinfo['image']);
484                 }
485
486                 $siteinfo = self::checkMedia($url, $siteinfo);
487
488                 if (!empty($siteinfo['text']) && mb_strlen($siteinfo['text']) > self::MAX_DESC_COUNT) {
489                         $siteinfo['text'] = mb_substr($siteinfo['text'], 0, self::MAX_DESC_COUNT) . '…';
490                         $pos = mb_strrpos($siteinfo['text'], '.');
491                         if ($pos > self::MIN_DESC_COUNT) {
492                                 $siteinfo['text'] = mb_substr($siteinfo['text'], 0, $pos + 1);
493                         }
494                 }
495
496                 Logger::info('Siteinfo fetched', ['url' => $url, 'siteinfo' => $siteinfo]);
497
498                 Hook::callAll('getsiteinfo', $siteinfo);
499
500                 return $siteinfo;
501         }
502
503         /**
504          * Check the attached media elements.
505          * Fix existing data and add missing data.
506          *
507          * @param string $page_url
508          * @param array $siteinfo
509          * @return void
510          */
511         private static function checkMedia(string $page_url, array $siteinfo)
512         {
513                 if (!empty($siteinfo['images'])) {
514                         array_walk($siteinfo['images'], function (&$image) use ($page_url) {
515                                 // According to the specifications someone could place a picture url into the content field as well.
516                                 // But this doesn't seem to happen in the wild, so we don't cover it here.
517                                 if (!empty($image['url'])) {
518                                         $image['url'] = self::completeUrl($image['url'], $page_url);
519                                         $photodata = Images::getInfoFromURLCached($image['url']);
520                                         if (!empty($photodata) && ($photodata[0] > 50) && ($photodata[1] > 50)) {
521                                                 $image['src'] = $image['url'];
522                                                 $image['width'] = $photodata[0];
523                                                 $image['height'] = $photodata[1];
524                                                 $image['contenttype'] = $photodata['mime'];
525                                                 unset($image['url']);
526                                                 ksort($image);
527                                         } else {
528                                                 $image = [];
529                                         }
530                                 } else {
531                                         $image = [];
532                                 }
533                         });
534
535                         $siteinfo['images'] = array_values(array_filter($siteinfo['images']));
536                 }
537
538                 foreach (['audio', 'video'] as $element) {
539                         if (!empty($siteinfo[$element])) {
540                                 array_walk($siteinfo[$element], function (&$media) use ($page_url, &$siteinfo) {
541                                         $url = '';
542                                         $embed = '';
543                                         $content = '';
544                                         $contenttype = '';
545                                         foreach (['embed', 'content', 'url'] as $field) {
546                                                 if (!empty($media[$field])) {
547                                                         $media[$field] = self::completeUrl($media[$field], $page_url);
548                                                         $type = self::getContentType($media[$field]);
549                                                         if (($type[0] ?? '') == 'text') {
550                                                                 if ($field == 'embed') {
551                                                                         $embed = $media[$field];
552                                                                 } else {
553                                                                         $url = $media[$field];
554                                                                 }
555                                                         } elseif (!empty($type[0])) {
556                                                                 $content = $media[$field];
557                                                                 $contenttype = implode('/', $type);
558                                                         }
559                                                 }
560                                                 unset($media[$field]);
561                                         }
562
563                                         foreach (['image', 'preview'] as $field) {
564                                                 if (!empty($media[$field])) {
565                                                         $media[$field] = self::completeUrl($media[$field], $page_url);
566                                                 }
567                                         }
568
569                                         if (!empty($url)) {
570                                                 $media['url'] = $url;
571                                         }
572                                         if (!empty($embed)) {
573                                                 $media['embed'] = $embed;
574                                                 if (!empty($media['main'])) {
575                                                         $siteinfo['embed'] = $embed;
576                                                 }
577                                         }
578                                         if (!empty($content)) {
579                                                 $media['src'] = $content;
580                                         }
581                                         if (!empty($contenttype)) {
582                                                 $media['contenttype'] = $contenttype;
583                                         }
584                                         if (empty($url) && empty($content) && empty($embed)) {
585                                                 $media = [];
586                                         }
587                                         ksort($media);
588                                 });
589
590                                 $siteinfo[$element] = array_values(array_filter($siteinfo[$element]));
591                         }
592                         if (empty($siteinfo[$element])) {
593                                 unset($siteinfo[$element]);
594                         }
595                 }
596                 return $siteinfo;
597         }
598
599         /**
600          * Convert tags from CSV to an array
601          *
602          * @param string $string Tags
603          * @return array with formatted Hashtags
604          */
605         public static function convertTagsToArray($string)
606         {
607                 $arr_tags = str_getcsv($string);
608                 if (count($arr_tags)) {
609                         // add the # sign to every tag
610                         array_walk($arr_tags, ["self", "arrAddHashes"]);
611
612                         return $arr_tags;
613                 }
614         }
615
616         /**
617          * Add a hasht sign to a string
618          *
619          * This method is used as callback function
620          *
621          * @param string $tag The pure tag name
622          * @param int    $k   Counter for internal use
623          * @return void
624          */
625         private static function arrAddHashes(&$tag, $k)
626         {
627                 $tag = "#" . $tag;
628         }
629
630         /**
631          * Add a scheme to an url
632          *
633          * The src attribute of some html elements (e.g. images)
634          * can miss the scheme so we need to add the correct
635          * scheme
636          *
637          * @param string $url    The url which possibly does have
638          *                       a missing scheme (a link to an image)
639          * @param string $scheme The url with a correct scheme
640          *                       (e.g. the url from the webpage which does contain the image)
641          *
642          * @return string The url with a scheme
643          */
644         private static function completeUrl($url, $scheme)
645         {
646                 $urlarr = parse_url($url);
647
648                 // If the url does allready have an scheme
649                 // we can stop the process here
650                 if (isset($urlarr["scheme"])) {
651                         return($url);
652                 }
653
654                 $schemearr = parse_url($scheme);
655
656                 $complete = $schemearr["scheme"]."://".$schemearr["host"];
657
658                 if (!empty($schemearr["port"])) {
659                         $complete .= ":".$schemearr["port"];
660                 }
661
662                 if (!empty($urlarr["path"])) {
663                         if (strpos($urlarr["path"], "/") !== 0) {
664                                 $complete .= "/";
665                         }
666
667                         $complete .= $urlarr["path"];
668                 }
669
670                 if (!empty($urlarr["query"])) {
671                         $complete .= "?".$urlarr["query"];
672                 }
673
674                 if (!empty($urlarr["fragment"])) {
675                         $complete .= "#".$urlarr["fragment"];
676                 }
677
678                 return($complete);
679         }
680
681         /**
682          * Parse the Json-Ld parts of a web page
683          *
684          * @param array $siteinfo
685          * @param array $jsonld
686          * @return array siteinfo
687          */
688         private static function parseParts(array $siteinfo, array $jsonld)
689         {
690                 if (!empty($jsonld['@graph']) && is_array($jsonld['@graph'])) {
691                         foreach ($jsonld['@graph'] as $part) {
692                                 if (!empty($part)) {
693                                         $siteinfo = self::parseParts($siteinfo, $part);
694                                 }
695                         }
696                 } elseif (!empty($jsonld['@type'])) {
697                         $siteinfo = self::parseJsonLd($siteinfo, $jsonld);
698                 } elseif (!empty($jsonld)) {
699                         $keys = array_keys($jsonld);
700                         $numeric_keys = true;
701                         foreach ($keys as $key) {
702                                 if (!is_int($key)) {
703                                         $numeric_keys = false;
704                                 }
705                         }
706                         if ($numeric_keys) {
707                                 foreach ($jsonld as $part) {
708                                         if (!empty($part)) {
709                                                 $siteinfo = self::parseParts($siteinfo, $part);
710                                         }
711                                 }
712                         }
713                 }
714
715                 array_walk_recursive($siteinfo, function (&$element) {
716                         if (is_string($element)) {
717                                 $element = html_entity_decode($element, ENT_COMPAT, 'UTF-8');
718                         }
719                 });
720
721                 return $siteinfo;
722         }
723
724         /**
725          * Improve the siteinfo with information from the provided JSON-LD information
726          * @see https://jsonld.com/
727          * @see https://schema.org/
728          *
729          * @param array $siteinfo
730          * @param array $jsonld
731          * @return array siteinfo
732          */
733         private static function parseJsonLd(array $siteinfo, array $jsonld)
734         {
735                 $type = JsonLD::fetchElement($jsonld, '@type');
736                 if (empty($type)) {
737                         Logger::info('Empty type', ['url' => $siteinfo['url']]);
738                         return $siteinfo;
739                 }
740
741                 // Silently ignore some types that aren't processed
742                 if (in_array($type, ['SiteNavigationElement', 'JobPosting', 'CreativeWork', 'MusicAlbum',
743                         'WPHeader', 'WPSideBar', 'WPFooter', 'LegalService', 'MusicRecording',
744                         'ItemList', 'BreadcrumbList', 'Blog', 'Dataset', 'Product'])) {
745                         return $siteinfo;
746                 }
747
748                 switch ($type) {
749                         case 'Article':
750                         case 'AdvertiserContentArticle':
751                         case 'NewsArticle':
752                         case 'Report':
753                         case 'SatiricalArticle':
754                         case 'ScholarlyArticle':
755                         case 'SocialMediaPosting':
756                         case 'TechArticle':
757                         case 'ReportageNewsArticle':
758                         case 'SocialMediaPosting':
759                         case 'BlogPosting':
760                         case 'LiveBlogPosting':
761                         case 'DiscussionForumPosting':
762                                 return self::parseJsonLdArticle($siteinfo, $jsonld);
763                         case 'WebPage':
764                         case 'AboutPage':
765                         case 'CheckoutPage':
766                         case 'CollectionPage':
767                         case 'ContactPage':
768                         case 'FAQPage':
769                         case 'ItemPage':
770                         case 'MedicalWebPage':
771                         case 'ProfilePage':
772                         case 'QAPage':
773                         case 'RealEstateListing':
774                         case 'SearchResultsPage':
775                         case 'MediaGallery':                    
776                         case 'ImageGallery':
777                         case 'VideoGallery':
778                         case 'RadioEpisode':
779                         case 'Event':
780                                 return self::parseJsonLdWebPage($siteinfo, $jsonld);
781                         case 'WebSite':
782                                 return self::parseJsonLdWebSite($siteinfo, $jsonld);
783                         case 'Organization':
784                         case 'Airline':
785                         case 'Consortium':
786                         case 'Corporation':
787                         case 'EducationalOrganization':
788                         case 'FundingScheme':
789                         case 'GovernmentOrganization':
790                         case 'LibrarySystem':
791                         case 'LocalBusiness':
792                         case 'MedicalOrganization':
793                         case 'NGO':
794                         case 'NewsMediaOrganization':
795                         case 'Project':
796                         case 'SportsOrganization':
797                         case 'WorkersUnion':
798                                 return self::parseJsonLdWebOrganization($siteinfo, $jsonld);
799                         case 'Person':
800                         case 'Patient':
801                         case 'PerformingGroup':
802                         case 'DanceGroup';
803                         case 'MusicGroup':
804                         case 'TheaterGroup':                    
805                                 return self::parseJsonLdWebPerson($siteinfo, $jsonld);
806                         case 'AudioObject':
807                         case 'Audio':
808                                 return self::parseJsonLdMediaObject($siteinfo, $jsonld, 'audio');
809                         case 'VideoObject':
810                                 return self::parseJsonLdMediaObject($siteinfo, $jsonld, 'video');
811                         case 'ImageObject':
812                                 return self::parseJsonLdMediaObject($siteinfo, $jsonld, 'images');
813                         default:
814                                 Logger::info('Unknown type', ['type' => $type, 'url' => $siteinfo['url']]);
815                                 return $siteinfo;
816                 }
817         }
818
819         /**
820          * Fetch author and publisher data
821          *
822          * @param array $siteinfo
823          * @param array $jsonld
824          * @return array siteinfo
825          */
826         private static function parseJsonLdAuthor(array $siteinfo, array $jsonld)
827         {
828                 $jsonldinfo = [];
829
830                 if (!empty($jsonld['publisher']) && is_array($jsonld['publisher'])) {
831                         $content = JsonLD::fetchElement($jsonld, 'publisher', 'name');
832                         if (!empty($content) && is_string($content)) {
833                                 $jsonldinfo['publisher_name'] = trim($content);
834                         }
835
836                         $content = JsonLD::fetchElement($jsonld, 'publisher', 'url');
837                         if (!empty($content) && is_string($content)) {
838                                 $jsonldinfo['publisher_url'] = trim($content);
839                         }
840
841                         $brand = JsonLD::fetchElement($jsonld, 'publisher', 'brand', '@type', 'Organization');
842                         if (!empty($brand) && is_array($brand)) {
843                                 $content = JsonLD::fetchElement($brand, 'name');
844                                 if (!empty($content) && is_string($content)) {
845                                         $jsonldinfo['publisher_name'] = trim($content);
846                                 }
847
848                                 $content = JsonLD::fetchElement($brand, 'url');
849                                 if (!empty($content) && is_string($content)) {
850                                         $jsonldinfo['publisher_url'] = trim($content);
851                                 }
852
853                                 $content = JsonLD::fetchElement($brand, 'logo', 'url');
854                                 if (!empty($content) && is_string($content)) {
855                                         $jsonldinfo['publisher_img'] = trim($content);
856                                 }
857                         }
858
859                         $logo = JsonLD::fetchElement($jsonld, 'publisher', 'logo');
860                         if (!empty($logo) && is_array($logo)) {
861                                 $content = JsonLD::fetchElement($logo, 'url');
862                                 if (!empty($content) && is_string($content)) {
863                                         $jsonldinfo['publisher_img'] = trim($content);
864                                 }
865                         }
866                 } elseif (!empty($jsonld['publisher']) && is_string($jsonld['publisher'])) {
867                         $jsonldinfo['publisher_name'] = trim($jsonld['publisher']);
868                 }
869
870                 if (!empty($jsonld['author']) && is_array($jsonld['author'])) {
871                         $content = JsonLD::fetchElement($jsonld, 'author', 'name');
872                         if (!empty($content) && is_string($content)) {
873                                 $jsonldinfo['author_name'] = trim($content);
874                         }
875
876                         $content = JsonLD::fetchElement($jsonld, 'author', 'sameAs');
877                         if (!empty($content) && is_string($content)) {
878                                 $jsonldinfo['author_url'] = trim($content);
879                         }
880
881                         $content = JsonLD::fetchElement($jsonld, 'author', 'url');
882                         if (!empty($content) && is_string($content)) {
883                                 $jsonldinfo['author_url'] = trim($content);
884                         }
885
886                         $logo = JsonLD::fetchElement($jsonld, 'author', 'logo');
887                         if (!empty($logo) && is_array($logo)) {
888                                 $content = JsonLD::fetchElement($logo, 'url');
889                                 if (!empty($content) && is_string($content)) {
890                                         $jsonldinfo['author_img'] = trim($content);
891                                 }
892                         }
893                 } elseif (!empty($jsonld['author']) && is_string($jsonld['author'])) {
894                         $jsonldinfo['author_name'] = trim($jsonld['author']);
895                 }
896
897                 Logger::info('Fetched Author information', ['fetched' => $jsonldinfo]);
898
899                 return array_merge($siteinfo, $jsonldinfo);
900         }
901
902         /**
903          * Fetch data from the provided JSON-LD Article type
904          * @see https://schema.org/Article
905          *
906          * @param array $siteinfo
907          * @param array $jsonld
908          * @return array siteinfo
909          */
910         private static function parseJsonLdArticle(array $siteinfo, array $jsonld)
911         {
912                 $jsonldinfo = [];
913
914                 $content = JsonLD::fetchElement($jsonld, 'headline');
915                 if (!empty($content) && is_string($content)) {
916                         $jsonldinfo['title'] = trim($content);
917                 }
918
919                 $content = JsonLD::fetchElement($jsonld, 'alternativeHeadline');
920                 if (!empty($content) && is_string($content) && (($jsonldinfo['title'] ?? '') != trim($content))) {
921                         $jsonldinfo['alternative_title'] = trim($content);
922                 }
923
924                 $content = JsonLD::fetchElement($jsonld, 'description');
925                 if (!empty($content) && is_string($content)) {
926                         $jsonldinfo['text'] = trim($content);
927                 }
928
929                 $content = JsonLD::fetchElement($jsonld, 'thumbnailUrl');
930                 if (!empty($content)) {
931                         $jsonldinfo['image'] = trim($content);
932                 }
933
934                 $content = JsonLD::fetchElement($jsonld, 'image', 'url', '@type', 'ImageObject');
935                 if (!empty($content) && is_string($content)) {
936                         $jsonldinfo['image'] = trim($content);
937                 }
938
939                 if (!empty($jsonld['keywords']) && !is_array($jsonld['keywords'])) {
940                         $content = JsonLD::fetchElement($jsonld, 'keywords');
941                         if (!empty($content)) {
942                                 $siteinfo['keywords'] = [];
943                                 $keywords = explode(',', $content);
944                                 foreach ($keywords as $keyword) {
945                                         $siteinfo['keywords'][] = trim($keyword);
946                                 }
947                         }
948                 } elseif (!empty($jsonld['keywords'])) {
949                         $content = JsonLD::fetchElementArray($jsonld, 'keywords');
950                         if (!empty($content) && is_array($content)) {
951                                 $jsonldinfo['keywords'] = $content;
952                         }
953                 }
954
955                 $jsonldinfo = self::parseJsonLdAuthor($jsonldinfo, $jsonld);
956
957                 Logger::info('Fetched article information', ['url' => $siteinfo['url'], 'fetched' => $jsonldinfo]);
958
959                 return array_merge($siteinfo, $jsonldinfo);
960         }
961
962         /**
963          * Fetch data from the provided JSON-LD WebPage type
964          * @see https://schema.org/WebPage
965          *
966          * @param array $siteinfo
967          * @param array $jsonld
968          * @return array siteinfo
969          */
970         private static function parseJsonLdWebPage(array $siteinfo, array $jsonld)
971         {
972                 $jsonldinfo = [];
973
974                 $content = JsonLD::fetchElement($jsonld, 'name');
975                 if (!empty($content)) {
976                         $jsonldinfo['title'] = trim($content);
977                 }
978
979                 $content = JsonLD::fetchElement($jsonld, 'description');
980                 if (!empty($content)) {
981                         $jsonldinfo['text'] = trim($content);
982                 }
983
984                 $content = JsonLD::fetchElement($jsonld, 'image');
985                 if (!empty($content)) {
986                         $jsonldinfo['image'] = trim($content);
987                 }
988
989                 $content = JsonLD::fetchElement($jsonld, 'thumbnailUrl');
990                 if (!empty($content)) {
991                         $jsonldinfo['image'] = trim($content);
992                 }
993
994                 $jsonldinfo = self::parseJsonLdAuthor($jsonldinfo, $jsonld);
995
996                 Logger::info('Fetched WebPage information', ['url' => $siteinfo['url'], 'fetched' => $jsonldinfo]);
997
998                 return array_merge($siteinfo, $jsonldinfo);
999         }
1000
1001         /**
1002          * Fetch data from the provided JSON-LD WebSite type
1003          * @see https://schema.org/WebSite
1004          *
1005          * @param array $siteinfo
1006          * @param array $jsonld
1007          * @return array siteinfo
1008          */
1009         private static function parseJsonLdWebSite(array $siteinfo, array $jsonld)
1010         {
1011                 $jsonldinfo = [];
1012
1013                 $content = JsonLD::fetchElement($jsonld, 'name');
1014                 if (!empty($content)) {
1015                         $jsonldinfo['publisher_name'] = trim($content);
1016                 }
1017
1018                 $content = JsonLD::fetchElement($jsonld, 'description');
1019                 if (!empty($content)) {
1020                         $jsonldinfo['publisher_description'] = trim($content);
1021                 }
1022
1023                 $content = JsonLD::fetchElement($jsonld, 'url');
1024                 if (!empty($content)) {
1025                         $jsonldinfo['publisher_url'] = trim($content);
1026                 }
1027
1028                 $content = JsonLD::fetchElement($jsonld, 'thumbnailUrl');
1029                 if (!empty($content)) {
1030                         $jsonldinfo['image'] = trim($content);
1031                 }
1032
1033                 $jsonldinfo = self::parseJsonLdAuthor($jsonldinfo, $jsonld);
1034
1035                 Logger::info('Fetched WebSite information', ['url' => $siteinfo['url'], 'fetched' => $jsonldinfo]);
1036                 return array_merge($siteinfo, $jsonldinfo);
1037         }
1038
1039         /**
1040          * Fetch data from the provided JSON-LD Organization type
1041          * @see https://schema.org/Organization
1042          *
1043          * @param array $siteinfo
1044          * @param array $jsonld
1045          * @return array siteinfo
1046          */
1047         private static function parseJsonLdWebOrganization(array $siteinfo, array $jsonld)
1048         {
1049                 $jsonldinfo = [];
1050
1051                 $content = JsonLD::fetchElement($jsonld, 'name');
1052                 if (!empty($content)) {
1053                         $jsonldinfo['publisher_name'] = trim($content);
1054                 }
1055
1056                 $content = JsonLD::fetchElement($jsonld, 'description');
1057                 if (!empty($content)) {
1058                         $jsonldinfo['publisher_description'] = trim($content);
1059                 }
1060
1061                 $content = JsonLD::fetchElement($jsonld, 'url');
1062                 if (!empty($content)) {
1063                         $jsonldinfo['publisher_url'] = trim($content);
1064                 }
1065
1066                 $content = JsonLD::fetchElement($jsonld, 'logo', 'url', '@type', 'ImageObject');
1067                 if (!empty($content)) {
1068                         $jsonldinfo['publisher_img'] = trim($content);
1069                 }
1070
1071                 $content = JsonLD::fetchElement($jsonld, 'brand', 'name', '@type', 'Organization');
1072                 if (!empty($content)) {
1073                         $jsonldinfo['publisher_name'] = trim($content);
1074                 }
1075
1076                 $content = JsonLD::fetchElement($jsonld, 'brand', 'url', '@type', 'Organization');
1077                 if (!empty($content)) {
1078                         $jsonldinfo['publisher_url'] = trim($content);
1079                 }
1080
1081                 Logger::info('Fetched Organization information', ['url' => $siteinfo['url'], 'fetched' => $jsonldinfo]);
1082                 return array_merge($siteinfo, $jsonldinfo);
1083         }
1084
1085         /**
1086          * Fetch data from the provided JSON-LD Person type
1087          * @see https://schema.org/Person
1088          *
1089          * @param array $siteinfo
1090          * @param array $jsonld
1091          * @return array siteinfo
1092          */
1093         private static function parseJsonLdWebPerson(array $siteinfo, array $jsonld)
1094         {
1095                 $jsonldinfo = [];
1096
1097                 $content = JsonLD::fetchElement($jsonld, 'name');
1098                 if (!empty($content)) {
1099                         $jsonldinfo['author_name'] = trim($content);
1100                 }
1101
1102                 $content = JsonLD::fetchElement($jsonld, 'description');
1103                 if (!empty($content)) {
1104                         $jsonldinfo['author_description'] = trim($content);
1105                 }
1106
1107                 $content = JsonLD::fetchElement($jsonld, 'sameAs');
1108                 if (!empty($content) && is_string($content)) {
1109                         $jsonldinfo['author_url'] = trim($content);
1110                 }
1111
1112                 $content = JsonLD::fetchElement($jsonld, 'url');
1113                 if (!empty($content)) {
1114                         $jsonldinfo['author_url'] = trim($content);
1115                 }
1116
1117                 $content = JsonLD::fetchElement($jsonld, 'image', 'url', '@type', 'ImageObject');
1118                 if (!empty($content)) {
1119                         $jsonldinfo['author_img'] = trim($content);
1120                 }
1121
1122                 Logger::info('Fetched Person information', ['url' => $siteinfo['url'], 'fetched' => $jsonldinfo]);
1123                 return array_merge($siteinfo, $jsonldinfo);
1124         }
1125
1126         /**
1127          * Fetch data from the provided JSON-LD MediaObject type
1128          * @see https://schema.org/MediaObject
1129          *
1130          * @param array $siteinfo
1131          * @param array $jsonld
1132          * @return array siteinfo
1133          */
1134         private static function parseJsonLdMediaObject(array $siteinfo, array $jsonld, string $name)
1135         {
1136                 $media = [];
1137
1138                 $content = JsonLD::fetchElement($jsonld, 'caption');
1139                 if (!empty($content)) {
1140                         $media['caption'] = trim($content);
1141                 }
1142
1143                 $content = JsonLD::fetchElement($jsonld, 'url');
1144                 if (!empty($content)) {
1145                         $media['url'] = trim($content);
1146                 }
1147
1148                 $content = JsonLD::fetchElement($jsonld, 'mainEntityOfPage');
1149                 if (!empty($content)) {
1150                         $media['main'] = Strings::compareLink($content, $siteinfo['url']);
1151                 }
1152
1153                 $content = JsonLD::fetchElement($jsonld, 'description');
1154                 if (!empty($content)) {
1155                         $media['description'] = trim($content);
1156                 }
1157
1158                 $content = JsonLD::fetchElement($jsonld, 'name');
1159                 if (!empty($content) && (($media['description'] ?? '') != trim($content))) {
1160                         $media['name'] = trim($content);
1161                 }
1162
1163                 $content = JsonLD::fetchElement($jsonld, 'contentUrl');
1164                 if (!empty($content)) {
1165                         $media['content'] = trim($content);
1166                 }
1167
1168                 $content = JsonLD::fetchElement($jsonld, 'embedUrl');
1169                 if (!empty($content)) {
1170                         $media['embed'] = trim($content);
1171                 }
1172
1173                 $content = JsonLD::fetchElement($jsonld, 'height');
1174                 if (!empty($content)) {
1175                         $media['height'] = trim($content);
1176                 }
1177
1178                 $content = JsonLD::fetchElement($jsonld, 'width');
1179                 if (!empty($content)) {
1180                         $media['width'] = trim($content);
1181                 }
1182
1183                 $content = JsonLD::fetchElement($jsonld, 'image');
1184                 if (!empty($content)) {
1185                         $media['image'] = trim($content);
1186                 }
1187
1188                 $content = JsonLD::fetchElement($jsonld, 'thumbnailUrl');
1189                 if (!empty($content) && (($media['image'] ?? '') != trim($content))) {
1190                         if (!empty($media['image'])) {
1191                                 $media['preview'] = trim($content);
1192                         } else {
1193                                 $media['image'] = trim($content);
1194                         }
1195                 }
1196
1197                 Logger::info('Fetched Media information', ['url' => $siteinfo['url'], 'fetched' => $media]);
1198                 $siteinfo[$name][] = $media;
1199                 return $siteinfo;
1200         }
1201 }