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