]> git.mxchange.org Git - friendica.git/blob - src/Content/Text/BBCode.php
Issue 11846: Fix client behaviour when following hash tags
[friendica.git] / src / Content / Text / BBCode.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\Content\Text;
23
24 use DOMDocument;
25 use DOMXPath;
26 use Exception;
27 use Friendica\Content\ContactSelector;
28 use Friendica\Content\Item;
29 use Friendica\Content\OEmbed;
30 use Friendica\Content\PageInfo;
31 use Friendica\Content\Smilies;
32 use Friendica\Core\Hook;
33 use Friendica\Core\Logger;
34 use Friendica\Core\Protocol;
35 use Friendica\Core\Renderer;
36 use Friendica\DI;
37 use Friendica\Model\Contact;
38 use Friendica\Model\Event;
39 use Friendica\Model\Photo;
40 use Friendica\Model\Post;
41 use Friendica\Model\Tag;
42 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
43 use Friendica\Network\HTTPClient\Client\HttpClientOptions;
44 use Friendica\Object\Image;
45 use Friendica\Protocol\Activity;
46 use Friendica\Util\Images;
47 use Friendica\Util\Map;
48 use Friendica\Util\ParseUrl;
49 use Friendica\Util\Proxy;
50 use Friendica\Util\Strings;
51 use Friendica\Util\XML;
52
53 class BBCode
54 {
55         // Update this value to the current date whenever changes are made to BBCode::convert
56         const VERSION = '2021-07-28';
57
58         const INTERNAL = 0;
59         const EXTERNAL = 1;
60         const API = 2;
61         const DIASPORA = 3;
62         const CONNECTORS = 4;
63         const OSTATUS = 7;
64         const TWITTER = 8;
65         const BACKLINK = 8;
66         const ACTIVITYPUB = 9;
67
68         const TOP_ANCHOR = '<br class="top-anchor">';
69         const BOTTOM_ANCHOR = '<br class="button-anchor">';
70         /**
71          * Fetches attachment data that were generated the old way
72          *
73          * @param string $body Message body
74          * @return array
75          *                     'type' -> Message type ('link', 'video', 'photo')
76          *                     'text' -> Text before the shared message
77          *                     'after' -> Text after the shared message
78          *                     'image' -> Preview image of the message
79          *                     'url' -> Url to the attached message
80          *                     'title' -> Title of the attachment
81          *                     'description' -> Description of the attachment
82          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
83          */
84         private static function getOldAttachmentData(string $body): array
85         {
86                 $post = [];
87
88                 // Simplify image codes
89                 $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
90
91                 if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism", $body, $attached, PREG_SET_ORDER)) {
92                         foreach ($attached as $data) {
93                                 if (!in_array($data[1], ['type-link', 'type-video', 'type-photo'])) {
94                                         continue;
95                                 }
96
97                                 $post['type'] = substr($data[1], 5);
98
99                                 $pos = strpos($body, $data[0]);
100                                 if ($pos > 0) {
101                                         $post['text'] = trim(substr($body, 0, $pos));
102                                         $post['after'] = trim(substr($body, $pos + strlen($data[0])));
103                                 } else {
104                                         $post['text'] = trim(str_replace($data[0], '', $body));
105                                         $post['after'] = '';
106                                 }
107
108                                 $attacheddata = $data[2];
109
110                                 if (preg_match("/\[img\](.*?)\[\/img\]/ism", $attacheddata, $matches)) {
111
112                                         $picturedata = Images::getInfoFromURLCached($matches[1]);
113
114                                         if ($picturedata) {
115                                                 if (($picturedata[0] >= 500) && ($picturedata[0] >= $picturedata[1])) {
116                                                         $post['image'] = $matches[1];
117                                                 } else {
118                                                         $post['preview'] = $matches[1];
119                                                 }
120                                         }
121                                 }
122
123                                 if (preg_match("/\[bookmark\=(.*?)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
124                                         $post['url'] = $matches[1];
125                                         $post['title'] = $matches[2];
126                                 }
127                                 if (!empty($post['url']) && (in_array($post['type'], ['link', 'video']))
128                                         && preg_match("/\[url\=(.*?)\](.*?)\[\/url\]/ism", $attacheddata, $matches)) {
129                                         $post['url'] = $matches[1];
130                                 }
131
132                                 // Search for description
133                                 if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches)) {
134                                         $post['description'] = $matches[1];
135                                 }
136                         }
137                 }
138                 return $post;
139         }
140
141         /**
142          * Fetches attachment data that were generated with the "attachment" element
143          *
144          * @param string $body Message body
145          * @return array
146          *                     'type' -> Message type ('link', 'video', 'photo')
147          *                     'text' -> Text before the shared message
148          *                     'after' -> Text after the shared message
149          *                     'image' -> Preview image of the message
150          *                     'url' -> Url to the attached message
151          *                     'title' -> Title of the attachment
152          *                     'description' -> Description of the attachment
153          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
154          */
155         public static function getAttachmentData(string $body): array
156         {
157                 DI::profiler()->startRecording('rendering');
158                 $data = [
159                         'type'          => '',
160                         'text'          => '',
161                         'after'         => '',
162                         'image'         => null,
163                         'url'           => '',
164                         'author_name'   => '',
165                         'author_url'    => '',
166                         'provider_name' => '',
167                         'provider_url'  => '',
168                         'title'         => '',
169                         'description'   => '',
170                 ];
171
172                 if (!preg_match("/(.*)\[attachment(.*?)\](.*?)\[\/attachment\](.*)/ism", $body, $match)) {
173                         DI::profiler()->stopRecording();
174                         return self::getOldAttachmentData($body);
175                 }
176
177                 $attributes = $match[2];
178
179                 $data['text'] = trim($match[1]);
180
181                 foreach (['type', 'url', 'title', 'image', 'preview', 'publisher_name', 'publisher_url', 'author_name', 'author_url'] as $field) {
182                         preg_match('/' . preg_quote($field, '/') . '=("|\')(.*?)\1/ism', $attributes, $matches);
183                         $value = $matches[2] ?? '';
184
185                         if ($value != '') {
186                                 switch ($field) {
187                                         case 'publisher_name':
188                                                 $data['provider_name'] = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
189                                                 break;
190
191                                         case 'publisher_url':
192                                                 $data['provider_url'] = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
193                                                 break;
194
195                                         case 'author_name':
196                                                 $data['author_name'] = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
197                                                 if ($data['provider_name'] == $data['author_name']) {
198                                                         $data['author_name'] = '';
199                                                 }
200                                                 break;
201
202                                         case 'author_url':
203                                                 $data['author_url'] = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
204                                                 if ($data['provider_url'] == $data['author_url']) {
205                                                         $data['author_url'] = '';
206                                                 }
207                                                 break;
208
209                                         case 'title':
210                                                 $value = self::convert(html_entity_decode($value, ENT_QUOTES, 'UTF-8'), false, true);
211                                                 $value = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
212                                                 $value = str_replace(['[', ']'], ['&#91;', '&#93;'], $value);
213                                                 $data['title'] = $value;
214
215                                         default:
216                                                 $data[$field] = html_entity_decode($value, ENT_QUOTES, 'UTF-8');
217                                                 break;
218                                 }
219                         }
220                 }
221
222                 if (!in_array($data['type'], ['link', 'audio', 'photo', 'video'])) {
223                         DI::profiler()->stopRecording();
224                         return [];
225                 }
226
227                 $data['description'] = trim($match[3]);
228
229                 $data['after'] = trim($match[4]);
230
231                 $parts = parse_url($data['url']);
232                 if (!empty($parts['scheme']) && !empty($parts['host'])) {
233                         if (empty($data['provider_name'])) {
234                                 $data['provider_name'] = $parts['host'];
235                         }
236                         if (empty($data['provider_url']) || empty(parse_url($data['provider_url'], PHP_URL_SCHEME))) {
237                                 $data['provider_url'] = $parts['scheme'] . '://' . $parts['host'];
238
239                                 if (!empty($parts['port'])) {
240                                         $data['provider_url'] .= ':' . $parts['port'];
241                                 }
242                         }
243                 }
244
245                 DI::profiler()->stopRecording();
246                 return $data;
247         }
248
249         public static function getAttachedData(string $body, array $item = []): array
250         {
251                 /*
252                 - text:
253                 - type: link, video, photo
254                 - title:
255                 - url:
256                 - image:
257                 - description:
258                 - (thumbnail)
259                 */
260
261                 DI::profiler()->startRecording('rendering');
262                 $has_title = !empty($item['title']);
263                 $plink = $item['plink'] ?? '';
264                 $post = self::getAttachmentData($body);
265
266                 // Get all linked images with alternative image description
267                 if (preg_match_all("/\[img=(http[^\[\]]*)\]([^\[\]]*)\[\/img\]/Usi", $body, $pictures, PREG_SET_ORDER)) {
268                         foreach ($pictures as $picture) {
269                                 if (Photo::isLocal($picture[1])) {
270                                         $post['images'][] = ['url' => str_replace('-1.', '-0.', $picture[1]), 'description' => $picture[2]];
271                                 } else {
272                                         $post['remote_images'][] = ['url' => $picture[1], 'description' => $picture[2]];
273                                 }
274                         }
275                         if (!empty($post['images']) && !empty($post['images'][0]['description'])) {
276                                 $post['image_description'] = $post['images'][0]['description'];
277                         }
278                 }
279
280                 if (preg_match_all("/\[img\]([^\[\]]*)\[\/img\]/Usi", $body, $pictures, PREG_SET_ORDER)) {
281                         foreach ($pictures as $picture) {
282                                 if (Photo::isLocal($picture[1])) {
283                                         $post['images'][] = ['url' => str_replace('-1.', '-0.', $picture[1]), 'description' => ''];
284                                 } else {
285                                         $post['remote_images'][] = ['url' => $picture[1], 'description' => ''];
286                                 }
287                         }
288                 }
289
290                 if (!isset($post['type'])) {
291                         $post['text'] = $body;
292                 }
293
294                 // Simplify image codes
295                 $post['text'] = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $post['text']);
296                 $post['text'] = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $post['text']);
297
298                 // if nothing is found, it maybe having an image.
299                 if (!isset($post['type'])) {
300                         if (preg_match_all("#\[url=([^\]]+?)\]\s*\[img\]([^\[]+?)\[/img\]\s*\[/url\]#ism", $post['text'], $pictures, PREG_SET_ORDER)) {
301                                 if ((count($pictures) == 1) && !$has_title) {
302                                         if (!empty($item['object-type']) && ($item['object-type'] == Activity\ObjectType::IMAGE)) {
303                                                 // Replace the preview picture with the real picture
304                                                 $url = str_replace('-1.', '-0.', $pictures[0][2]);
305                                                 $data = ['url' => $url, 'type' => 'photo'];
306                                         } else {
307                                                 // Checking, if the link goes to a picture
308                                                 $data = ParseUrl::getSiteinfoCached($pictures[0][1]);
309                                         }
310
311                                         // Workaround:
312                                         // Sometimes photo posts to the own album are not detected at the start.
313                                         // So we seem to cannot use the cache for these cases. That's strange.
314                                         if (($data['type'] != 'photo') && strstr($pictures[0][1], '/photos/')) {
315                                                 $data = ParseUrl::getSiteinfo($pictures[0][1]);
316                                         }
317
318                                         if ($data['type'] == 'photo') {
319                                                 $post['type'] = 'photo';
320                                                 if (isset($data['images'][0])) {
321                                                         $post['image'] = $data['images'][0]['src'];
322                                                         $post['url'] = $data['url'];
323                                                 } else {
324                                                         $post['image'] = $data['url'];
325                                                 }
326
327                                                 $post['preview'] = $pictures[0][2];
328                                                 $post['text'] = trim(str_replace($pictures[0][0], '', $post['text']));
329                                         } else {
330                                                 $imgdata = Images::getInfoFromURLCached($pictures[0][1]);
331                                                 if (($imgdata) && substr($imgdata['mime'], 0, 6) == 'image/') {
332                                                         $post['type'] = 'photo';
333                                                         $post['image'] = $pictures[0][1];
334                                                         $post['preview'] = $pictures[0][2];
335                                                         $post['text'] = trim(str_replace($pictures[0][0], '', $post['text']));
336                                                 }
337                                         }
338                                 } elseif (count($pictures) > 0) {
339                                         if (count($pictures) > 4) {
340                                                 $post['type'] = 'link';
341                                                 $post['url'] = $plink;
342                                         } else {
343                                                 $post['type'] = 'photo';
344                                         }
345
346                                         $post['image'] = $pictures[0][2];
347
348                                         foreach ($pictures as $picture) {
349                                                 $post['text'] = trim(str_replace($picture[0], '', $post['text']));
350                                         }
351                                 }
352                         } elseif (preg_match_all("(\[img\](.*?)\[\/img\])ism", $post['text'], $pictures, PREG_SET_ORDER)) {
353                                 if ($has_title) {
354                                         $post['type'] = 'link';
355                                         $post['url'] = $plink;
356                                 } else {
357                                         $post['type'] = 'photo';
358                                 }
359
360                                 $post['image'] = $pictures[0][1];
361                                 foreach ($pictures as $picture) {
362                                         $post['text'] = trim(str_replace($picture[0], '', $post['text']));
363                                 }
364                         }
365
366                         // Test for the external links
367                         preg_match_all("(\[url\](.*?)\[\/url\])ism", $post['text'], $links1, PREG_SET_ORDER);
368                         preg_match_all("(\[url\=(.*?)\].*?\[\/url\])ism", $post['text'], $links2, PREG_SET_ORDER);
369
370                         $links = array_merge($links1, $links2);
371
372                         // If there is only a single one, then use it.
373                         // This should cover link posts via API.
374                         if ((count($links) == 1) && !isset($post['preview']) && !$has_title) {
375                                 $post['type'] = 'link';
376                                 $post['url'] = $links[0][1];
377                         }
378
379                         // Simplify "video" element
380                         $post['text'] = preg_replace('(\[video.*?\ssrc\s?=\s?([^\s\]]+).*?\].*?\[/video\])ism', '[video]$1[/video]', $post['text']);
381
382                         // Now count the number of external media links
383                         preg_match_all("(\[vimeo\](.*?)\[\/vimeo\])ism", $post['text'], $links1, PREG_SET_ORDER);
384                         preg_match_all("(\[youtube\\](.*?)\[\/youtube\\])ism", $post['text'], $links2, PREG_SET_ORDER);
385                         preg_match_all("(\[video\\](.*?)\[\/video\\])ism", $post['text'], $links3, PREG_SET_ORDER);
386                         preg_match_all("(\[audio\\](.*?)\[\/audio\\])ism", $post['text'], $links4, PREG_SET_ORDER);
387
388                         // Add them to the other external links
389                         $links = array_merge($links, $links1, $links2, $links3, $links4);
390
391                         // Are there more than one?
392                         if (count($links) > 1) {
393                                 // The post will be the type "text", which means a blog post
394                                 unset($post['type']);
395                                 $post['url'] = $plink;
396                         }
397
398                         if (!isset($post['type'])) {
399                                 $post['type'] = 'text';
400                         }
401
402                         if (($post['type'] == 'photo') && empty($post['images']) && !empty($post['remote_images'])) {
403                                 $post['images'] = $post['remote_images'];
404                                 $post['image'] = $post['images'][0]['url'];
405                                 if (!empty($post['images']) && !empty($post['images'][0]['description'])) {
406                                         $post['image_description'] = $post['images'][0]['description'];
407                                 }
408                         }
409                         unset($post['remote_images']);
410                 } elseif (isset($post['url']) && ($post['type'] == 'video')) {
411                         $data = ParseUrl::getSiteinfoCached($post['url']);
412
413                         if (isset($data['images'][0])) {
414                                 $post['image'] = $data['images'][0]['src'];
415                         }
416                 } elseif (preg_match_all("#\[url=([^\]]+?)\]\s*\[img\]([^\[]+?)\[/img\]\s*\[/url\]#ism", $post['text'], $pictures, PREG_SET_ORDER)) {
417                         foreach ($pictures as $picture) {
418                                 $post['text'] = trim(str_replace($picture[0], '', $post['text']));
419                         }
420                 }
421
422                 DI::profiler()->stopRecording();
423                 return $post;
424         }
425
426         /**
427          * Remove [attachment] BBCode and replaces it with a regular [url]
428          *
429          * @param string  $body
430          * @param boolean $no_link_desc No link description
431          * @return string with replaced body
432          */
433         public static function removeAttachment(string $body, bool $no_link_desc = false): string
434         {
435                 return preg_replace_callback("/\s*\[attachment (.*?)\](.*?)\[\/attachment\]\s*/ism",
436                         function ($match) use ($body, $no_link_desc) {
437                                 $attach_data = self::getAttachmentData($match[0]);
438                                 if (empty($attach_data['url'])) {
439                                         return $match[0];
440                                 } elseif (strpos(str_replace($match[0], '', $body), $attach_data['url']) !== false) {
441                                         return '';
442                                 } elseif (empty($attach_data['title']) || $no_link_desc) {
443                                         return " \n[url]" . $attach_data['url'] . "[/url]\n";
444                                 } else {
445                                         return " \n[url=" . $attach_data['url'] . ']' . $attach_data['title'] . "[/url]\n";
446                                 }
447                 }, $body);
448         }
449
450         /**
451          * Converts a BBCode text into plaintext
452          *
453          * @param string $text
454          * @param bool $keep_urls Whether to keep URLs in the resulting plaintext
455          * @return string
456          */
457         public static function toPlaintext(string $text, bool $keep_urls = true): string
458         {
459                 DI::profiler()->startRecording('rendering');
460                 // Remove pictures in advance to avoid unneeded proxy calls
461                 $text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $2 ', $text);
462                 $text = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $text);
463
464                 // Remove attachment
465                 $text = self::removeAttachment($text);
466
467                 $naked_text = HTML::toPlaintext(self::convert($text, false, 0, true), 0, !$keep_urls);
468
469                 DI::profiler()->stopRecording();
470                 return $naked_text;
471         }
472
473         private static function proxyUrl(string $image, int $simplehtml = self::INTERNAL, int $uriid = 0, string $size = ''): string
474         {
475                 // Only send proxied pictures to API and for internal display
476                 if (!in_array($simplehtml, [self::INTERNAL, self::API])) {
477                         return $image;
478                 } elseif ($uriid > 0) {
479                         return Post\Link::getByLink($uriid, $image, $size);
480                 } else {
481                         return Proxy::proxifyUrl($image, $size);
482                 }
483         }
484
485         /**
486          * This function changing the visual size (not the real size) of images.
487          * The function does not work for pictures with an alternate text description.
488          * This could only be changed by using some new "img" BBCode format.
489          *
490          * @param string $srctext The body with images
491          * @return string The body with possibly scaled images
492          */
493         public static function scaleExternalImages(string $srctext): string
494         {
495                 DI::profiler()->startRecording('rendering');
496                 $s = $srctext;
497
498                 // Simplify image links
499                 $s = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $s);
500
501                 $matches = null;
502                 $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
503                 if ($c) {
504                         foreach ($matches as $mtch) {
505                                 Logger::debug('scale_external_image', ['image' => $mtch[1]]);
506
507                                 $hostname = str_replace('www.', '', substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3));
508                                 if (stristr($mtch[1], $hostname)) {
509                                         continue;
510                                 }
511
512                                 $curlResult = DI::httpClient()->get($mtch[1], HttpClientAccept::IMAGE);
513                                 if (!$curlResult->isSuccess()) {
514                                         continue;
515                                 }
516
517                                 Logger::debug('Got picture', ['Content-Type' => $curlResult->getHeader('Content-Type'), 'url' => $mtch[1]]);
518
519                                 $i = $curlResult->getBody();
520                                 $type = $curlResult->getContentType();
521                                 $type = Images::getMimeTypeByData($i, $mtch[1], $type);
522
523                                 if ($i) {
524                                         $Image = new Image($i, $type);
525                                         if ($Image->isValid()) {
526                                                 $orig_width = $Image->getWidth();
527                                                 $orig_height = $Image->getHeight();
528
529                                                 if ($orig_width > 640 || $orig_height > 640) {
530                                                         $Image->scaleDown(640);
531                                                         $new_width = $Image->getWidth();
532                                                         $new_height = $Image->getHeight();
533                                                         Logger::debug('External images scaled', ['orig_width' => $orig_width, 'new_width' => $new_width, 'orig_height' => $orig_height, 'new_height' => $new_height, 'match' => $mtch[0]]);
534                                                         $s = str_replace(
535                                                                 $mtch[0],
536                                                                 '[img=' . $new_width . 'x' . $new_height. ']' . $mtch[1] . '[/img]'
537                                                                 . "\n",
538                                                                 $s
539                                                         );
540                                                         Logger::debug('New string', ['image' => $s]);
541                                                 }
542                                         }
543                                 }
544                         }
545                 }
546
547                 DI::profiler()->stopRecording();
548                 return $s;
549         }
550
551         /**
552          * Truncates imported message body string length to max_import_size
553          *
554          * The purpose of this function is to apply system message length limits to
555          * imported messages without including any embedded photos in the length
556          *
557          * @param string $body
558          * @return string
559          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
560          */
561         public static function limitBodySize(string $body): string
562         {
563                 DI::profiler()->startRecording('rendering');
564                 $maxlen = DI::config()->get('config', 'max_import_size', 0);
565
566                 // If the length of the body, including the embedded images, is smaller
567                 // than the maximum, then don't waste time looking for the images
568                 if ($maxlen && (strlen($body) > $maxlen)) {
569
570                         Logger::info('the total body length exceeds the limit', ['maxlen' => $maxlen, 'body_len' => strlen($body)]);
571
572                         $orig_body = $body;
573                         $new_body = '';
574                         $textlen = 0;
575
576                         $img_start = strpos($orig_body, '[img');
577                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
578                         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
579                         while (($img_st_close !== false) && ($img_end !== false)) {
580
581                                 $img_st_close++; // make it point to AFTER the closing bracket
582                                 $img_end += $img_start;
583                                 $img_end += strlen('[/img]');
584
585                                 if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
586                                         // This is an embedded image
587
588                                         if (($textlen + $img_start) > $maxlen) {
589                                                 if ($textlen < $maxlen) {
590                                                         Logger::debug('the limit happens before an embedded image');
591                                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
592                                                         $textlen = $maxlen;
593                                                 }
594                                         } else {
595                                                 $new_body = $new_body . substr($orig_body, 0, $img_start);
596                                                 $textlen += $img_start;
597                                         }
598
599                                         $new_body = $new_body . substr($orig_body, $img_start, $img_end - $img_start);
600                                 } else {
601
602                                         if (($textlen + $img_end) > $maxlen) {
603                                                 if ($textlen < $maxlen) {
604                                                         Logger::debug('the limit happens before the end of a non-embedded image');
605                                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
606                                                         $textlen = $maxlen;
607                                                 }
608                                         } else {
609                                                 $new_body = $new_body . substr($orig_body, 0, $img_end);
610                                                 $textlen += $img_end;
611                                         }
612                                 }
613                                 $orig_body = substr($orig_body, $img_end);
614
615                                 if ($orig_body === false) {
616                                         // in case the body ends on a closing image tag
617                                         $orig_body = '';
618                                 }
619
620                                 $img_start = strpos($orig_body, '[img');
621                                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
622                                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
623                         }
624
625                         if (($textlen + strlen($orig_body)) > $maxlen) {
626                                 if ($textlen < $maxlen) {
627                                         Logger::debug('the limit happens after the end of the last image');
628                                         $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
629                                 }
630                         } else {
631                                 Logger::debug('the text size with embedded images extracted did not violate the limit');
632                                 $new_body = $new_body . $orig_body;
633                         }
634
635                         DI::profiler()->stopRecording();
636                         return $new_body;
637                 } else {
638                         DI::profiler()->stopRecording();
639                         return $body;
640                 }
641         }
642
643         /**
644          * Processes [attachment] tags
645          *
646          * Note: Can produce a [bookmark] tag in the returned string
647          *
648          * @param string  $text
649          * @param integer $simplehtml
650          * @param bool    $tryoembed
651          * @param array   $data
652          * @param int     $uriid
653          * @return string
654          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
655          */
656         public static function convertAttachment(string $text, int $simplehtml = self::INTERNAL, bool $tryoembed = true, array $data = [], int $uriid = 0): string
657         {
658                 DI::profiler()->startRecording('rendering');
659                 $data = $data ?: self::getAttachmentData($text);
660                 if (empty($data) || empty($data['url'])) {
661                         DI::profiler()->stopRecording();
662                         return $text;
663                 }
664
665                 if (isset($data['title'])) {
666                         $data['title'] = strip_tags($data['title']);
667                         $data['title'] = str_replace(['http://', 'https://'], '', $data['title']);
668                 } else {
669                         $data['title'] = '';
670                 }
671
672                 if (((strpos($data['text'], '[img=') !== false) || (strpos($data['text'], '[img]') !== false) || DI::config()->get('system', 'always_show_preview')) && !empty($data['image'])) {
673                         $data['preview'] = $data['image'];
674                         $data['image'] = '';
675                 }
676
677                 $return = '';
678                 try {
679                         if ($tryoembed && OEmbed::isAllowedURL($data['url'])) {
680                                 $return = OEmbed::getHTML($data['url'], $data['title']);
681                         } else {
682                                 throw new Exception('OEmbed is disabled for this attachment.');
683                         }
684                 } catch (Exception $e) {
685                         $data['title'] = ($data['title'] ?? '') ?: $data['url'];
686
687                         if ($simplehtml != self::CONNECTORS) {
688                                 $return = sprintf('<div class="type-%s">', $data['type']);
689                         }
690
691                         if (!empty($data['title']) && !empty($data['url'])) {
692                                 if (!empty($data['image']) && empty($data['text']) && ($data['type'] == 'photo')) {
693                                         $return .= sprintf('<a href="%s" target="_blank" rel="noopener noreferrer"><img src="%s" alt="" title="%s" class="attachment-image" /></a>', $data['url'], self::proxyUrl($data['image'], $simplehtml, $uriid), $data['title']);
694                                 } else {
695                                         if (!empty($data['image'])) {
696                                                 $return .= sprintf('<a href="%s" target="_blank" rel="noopener noreferrer"><img src="%s" alt="" title="%s" class="attachment-image" /></a><br>', $data['url'], self::proxyUrl($data['image'], $simplehtml, $uriid), $data['title']);
697                                         } elseif (!empty($data['preview'])) {
698                                                 $return .= sprintf('<a href="%s" target="_blank" rel="noopener noreferrer"><img src="%s" alt="" title="%s" class="attachment-preview" /></a><br>', $data['url'], self::proxyUrl($data['preview'], $simplehtml, $uriid), $data['title']);
699                                         }
700                                         $return .= sprintf('<h4><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></h4>', $data['url'], $data['title']);
701                                 }
702                         }
703
704                         if (!empty($data['description']) && $data['description'] != $data['title']) {
705                                 // Sanitize the HTML
706                                 $return .= sprintf('<blockquote>%s</blockquote>', trim(HTML::purify($data['description'])));
707                         }
708
709                         if (!empty($data['provider_url']) && !empty($data['provider_name'])) {
710                                 if (!empty($data['author_name'])) {
711                                         $return .= sprintf('<sup><a href="%s" target="_blank" rel="noopener noreferrer">%s (%s)</a></sup>', $data['provider_url'], $data['author_name'], $data['provider_name']);
712                                 } else {
713                                         $return .= sprintf('<sup><a href="%s" target="_blank" rel="noopener noreferrer">%s</a></sup>', $data['provider_url'], $data['provider_name']);
714                                 }
715                         }
716
717                         if ($simplehtml != self::CONNECTORS) {
718                                 $return .= '</div>';
719                         }
720                 }
721
722                 DI::profiler()->stopRecording();
723                 return trim(($data['text'] ?? '') . ' ' . $return . ' ' . ($data['after'] ?? ''));
724         }
725
726         public static function removeShareInformation(string $text, bool $plaintext = false, bool $nolink = false): string
727         {
728                 DI::profiler()->startRecording('rendering');
729                 $data = self::getAttachmentData($text);
730
731                 if (!$data) {
732                         DI::profiler()->stopRecording();
733                         return $text;
734                 } elseif ($nolink) {
735                         DI::profiler()->stopRecording();
736                         return $data['text'] . ($data['after'] ?? '');
737                 }
738
739                 $title = htmlentities($data['title'] ?? '', ENT_QUOTES, 'UTF-8', false);
740                 $text = htmlentities($data['text'], ENT_QUOTES, 'UTF-8', false);
741                 if ($plaintext || (($title != '') && strstr($text, $title))) {
742                         $data['title'] = $data['url'];
743                 } elseif (($text != '') && strstr($title, $text)) {
744                         $data['text'] = $data['title'];
745                         $data['title'] = $data['url'];
746                 }
747
748                 if (empty($data['text']) && !empty($data['title']) && empty($data['url'])) {
749                         DI::profiler()->stopRecording();
750                         return $data['title'] . $data['after'];
751                 }
752
753                 // If the link already is included in the post, don't add it again
754                 if (!empty($data['url']) && strpos($data['text'], $data['url'])) {
755                         DI::profiler()->stopRecording();
756                         return $data['text'] . $data['after'];
757                 }
758
759                 $text = $data['text'];
760
761                 if (!empty($data['url']) && !empty($data['title'])) {
762                         $text .= "\n[url=" . $data['url'] . ']' . $data['title'] . '[/url]';
763                 } elseif (!empty($data['url'])) {
764                         $text .= "\n[url]" . $data['url'] . '[/url]';
765                 }
766
767                 DI::profiler()->stopRecording();
768                 return $text . "\n" . $data['after'];
769         }
770
771         /**
772          * Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
773          *
774          * @param array $match Array with the matching values
775          * @return string reformatted link including HTML codes
776          */
777         private static function convertUrlForActivityPubCallback(array $match): string
778         {
779                 $url = $match[1];
780
781                 if (isset($match[2]) && ($match[1] != $match[2])) {
782                         return $match[0];
783                 }
784
785                 $parts = parse_url($url);
786                 if (!isset($parts['scheme'])) {
787                         return $match[0];
788                 }
789
790                 return self::convertUrlForActivityPub($url);
791         }
792
793         /**
794          * Converts [url] BBCodes in a format that looks fine on ActivityPub systems.
795          *
796          * @param string $url URL that is about to be reformatted
797          * @return string reformatted link including HTML codes
798          */
799         private static function convertUrlForActivityPub(string $url): string
800         {
801                 return sprintf('<a href="%s" target="_blank" rel="noopener noreferrer">%s</a>', $url, self::getStyledURL($url));
802         }
803
804         /**
805          * Converts an URL in a nicer format (without the scheme and possibly shortened)
806          *
807          * @param string $url URL that is about to be reformatted
808          * @return string reformatted link
809          */
810         private static function getStyledURL(string $url): string
811         {
812                 $parts = parse_url($url);
813                 $scheme = $parts['scheme'] . '://';
814                 $styled_url = str_replace($scheme, '', $url);
815
816                 if (strlen($styled_url) > 30) {
817                         $styled_url = substr($styled_url, 0, 30) . "…";
818                 }
819
820                 return $styled_url;
821         }
822
823         /*
824          * [noparse][i]italic[/i][/noparse] turns into
825          * [noparse][ i ]italic[ /i ][/noparse],
826          * to hide them from parser.
827          *
828          * @param array $match
829          * @return string
830          */
831         private static function escapeNoparseCallback(array $match): string
832         {
833                 $whole_match = $match[0];
834                 $captured = $match[1];
835                 $spacefied = preg_replace("/\[(.*?)\]/", "[ $1 ]", $captured);
836                 $new_str = str_replace($captured, $spacefied, $whole_match);
837                 return $new_str;
838         }
839
840         /*
841          * The previously spacefied [noparse][ i ]italic[ /i ][/noparse],
842          * now turns back and the [noparse] tags are trimed
843          * returning [i]italic[/i]
844          *
845          * @param array $match
846          * @return string
847          */
848         private static function unescapeNoparseCallback(array $match): string
849         {
850                 $captured = $match[1];
851                 $unspacefied = preg_replace("/\[ (.*?)\ ]/", "[$1]", $captured);
852                 return $unspacefied;
853         }
854
855         /**
856          * Returns the bracket character positions of a set of opening and closing BBCode tags, optionally skipping first
857          * occurrences
858          *
859          * @param string $text        Text to search
860          * @param string $name        Tag name
861          * @param int    $occurrences Number of first occurrences to skip
862          * @return boolean|array
863          */
864         public static function getTagPosition(string $text, string $name, int $occurrences = 0)
865         {
866                 DI::profiler()->startRecording('rendering');
867                 if ($occurrences < 0) {
868                         $occurrences = 0;
869                 }
870
871                 $start_open = -1;
872                 for ($i = 0; $i <= $occurrences; $i++) {
873                         if ($start_open !== false) {
874                                 $start_open = strpos($text, '[' . $name, $start_open + 1); // allow [name= type tags
875                         }
876                 }
877
878                 if ($start_open === false) {
879                         DI::profiler()->stopRecording();
880                         return false;
881                 }
882
883                 $start_equal = strpos($text, '=', $start_open);
884                 $start_close = strpos($text, ']', $start_open);
885
886                 if ($start_close === false) {
887                         DI::profiler()->stopRecording();
888                         return false;
889                 }
890
891                 $start_close++;
892
893                 $end_open = strpos($text, '[/' . $name . ']', $start_close);
894
895                 if ($end_open === false) {
896                         DI::profiler()->stopRecording();
897                         return false;
898                 }
899
900                 $res = [
901                         'start' => [
902                                 'open' => $start_open,
903                                 'close' => $start_close
904                         ],
905                         'end' => [
906                                 'open' => $end_open,
907                                 'close' => $end_open + strlen('[/' . $name . ']')
908                         ],
909                 ];
910
911                 if ($start_equal !== false) {
912                         $res['start']['equal'] = $start_equal + 1;
913                 }
914
915                 DI::profiler()->stopRecording();
916                 return $res;
917         }
918
919         /**
920          * Performs a preg_replace within the boundaries of all named BBCode tags in a text
921          *
922          * @param string $pattern Preg pattern string
923          * @param string $replace Preg replace string
924          * @param string $name    BBCode tag name
925          * @param string $text    Text to search
926          * @return string
927          */
928         public static function pregReplaceInTag(string $pattern, string $replace, string $name, string $text): string
929         {
930                 DI::profiler()->startRecording('rendering');
931                 $occurrences = 0;
932                 $pos = self::getTagPosition($text, $name, $occurrences);
933                 while ($pos !== false && $occurrences++ < 1000) {
934                         $start = substr($text, 0, $pos['start']['open']);
935                         $subject = substr($text, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
936                         $end = substr($text, $pos['end']['close']);
937                         if ($end === false) {
938                                 $end = '';
939                         }
940
941                         $subject = preg_replace($pattern, $replace, $subject);
942                         $text = $start . $subject . $end;
943
944                         $pos = self::getTagPosition($text, $name, $occurrences);
945                 }
946
947                 DI::profiler()->stopRecording();
948                 return $text;
949         }
950
951         private static function extractImagesFromItemBody(string $body): array
952         {
953                 $saved_image = [];
954                 $orig_body = $body;
955                 $new_body = '';
956
957                 $cnt = 0;
958                 $img_start = strpos($orig_body, '[img');
959                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
960                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
961                 while (($img_st_close !== false) && ($img_end !== false)) {
962                         $img_st_close++; // make it point to AFTER the closing bracket
963                         $img_end += $img_start;
964
965                         if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
966                                 // This is an embedded image
967                                 $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
968                                 $new_body = $new_body . substr($orig_body, 0, $img_start) . '[$#saved_image' . $cnt . '#$]';
969
970                                 $cnt++;
971                         } else {
972                                 $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
973                         }
974
975                         $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
976
977                         if ($orig_body === false) {
978                                 // in case the body ends on a closing image tag
979                                 $orig_body = '';
980                         }
981
982                         $img_start = strpos($orig_body, '[img');
983                         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
984                         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
985                 }
986
987                 $new_body = $new_body . $orig_body;
988
989                 return ['body' => $new_body, 'images' => $saved_image];
990         }
991
992         private static function interpolateSavedImagesIntoItemBody(int $uriid, string $body, array $images): string
993         {
994                 $newbody = $body;
995
996                 $cnt = 0;
997                 foreach ($images as $image) {
998                         // We're depending on the property of 'foreach' (specified on the PHP website) that
999                         // it loops over the array starting from the first element and going sequentially
1000                         // to the last element
1001                         $newbody = str_replace('[$#saved_image' . $cnt . '#$]',
1002                                 '<img src="' . self::proxyUrl($image, self::INTERNAL, $uriid) . '" alt="' . DI::l10n()->t('Image/photo') . '" />', $newbody);
1003                         $cnt++;
1004                 }
1005
1006                 return $newbody;
1007         }
1008
1009         /**
1010          * @param string $text A BBCode string
1011          * @return array Empty array if no share tag is present or the following array, missing attributes end up empty strings:
1012          *               - comment   : Text before the opening share tag
1013          *               - shared    : Text inside the share tags
1014          *               - author    : (Optional) Display name of the shared author
1015          *               - profile   : (Optional) Profile page URL of the shared author
1016          *               - avatar    : (Optional) Profile picture URL of the shared author
1017          *               - link      : (Optional) Canonical URL of the shared post
1018          *               - posted    : (Optional) Date the shared post was initially posted ("Y-m-d H:i:s" in GMT)
1019          *               - message_id: (Optional) Shared post URI if any
1020          *               - guid      : (Optional) Shared post GUID if any
1021          */
1022         public static function fetchShareAttributes(string $text): array
1023         {
1024                 DI::profiler()->startRecording('rendering');
1025                 if (preg_match('~(.*?)\[share](.*)\[/share]~ism', $text, $matches)) {
1026                         DI::profiler()->stopRecording();
1027                         return [
1028                                 'author'     => '',
1029                                 'profile'    => '',
1030                                 'avatar'     => '',
1031                                 'link'       => '',
1032                                 'posted'     => '',
1033                                 'guid'       => '',
1034                                 'message_id' => trim($matches[2]),
1035                                 'comment'    => trim($matches[1]),
1036                                 'shared'     => '',
1037                         ];
1038                 }
1039                 // See Issue https://github.com/friendica/friendica/issues/10454
1040                 // Hashtags in usernames are expanded to links. This here is a quick fix.
1041                 $text = preg_replace('~([@!#])\[url=.*?](.*?)\[/url]~ism', '$1$2', $text);
1042
1043                 if (!preg_match('~(.*?)\[share(.*?)](.*)\[/share]~ism', $text, $matches)) {
1044                         DI::profiler()->stopRecording();
1045                         return [];
1046                 }
1047
1048                 $attributes = self::extractShareAttributes($matches[2]);
1049
1050                 $attributes['comment'] = trim($matches[1]);
1051                 $attributes['shared'] = trim($matches[3]);
1052
1053                 DI::profiler()->stopRecording();
1054                 return $attributes;
1055         }
1056
1057         /**
1058          * @see BBCode::fetchShareAttributes()
1059          * @param string $shareString Internal opening share tag string matched by the regular expression
1060          * @return array A fixed attribute array where missing attribute are represented by empty strings
1061          */
1062         private static function extractShareAttributes(string $shareString): array
1063         {
1064                 $attributes = [];
1065                 foreach (['author', 'profile', 'avatar', 'link', 'posted', 'guid', 'message_id'] as $field) {
1066                         preg_match("/$field=(['\"])(.+?)\\1/ism", $shareString, $matches);
1067                         $attributes[$field] = html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8');
1068                 }
1069
1070                 return $attributes;
1071         }
1072
1073         /**
1074          * Remove the share block
1075          *
1076          * @param string $body
1077          * @return string
1078          */
1079         public static function removeSharedData(string $body): string
1080         {
1081                 return trim(preg_replace("/\s*\[share.*?\].*?\[\/share\]\s*/ism", '', $body));
1082         }
1083
1084         /**
1085          * This function converts a [share] block to text according to a provided callback function whose signature is:
1086          *
1087          * function(array $attributes, array $author_contact, string $content, boolean $is_quote_share): string
1088          *
1089          * Where:
1090          * - $attributes is an array of attributes of the [share] block itself. Missing keys will be completed by the contact
1091          * data lookup
1092          * - $author_contact is a contact record array
1093          * - $content is the inner content of the [share] block
1094          * - $is_quote_share indicates whether there's any content before the [share] block
1095          * - Return value is the string that should replace the [share] block in the provided text
1096          *
1097          * This function is intended to be used by addon connector to format a share block like the target network is expecting it.
1098          *
1099          * @param  string   $text     A BBCode string
1100          * @param  callable $callback
1101          * @return string The BBCode string with all [share] blocks replaced
1102          */
1103         public static function convertShare(string $text, callable $callback, int $uriid = 0): string
1104         {
1105                 DI::profiler()->startRecording('rendering');
1106                 $return = preg_replace_callback(
1107                         '~(.*?)\[share(.*?)](.*)\[/share]~ism',
1108                         function ($match) use ($callback, $uriid) {
1109                                 $attributes = self::extractShareAttributes($match[2]);
1110
1111                                 $author_contact = Contact::getByURL($attributes['profile'], false, ['id', 'url', 'addr', 'name', 'micro']);
1112                                 $author_contact['url'] = ($author_contact['url'] ?? $attributes['profile']);
1113                                 $author_contact['addr'] = ($author_contact['addr'] ?? '');
1114
1115                                 $attributes['author']   = ($author_contact['name']  ?? '') ?: $attributes['author'];
1116                                 $attributes['avatar']   = ($author_contact['micro'] ?? '') ?: $attributes['avatar'];
1117                                 $attributes['profile']  = ($author_contact['url']   ?? '') ?: $attributes['profile'];
1118
1119                                 if (!empty($author_contact['id'])) {
1120                                         $attributes['avatar'] = Contact::getAvatarUrlForId($author_contact['id'], Proxy::SIZE_THUMB);
1121                                 } elseif ($attributes['avatar']) {
1122                                         $attributes['avatar'] = self::proxyUrl($attributes['avatar'], self::INTERNAL, $uriid, Proxy::SIZE_THUMB);
1123                                 }
1124
1125                                 $content = preg_replace(Strings::autoLinkRegEx(), '<a href="$1">$1</a>', $match[3]);
1126
1127                                 return $match[1] . $callback($attributes, $author_contact, $content, trim($match[1]) != '');
1128                         },
1129                         $text
1130                 );
1131
1132                 DI::profiler()->stopRecording();
1133                 return trim($return);
1134         }
1135
1136         /**
1137          * Convert complex IMG and ZMG elements
1138          *
1139          * @param [type] $text
1140          * @param integer $simplehtml
1141          * @param integer $uriid
1142          * @return string
1143          */
1144         private static function convertImages(string $text, int $simplehtml, int $uriid = 0): string
1145         {
1146                 DI::profiler()->startRecording('rendering');
1147                 $return = preg_replace_callback(
1148                         "/\[[zi]mg(.*?)\]([^\[\]]*)\[\/[zi]mg\]/ism",
1149                         function ($match) use ($simplehtml, $uriid) {
1150                                 $attribute_string = $match[1];
1151                                 $attributes = [];
1152                                 foreach (['alt', 'width', 'height'] as $field) {
1153                                         preg_match("/$field=(['\"])(.+?)\\1/ism", $attribute_string, $matches);
1154                                         $attributes[$field] = html_entity_decode($matches[2] ?? '', ENT_QUOTES, 'UTF-8');
1155                                 }
1156
1157                                 $img_str = '<img src="' .
1158                                 self::proxyUrl($match[2], $simplehtml, $uriid) . '"';
1159                                 foreach ($attributes as $key => $value) {
1160                                         if (!empty($value)) {
1161                                                 $img_str .= ' ' . $key . '="' . htmlspecialchars($value, ENT_COMPAT) . '"';
1162                                         }
1163                                 }
1164                                 return $img_str . '>';
1165                         },
1166                         $text
1167                 );
1168
1169                 DI::profiler()->stopRecording();
1170                 return $return;
1171         }
1172
1173         /**
1174          * Default [share] tag conversion callback
1175          *
1176          * Note: Can produce a [bookmark] tag in the output
1177          *
1178          * @see BBCode::convertShare()
1179          * @param array   $attributes     [share] block attribute values
1180          * @param array   $author_contact Contact row of the shared author
1181          * @param string  $content        Inner content of the [share] block
1182          * @param boolean $is_quote_share Whether there is content before the [share] block
1183          * @param integer $simplehtml     Mysterious integer value depending on the target network/formatting style
1184          * @return string
1185          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1186          */
1187         private static function convertShareCallback(array $attributes, array $author_contact, string $content, bool $is_quote_share, int $simplehtml): string
1188         {
1189                 DI::profiler()->startRecording('rendering');
1190                 $mention = $attributes['author'] . ' (' . ($author_contact['addr'] ?? '') . ')';
1191
1192                 switch ($simplehtml) {
1193                         case self::API:
1194                                 $text = ($is_quote_share? '<br>' : '') .
1195                                 '<b><a href="' . $attributes['link'] . '">' . html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8') . ' ' . $author_contact['addr'] . "</a>:</b><br>\n" .
1196                                 '<blockquote class="shared_content" dir="auto">' . $content . '</blockquote>';
1197                                 break;
1198                         case self::DIASPORA:
1199                                 if (stripos(Strings::normaliseLink($attributes['link']), 'http://twitter.com/') === 0) {
1200                                         $text = ($is_quote_share? '<hr />' : '') . '<p><a href="' . $attributes['link'] . '">' . $attributes['link'] . '</a></p>' . "\n";
1201                                 } else {
1202                                         $headline = '<p><b>♲ <a href="' . $attributes['profile'] . '">' . $attributes['author'] . '</a>:</b></p>' . "\n";
1203
1204                                         if (!empty($attributes['posted']) && !empty($attributes['link'])) {
1205                                                 $headline = '<p><b>♲ <a href="' . $attributes['profile'] . '">' . $attributes['author'] . '</a></b> - <a href="' . $attributes['link'] . '">' . $attributes['posted'] . ' GMT</a></p>' . "\n";
1206                                         }
1207
1208                                         $text = ($is_quote_share? '<hr />' : '') . $headline . '<blockquote>' . trim($content) . '</blockquote>' . "\n";
1209
1210                                         if (empty($attributes['posted']) && !empty($attributes['link'])) {
1211                                                 $text .= '<p><a href="' . $attributes['link'] . '">[Source]</a></p>' . "\n";
1212                                         }
1213                                 }
1214
1215                                 break;
1216                         case self::CONNECTORS:
1217                                 $headline = '<p><b>' . html_entity_decode('&#x2672; ', ENT_QUOTES, 'UTF-8');
1218                                 $headline .= DI::l10n()->t('<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s</a> %3$s', $attributes['link'], $mention, $attributes['posted']);
1219                                 $headline .= ':</b></p>' . "\n";
1220
1221                                 $text = ($is_quote_share? '<hr />' : '') . $headline . '<blockquote class="shared_content" dir="auto">' . trim($content) . '</blockquote>' . "\n";
1222
1223                                 break;
1224                         case self::OSTATUS:
1225                                 $text = ($is_quote_share? '<br>' : '') . '<p>' . html_entity_decode('&#x2672; ', ENT_QUOTES, 'UTF-8') . ' @' . $author_contact['addr'] . ': ' . $content . '</p>' . "\n";
1226                                 break;
1227                         case self::ACTIVITYPUB:
1228                                 $author = '@<span class="vcard"><a href="' . $author_contact['url'] . '" class="url u-url mention" title="' . $author_contact['addr'] . '"><span class="fn nickname mention">' . $author_contact['addr'] . '</span></a>:</span>';
1229                                 $text = '<div><a href="' . $attributes['link'] . '">' . html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8') . '</a> ' . $author . '<blockquote>' . $content . '</blockquote></div>' . "\n";
1230                                 break;
1231                         default:
1232                                 $text = ($is_quote_share? "\n" : '');
1233
1234                                 $contact = Contact::getByURL($attributes['profile'], false, ['network']);
1235                                 $network = $contact['network'] ?? Protocol::PHANTOM;
1236
1237                                 $tpl = Renderer::getMarkupTemplate('shared_content.tpl');
1238                                 $text .= Renderer::replaceMacros($tpl, [
1239                                         '$profile'      => $attributes['profile'],
1240                                         '$avatar'       => $attributes['avatar'],
1241                                         '$author'       => $attributes['author'],
1242                                         '$link'         => $attributes['link'],
1243                                         '$link_title'   => DI::l10n()->t('Link to source'),
1244                                         '$posted'       => $attributes['posted'],
1245                                         '$guid'         => $attributes['guid'],
1246                                         '$network_name' => ContactSelector::networkToName($network, $attributes['profile']),
1247                                         '$network_icon' => ContactSelector::networkToIcon($network, $attributes['profile']),
1248                                         '$content'      => self::TOP_ANCHOR . self::setMentions(trim($content), 0, $network) . self::BOTTOM_ANCHOR,
1249                                 ]);
1250                                 break;
1251                 }
1252
1253                 return $text;
1254         }
1255
1256         private static function removePictureLinksCallback(array $match): string
1257         {
1258                 $cache_key = 'remove:' . $match[1];
1259                 $text = DI::cache()->get($cache_key);
1260
1261                 if (is_null($text)) {
1262                         $curlResult = DI::httpClient()->head($match[1], [HttpClientOptions::TIMEOUT => DI::config()->get('system', 'xrd_timeout')]);
1263                         if ($curlResult->isSuccess()) {
1264                                 $mimetype = $curlResult->getHeader('Content-Type')[0] ?? '';
1265                         } else {
1266                                 $mimetype = '';
1267                         }
1268
1269                         if (substr($mimetype, 0, 6) == 'image/') {
1270                                 $text = '[url=' . $match[1] . ']' . $match[1] . '[/url]';
1271                         } else {
1272                                 $text = '[url=' . $match[2] . ']' . $match[2] . '[/url]';
1273
1274                                 // if its not a picture then look if its a page that contains a picture link
1275                                 $body = DI::httpClient()->fetch($match[1], HttpClientAccept::HTML, 0);
1276                                 if (empty($body)) {
1277                                         DI::cache()->set($cache_key, $text);
1278                                         return $text;
1279                                 }
1280
1281                                 $doc = new DOMDocument();
1282                                 @$doc->loadHTML($body);
1283                                 $xpath = new DOMXPath($doc);
1284                                 $list = $xpath->query('//meta[@name]');
1285                                 foreach ($list as $node) {
1286                                         $attr = [];
1287
1288                                         if ($node->attributes->length) {
1289                                                 foreach ($node->attributes as $attribute) {
1290                                                         $attr[$attribute->name] = $attribute->value;
1291                                                 }
1292                                         }
1293
1294                                         if (strtolower($attr['name']) == 'twitter:image') {
1295                                                 $text = '[url=' . $attr['content'] . ']' . $attr['content'] . '[/url]';
1296                                         }
1297                                 }
1298                         }
1299                         DI::cache()->set($cache_key, $text);
1300                 }
1301
1302                 return $text;
1303         }
1304
1305         /**
1306          * Callback: Expands links from given $match array
1307          *
1308          * @param arrat $match Array with link match
1309          * @return string BBCode
1310          */
1311         private static function expandLinksCallback(array $match): string
1312         {
1313                 if (($match[3] == '') || ($match[2] == $match[3]) || stristr($match[2], $match[3])) {
1314                         return ($match[1] . '[url]' . $match[2] . '[/url]');
1315                 } else {
1316                         return ($match[1] . $match[3] . ' [url]' . $match[2] . '[/url]');
1317                 }
1318         }
1319
1320         /**
1321          * Callback: Cleans picture links
1322          *
1323          * @param arrat $match Array with link match
1324          * @return string BBCode
1325          */
1326         private static function cleanPictureLinksCallback(array $match): string
1327         {
1328                 // When the picture link is the own photo path then we can avoid fetching the link
1329                 $own_photo_url = preg_quote(Strings::normaliseLink(DI::baseUrl()->get()) . '/photos/');
1330                 if (preg_match('|' . $own_photo_url . '.*?/image/|', Strings::normaliseLink($match[1]))) {
1331                         if (!empty($match[3])) {
1332                                 $text = '[img=' . str_replace('-1.', '-0.', $match[2]) . ']' . $match[3] . '[/img]';
1333                         } else {
1334                                 $text = '[img]' . str_replace('-1.', '-0.', $match[2]) . '[/img]';
1335                         }
1336                         return $text;
1337                 }
1338
1339                 $cache_key = 'clean:' . $match[1];
1340                 $text = DI::cache()->get($cache_key);
1341                 if (!is_null($text)) {
1342                         return $text;
1343                 }
1344
1345                 $curlResult = DI::httpClient()->head($match[1], [HttpClientOptions::TIMEOUT => DI::config()->get('system', 'xrd_timeout')]);
1346                 if ($curlResult->isSuccess()) {
1347                         $mimetype = $curlResult->getHeader('Content-Type')[0] ?? '';
1348                 } else {
1349                         $mimetype = '';
1350                 }
1351
1352                 // if its a link to a picture then embed this picture
1353                 if (substr($mimetype, 0, 6) == 'image/') {
1354                         $text = '[img]' . $match[1] . '[/img]';
1355                 } else {
1356                         if (!empty($match[3])) {
1357                                 $text = '[img=' . $match[2] . ']' . $match[3] . '[/img]';
1358                         } else {
1359                                 $text = '[img]' . $match[2] . '[/img]';
1360                         }
1361
1362                         // if its not a picture then look if its a page that contains a picture link
1363                         $body = DI::httpClient()->fetch($match[1], HttpClientAccept::HTML, 0);
1364                         if (empty($body)) {
1365                                 DI::cache()->set($cache_key, $text);
1366                                 return $text;
1367                         }
1368
1369                         $doc = new DOMDocument();
1370                         @$doc->loadHTML($body);
1371                         $xpath = new DOMXPath($doc);
1372                         $list = $xpath->query('//meta[@name]');
1373                         foreach ($list as $node) {
1374                                 $attr = [];
1375                                 if ($node->attributes->length) {
1376                                         foreach ($node->attributes as $attribute) {
1377                                                 $attr[$attribute->name] = $attribute->value;
1378                                         }
1379                                 }
1380
1381                                 if (strtolower($attr['name']) == "twitter:image") {
1382                                         if (!empty($match[3])) {
1383                                                 $text = "[img=" . $attr['content'] . "]" . $match[3] . "[/img]";
1384                                         } else {
1385                                                 $text = "[img]" . $attr['content'] . "[/img]";
1386                                         }
1387                                 }
1388                         }
1389                 }
1390                 DI::cache()->set($cache_key, $text);
1391
1392                 return $text;
1393         }
1394
1395         /**
1396          * Cleans picture links
1397          *
1398          * @param string $text HTML/BBCode string
1399          * @return string Cleaned HTML/BBCode
1400          */
1401         public static function cleanPictureLinks(string $text): string
1402         {
1403                 DI::profiler()->startRecording('rendering');
1404                 $return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img=(.*)\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $text);
1405                 $return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $return);
1406                 DI::profiler()->stopRecording();
1407                 return $return;
1408         }
1409
1410         /**
1411          * Removes links
1412          *
1413          * @param string $text HTML/BBCode string
1414          * @return string Cleaned HTML/BBCode
1415          */
1416         public static function removeLinks(string $bbcode): string
1417         {
1418                 DI::profiler()->startRecording('rendering');
1419                 $bbcode = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $1 ', $bbcode);
1420                 $bbcode = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $bbcode);
1421
1422                 $bbcode = preg_replace('/[@!#]\[url\=.*?\].*?\[\/url\]/ism', '', $bbcode);
1423                 $bbcode = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $bbcode);
1424                 $bbcode = preg_replace('/[@!#]?\[url.*?\[\/url\]/ism', '', $bbcode);
1425                 DI::profiler()->stopRecording();
1426                 return $bbcode;
1427         }
1428
1429         /**
1430          * Replace names in mentions with nicknames
1431          *
1432          * @param string $body HTML/BBCode
1433          * @return string Body with replaced mentions
1434          */
1435         public static function setMentionsToNicknames(string $body): string
1436         {
1437                 DI::profiler()->startRecording('rendering');
1438                 $regexp = "/([@!])\[url\=([^\[\]]*)\].*?\[\/url\]/ism";
1439                 $body = preg_replace_callback($regexp, ['self', 'mentionCallback'], $body);
1440                 DI::profiler()->stopRecording();
1441                 return $body;
1442         }
1443
1444         /**
1445          * Callback function to replace a Friendica style mention in a mention with the nickname
1446          *
1447          * @param array $match Matching values for the callback
1448          * @return string Replaced mention or empty string
1449          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1450          */
1451         private static function mentionCallback(array $match): string
1452         {
1453                 if (empty($match[2])) {
1454                         return '';
1455                 }
1456
1457                 $data = Contact::getByURL($match[2], false, ['url', 'nick']);
1458                 if (empty($data['nick'])) {
1459                         return $match[0];
1460                 }
1461
1462                 return $match[1] . '[url=' . $data['url'] . ']' . $data['nick'] . '[/url]';
1463         }
1464
1465         /**
1466          * Converts a BBCode message for a given URI-ID to a HTML message
1467          *
1468          * BBcode 2 HTML was written by WAY2WEB.net
1469          * extended to work with Mistpark/Friendica - Mike Macgirvin
1470          *
1471          * Simple HTML values meaning:
1472          * - 0: Friendica display
1473          * - 1: Unused
1474          * - 2: Used for Windows Phone push, Friendica API
1475          * - 3: Used before converting to Markdown in bb2diaspora.php
1476          * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
1477          * - 5: Unused
1478          * - 6: Unused
1479          * - 7: Used for dfrn, OStatus
1480          * - 8: Used for Twitter, WP backlink text setting
1481          * - 9: ActivityPub
1482          *
1483          * @param int    $uriid
1484          * @param string $text
1485          * @param int    $simple_html
1486          * @return string
1487          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1488          */
1489         public static function convertForUriId(int $uriid = null, string $text = null, int $simple_html = self::INTERNAL): string
1490         {
1491                 $try_oembed = ($simple_html == self::INTERNAL);
1492
1493                 return self::convert($text ?? '', $try_oembed, $simple_html, false, $uriid ?? 0);
1494         }
1495
1496         /**
1497          * Converts a BBCode message to HTML message
1498          *
1499          * BBcode 2 HTML was written by WAY2WEB.net
1500          * extended to work with Mistpark/Friendica - Mike Macgirvin
1501          *
1502          * Simple HTML values meaning:
1503          * - 0: Friendica display
1504          * - 1: Unused
1505          * - 2: Used for Windows Phone push, Friendica API
1506          * - 3: Used before converting to Markdown in bb2diaspora.php
1507          * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
1508          * - 5: Unused
1509          * - 6: Unused
1510          * - 7: Used for dfrn, OStatus
1511          * - 8: Used for Twitter, WP backlink text setting
1512          * - 9: ActivityPub
1513          *
1514          * @param string $text
1515          * @param bool   $try_oembed
1516          * @param int    $simple_html
1517          * @param bool   $for_plaintext
1518          * @param int    $uriid
1519          * @return string Converted code or empty string
1520          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1521          */
1522         public static function convert(string $text = null, bool $try_oembed = true, int $simple_html = self::INTERNAL, bool $for_plaintext = false, int $uriid = 0): string
1523         {
1524                 // Accounting for null default column values
1525                 if (is_null($text) || $text === '') {
1526                         return '';
1527                 }
1528
1529                 DI::profiler()->startRecording('rendering');
1530
1531                 Hook::callAll('bbcode', $text);
1532
1533                 $a = DI::app();
1534
1535                 $text = self::performWithEscapedTags($text, ['code'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $a, $uriid) {
1536                         $text = self::performWithEscapedTags($text, ['noparse', 'nobb', 'pre'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $a, $uriid) {
1537                                 /*
1538                                  * preg_match_callback function to replace potential Oembed tags with Oembed content
1539                                  *
1540                                  * $match[0] = [tag]$url[/tag] or [tag=$url]$title[/tag]
1541                                  * $match[1] = $url
1542                                  * $match[2] = $title or absent
1543                                  */
1544                                 $try_oembed_callback = function (array $match)
1545                                 {
1546                                         $url = $match[1];
1547                                         $title = $match[2] ?? '';
1548
1549                                         try {
1550                                                 $return = OEmbed::getHTML($url, $title);
1551                                         } catch (Exception $ex) {
1552                                                 $return = $match[0];
1553                                         }
1554
1555                                         return $return;
1556                                 };
1557
1558                                 // Remove the abstract element. It is a non visible element.
1559                                 $text = self::stripAbstract($text);
1560
1561                                 // Line ending normalisation
1562                                 $text = str_replace("\r\n", "\n", $text);
1563
1564                                 // Move new lines outside of tags
1565                                 $text = preg_replace("#\[(\w*)](\n*)#ism", '$2[$1]', $text);
1566                                 $text = preg_replace("#(\n*)\[/(\w*)]#ism", '[/$2]$1', $text);
1567
1568                                 // Extract the private images which use data urls since preg has issues with
1569                                 // large data sizes. Stash them away while we do bbcode conversion, and then put them back
1570                                 // in after we've done all the regex matching. We cannot use any preg functions to do this.
1571
1572                                 $extracted = self::extractImagesFromItemBody($text);
1573                                 $text = $extracted['body'];
1574                                 $saved_image = $extracted['images'];
1575
1576                                 // If we find any event code, turn it into an event.
1577                                 // After we're finished processing the bbcode we'll
1578                                 // replace all of the event code with a reformatted version.
1579
1580                                 $ev = Event::fromBBCode($text);
1581
1582                                 // Replace any html brackets with HTML Entities to prevent executing HTML or script
1583                                 // Don't use strip_tags here because it breaks [url] search by replacing & with amp
1584
1585                                 $text = str_replace("<", "&lt;", $text);
1586                                 $text = str_replace(">", "&gt;", $text);
1587
1588                                 // remove some newlines before the general conversion
1589                                 $text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "[share$1]$2[/share]", $text);
1590                                 $text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "[quote$1]$2[/quote]", $text);
1591
1592                                 // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
1593                                 if (!$try_oembed) {
1594                                         $text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $text);
1595                                 }
1596
1597                                 // Remove linefeeds inside of the table elements. See issue #6799
1598                                 $search = ["\n[th]", "[th]\n", " [th]", "\n[/th]", "[/th]\n", "[/th] ",
1599                                         "\n[td]", "[td]\n", " [td]", "\n[/td]", "[/td]\n", "[/td] ",
1600                                         "\n[tr]", "[tr]\n", " [tr]", "[tr] ", "\n[/tr]", "[/tr]\n", " [/tr]", "[/tr] ",
1601                                         "\n[hr]", "[hr]\n", " [hr]", "[hr] ",
1602                                         "\n[attachment ", " [attachment ", "\n[/attachment]", "[/attachment]\n", " [/attachment]", "[/attachment] ",
1603                                         "[table]\n", "[table] ", " [table]", "\n[/table]", " [/table]", "[/table] "];
1604                                 $replace = ["[th]", "[th]", "[th]", "[/th]", "[/th]", "[/th]",
1605                                         "[td]", "[td]", "[td]", "[/td]", "[/td]", "[/td]",
1606                                         "[tr]", "[tr]", "[tr]", "[tr]", "[/tr]", "[/tr]", "[/tr]", "[/tr]",
1607                                         "[hr]", "[hr]", "[hr]", "[hr]",
1608                                         "[attachment ", "[attachment ", "[/attachment]", "[/attachment]", "[/attachment]", "[/attachment]",
1609                                         "[table]", "[table]", "[table]", "[/table]", "[/table]", "[/table]"];
1610                                 do {
1611                                         $oldtext = $text;
1612                                         $text = str_replace($search, $replace, $text);
1613                                 } while ($oldtext != $text);
1614
1615                                 // Replace these here only once
1616                                 $search = ["\n[table]", "[/table]\n"];
1617                                 $replace = ["[table]", "[/table]"];
1618                                 $text = str_replace($search, $replace, $text);
1619
1620                                 // Trim new lines regardless of the system.remove_multiplicated_lines config value
1621                                 $text = trim($text, "\n");
1622
1623                                 // removing multiplicated newlines
1624                                 if (DI::config()->get('system', 'remove_multiplicated_lines')) {
1625                                         $search = ["\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[*]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n",
1626                                                         "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"];
1627                                         $replace = ["\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[*]", "[ul]", "[/ul]", "\n[share ", "[/attachment]",
1628                                                         "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"];
1629                                         do {
1630                                                 $oldtext = $text;
1631                                                 $text = str_replace($search, $replace, $text);
1632                                         } while ($oldtext != $text);
1633                                 }
1634
1635                                 /// @todo Have a closer look at the different html modes
1636                                 // Handle attached links or videos
1637                                 if (in_array($simple_html, [self::API, self::ACTIVITYPUB])) {
1638                                         $text = self::removeAttachment($text);
1639                                 } elseif (!in_array($simple_html, [self::INTERNAL, self::EXTERNAL, self::CONNECTORS])) {
1640                                         $text = self::removeAttachment($text, true);
1641                                 } else {
1642                                         $text = self::convertAttachment($text, $simple_html, $try_oembed, [], $uriid);
1643                                 }
1644
1645                                 $nosmile = strpos($text, '[nosmile]') !== false;
1646                                 $text = str_replace('[nosmile]', '', $text);
1647
1648                                 // Replace non graphical smilies for external posts
1649                                 if (!$nosmile) {
1650                                         $text = self::performWithEscapedTags($text, ['img'], function ($text) use ($simple_html, $for_plaintext) {
1651                                                 return Smilies::replace($text, ($simple_html != self::INTERNAL) || $for_plaintext);
1652                                         });
1653                                 }
1654
1655                                 // leave open the posibility of [map=something]
1656                                 // this is replaced in Item::prepareBody() which has knowledge of the item location
1657                                 if (strpos($text, '[/map]') !== false) {
1658                                         $text = preg_replace_callback(
1659                                                 "/\[map\](.*?)\[\/map\]/ism",
1660                                                 function ($match) use ($simple_html) {
1661                                                         return str_replace($match[0], '<p class="map">' . Map::byLocation($match[1], $simple_html) . '</p>', $match[0]);
1662                                                 },
1663                                                 $text
1664                                         );
1665                                 }
1666
1667                                 if (strpos($text, '[map=') !== false) {
1668                                         $text = preg_replace_callback(
1669                                                 "/\[map=(.*?)\]/ism",
1670                                                 function ($match) use ($simple_html) {
1671                                                         return str_replace($match[0], '<p class="map">' . Map::byCoordinates(str_replace('/', ' ', $match[1]), $simple_html) . '</p>', $match[0]);
1672                                                 },
1673                                                 $text
1674                                         );
1675                                 }
1676
1677                                 if (strpos($text, '[map]') !== false) {
1678                                         $text = preg_replace("/\[map\]/", '<p class="map"></p>', $text);
1679                                 }
1680
1681                                 // Check for headers
1682                                 $text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '<h1>$1</h1>', $text);
1683                                 $text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '<h2>$1</h2>', $text);
1684                                 $text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '<h3>$1</h3>', $text);
1685                                 $text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '<h4>$1</h4>', $text);
1686                                 $text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '<h5>$1</h5>', $text);
1687                                 $text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '<h6>$1</h6>', $text);
1688
1689                                 // Check for paragraph
1690                                 $text = preg_replace("(\[p\](.*?)\[\/p\])ism", '<p>$1</p>', $text);
1691
1692                                 // Check for bold text
1693                                 $text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $text);
1694
1695                                 // Check for Italics text
1696                                 $text = preg_replace("(\[i\](.*?)\[\/i\])ism", '<em>$1</em>', $text);
1697
1698                                 // Check for Underline text
1699                                 $text = preg_replace("(\[u\](.*?)\[\/u\])ism", '<u>$1</u>', $text);
1700
1701                                 // Check for strike-through text
1702                                 $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<s>$1</s>', $text);
1703
1704                                 // Check for over-line text
1705                                 $text = preg_replace("(\[o\](.*?)\[\/o\])ism", '<span class="overline">$1</span>', $text);
1706
1707                                 // Check for colored text
1708                                 $text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $text);
1709
1710                                 // Check for sized text
1711                                 // [size=50] --> font-size: 50px (with the unit).
1712                                 if ($simple_html != self::DIASPORA) {
1713                                         $text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", '<span style="font-size:$1px;line-height:normal;">$2</span>', $text);
1714                                         $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", '<span style="font-size:$1;line-height:normal;">$2</span>', $text);
1715                                 } else {
1716                                         // Issue 2199: Diaspora doesn't interpret the construct above, nor the <small> or <big> element
1717                                         $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "$2", $text);
1718                                 }
1719
1720
1721                                 // Check for centered text
1722                                 $text = preg_replace("(\[center\](.*?)\[\/center\])ism", '<div style="text-align:center;">$1</div>', $text);
1723
1724                                 // Check for list text
1725                                 $text = str_replace("[*]", "<li>", $text);
1726
1727                                 // Check for block-level custom CSS
1728                                 $text = preg_replace('#(?<=^|\n)\[style=(.*?)](.*?)\[/style](?:\n|$)#ism', '<div style="$1">$2</div>', $text);
1729
1730                                 // Check for inline custom CSS
1731                                 $text = preg_replace("(\[style=(.*?)\](.*?)\[\/style\])ism", '<span style="$1">$2</span>', $text);
1732
1733                                 // Mastodon Emoji (internal tag, do not document for users)
1734                                 $text = preg_replace("(\[emoji=(.*?)](.*?)\[/emoji])ism", '<span class="mastodon emoji"><img src="$1" alt="$2" title="$2"/></span>', $text);
1735
1736                                 // Check for CSS classes
1737                                 // @deprecated since 2021.12, left for backward-compatibility reasons
1738                                 $text = preg_replace("(\[class=(.*?)\](.*?)\[\/class\])ism", '<span class="$1">$2</span>', $text);
1739                                 // Add HTML new lines
1740                                 $text = str_replace("\n", '<br>', $text);
1741
1742                                 // handle nested lists
1743                                 $endlessloop = 0;
1744
1745                                 while ((((strpos($text, "[/list]") !== false) && (strpos($text, "[list") !== false)) ||
1746                                                 ((strpos($text, "[/ol]") !== false) && (strpos($text, "[ol]") !== false)) ||
1747                                                 ((strpos($text, "[/ul]") !== false) && (strpos($text, "[ul]") !== false)) ||
1748                                                 ((strpos($text, "[/li]") !== false) && (strpos($text, "[li]") !== false))) && (++$endlessloop < 20)) {
1749                                         $text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1750                                         $text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '<ul class="listnone" style="list-style-type: none;">$1</ul>', $text);
1751                                         $text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1752                                         $text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '<ul class="listlowerroman" style="list-style-type: lower-roman;">$2</ul>', $text);
1753                                         $text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '<ul class="listupperroman" style="list-style-type: upper-roman;">$2</ul>', $text);
1754                                         $text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$2</ul>', $text);
1755                                         $text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$2</ul>', $text);
1756                                         $text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1757                                         $text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1758                                         $text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '<li>$1</li>', $text);
1759                                 }
1760
1761                                 $text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '<th>$1</th>', $text);
1762                                 $text = preg_replace("/\[td\](.*?)\[\/td\]/sm", '<td>$1</td>', $text);
1763                                 $text = preg_replace("/\[tr\](.*?)\[\/tr\]/sm", '<tr>$1</tr>', $text);
1764                                 $text = preg_replace("/\[table\](.*?)\[\/table\]/sm", '<table>$1</table>', $text);
1765
1766                                 $text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '<table border="1" >$1</table>', $text);
1767                                 $text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '<table border="0" >$1</table>', $text);
1768
1769                                 $text = str_replace('[hr]', '<hr />', $text);
1770
1771                                 if (!$for_plaintext) {
1772                                         $text = self::performWithEscapedTags($text, ['url', 'img', 'audio', 'video', 'youtube', 'vimeo', 'share', 'attachment', 'iframe', 'bookmark'], function ($text) {
1773                                                 return preg_replace(Strings::autoLinkRegEx(), '[url]$1[/url]', $text);
1774                                         });
1775                                 }
1776
1777                                 // Check for font change text
1778                                 $text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "<span style=\"font-family: $1;\">$2</span>", $text);
1779
1780                                 // Declare the format for [spoiler] layout
1781                                 $SpoilerLayout = '<details class="spoiler"><summary>' . DI::l10n()->t('Click to open/close') . '</summary>$1</details>';
1782
1783                                 // Check for [spoiler] text
1784                                 // handle nested quotes
1785                                 $endlessloop = 0;
1786                                 while ((strpos($text, "[/spoiler]") !== false) && (strpos($text, "[spoiler]") !== false) && (++$endlessloop < 20)) {
1787                                         $text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", $SpoilerLayout, $text);
1788                                 }
1789
1790                                 // Check for [spoiler=Title] text
1791
1792                                 // handle nested quotes
1793                                 $endlessloop = 0;
1794                                 while ((strpos($text, "[/spoiler]")!== false)  && (strpos($text, "[spoiler=") !== false) && (++$endlessloop < 20)) {
1795                                         $text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism",
1796                                                 '<details class="spoiler"><summary>$1</summary>$2</details>',
1797                                                 $text);
1798                                 }
1799
1800                                 // Declare the format for [quote] layout
1801                                 $QuoteLayout = '<blockquote>$1</blockquote>';
1802
1803                                 // Check for [quote] text
1804                                 // handle nested quotes
1805                                 $endlessloop = 0;
1806                                 while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote]") !== false) && (++$endlessloop < 20)) {
1807                                         $text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $text);
1808                                 }
1809
1810                                 // Check for [quote=Author] text
1811
1812                                 $t_wrote = DI::l10n()->t('$1 wrote:');
1813
1814                                 // handle nested quotes
1815                                 $endlessloop = 0;
1816                                 while ((strpos($text, "[/quote]")!== false)  && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) {
1817                                         $text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
1818                                                 "<p><strong class=".'"author"'.">" . $t_wrote . "</strong></p><blockquote>$2</blockquote>",
1819                                                 $text);
1820                                 }
1821
1822
1823                                 // [img=widthxheight]image source[/img]
1824                                 $text = preg_replace_callback(
1825                                         "/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism",
1826                                         function ($matches) use ($simple_html, $uriid) {
1827                                                 if (strpos($matches[3], "data:image/") === 0) {
1828                                                         return $matches[0];
1829                                                 }
1830
1831                                                 $matches[3] = self::proxyUrl($matches[3], $simple_html, $uriid);
1832                                                 return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]";
1833                                         },
1834                                         $text
1835                                 );
1836
1837                                 $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '<img src="$3" style="width: $1px;" >', $text);
1838                                 $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '<img class="zrl" src="$3" style="width: $1px;" >', $text);
1839
1840                                 $text = preg_replace_callback("/\[img\=(.*?)\](.*?)\[\/img\]/ism",
1841                                         function ($matches) use ($simple_html, $uriid) {
1842                                                 $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid);
1843                                                 $matches[2] = htmlspecialchars($matches[2], ENT_COMPAT);
1844                                                 return '<img src="' . $matches[1] . '" alt="' . $matches[2] . '" title="' . $matches[2] . '">';
1845                                         },
1846                                         $text);
1847
1848                                 // Images
1849                                 // [img]pathtoimage[/img]
1850                                 $text = preg_replace_callback(
1851                                         "/\[img\](.*?)\[\/img\]/ism",
1852                                         function ($matches) use ($simple_html, $uriid) {
1853                                                 if (strpos($matches[1], "data:image/") === 0) {
1854                                                         return $matches[0];
1855                                                 }
1856
1857                                                 $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid);
1858                                                 return "[img]" . $matches[1] . "[/img]";
1859                                         },
1860                                         $text
1861                                 );
1862
1863                                 $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . DI::l10n()->t('Image/photo') . '" />', $text);
1864                                 $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '<img src="$1" alt="' . DI::l10n()->t('Image/photo') . '" />', $text);
1865
1866                                 $text = self::convertImages($text, $simple_html, $uriid);
1867
1868                                 $text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism", '<br><img src="' .DI::baseUrl() . '/images/lock_icon.gif" alt="' . DI::l10n()->t('Encrypted content') . '" title="' . DI::l10n()->t('Encrypted content') . '" /><br>', $text);
1869                                 $text = preg_replace("/\[crypt(.*?)\](.*?)\[\/crypt\]/ism", '<br><img src="' .DI::baseUrl() . '/images/lock_icon.gif" alt="' . DI::l10n()->t('Encrypted content') . '" title="' . '$1' . ' ' . DI::l10n()->t('Encrypted content') . '" /><br>', $text);
1870                                 //$text = preg_replace("/\[crypt=(.*?)\](.*?)\[\/crypt\]/ism", '<br><img src="' .DI::baseUrl() . '/images/lock_icon.gif" alt="' . DI::l10n()->t('Encrypted content') . '" title="' . '$1' . ' ' . DI::l10n()->t('Encrypted content') . '" /><br>', $text);
1871
1872                                 // Simplify "video" element
1873                                 $text = preg_replace('(\[video[^\]]*?\ssrc\s?=\s?([^\s\]]+)[^\]]*?\].*?\[/video\])ism', '[video]$1[/video]', $text);
1874
1875                                 if ($try_oembed) {
1876                                         // html5 video and audio
1877                                         $text = preg_replace("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4).*?)\[\/video\]/ism",
1878                                                 '<video src="$1" controls width="100%" height="auto"><a href="$1">$1</a></video>', $text);
1879
1880                                         $text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $try_oembed_callback, $text);
1881                                         $text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $try_oembed_callback, $text);
1882
1883                                         $text = preg_replace("/\[video\](.*?)\[\/video\]/ism",
1884                                                 '<a href="$1" target="_blank" rel="noopener noreferrer">$1</a>', $text);
1885                                         $text = preg_replace("/\[audio\](.*?)\[\/audio\]/ism", '<audio src="$1" controls><a href="$1">$1</a></audio>', $text);
1886                                 } else {
1887                                         $text = preg_replace("/\[video\](.*?)\[\/video\]/ism",
1888                                                 '<a href="$1" target="_blank" rel="noopener noreferrer">$1</a>', $text);
1889                                         $text = preg_replace("/\[audio\](.*?)\[\/audio\]/ism",
1890                                                 '<a href="$1" target="_blank" rel="noopener noreferrer">$1</a>', $text);
1891                                 }
1892
1893                                 // Backward compatibility, [iframe] support has been removed in version 2020.12
1894                                 $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1">$1</a>', $text);
1895
1896                                 // Youtube extensions
1897                                 if ($try_oembed) {
1898                                         $text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1899                                         $text = preg_replace_callback("/\[youtube\](www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1900                                         $text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/shorts\/.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1901                                         $text = preg_replace_callback("/\[youtube\](https?:\/\/youtu.be\/.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1902                                 }
1903
1904                                 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1905                                 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1906                                 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/shorts\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1907                                 $text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1908
1909                                 if ($try_oembed) {
1910                                         $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://www.youtube.com/embed/$1" frameborder="0" ></iframe>', $text);
1911                                 } else {
1912                                         $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
1913                                                 '<a href="https://www.youtube.com/watch?v=$1" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=$1</a>', $text);
1914                                 }
1915
1916                                 if ($try_oembed) {
1917                                         $text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1918                                         $text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1919                                 }
1920
1921                                 $text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1922                                 $text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1923
1924                                 if ($try_oembed) {
1925                                         $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '<iframe width="' . $a->getThemeInfoValue('videowidth') . '" height="' . $a->getThemeInfoValue('videoheight') . '" src="https://player.vimeo.com/video/$1" frameborder="0" ></iframe>', $text);
1926                                 } else {
1927                                         $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
1928                                                 '<a href="https://vimeo.com/$1" target="_blank" rel="noopener noreferrer">https://vimeo.com/$1</a>', $text);
1929                                 }
1930
1931                                 // oembed tag
1932                                 $text = OEmbed::BBCode2HTML($text);
1933
1934                                 // Avoid triple linefeeds through oembed
1935                                 $text = str_replace("<br style='clear:left'></span><br><br>", "<br style='clear:left'></span><br>", $text);
1936
1937                                 // If we found an event earlier, strip out all the event code and replace with a reformatted version.
1938                                 // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
1939                                 // Summary (e.g. title) is required, earlier revisions only required description (in addition to
1940                                 // start which is always required). Allow desc with a missing summary for compatibility.
1941
1942                                 if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
1943                                         $sub = Event::getHTML($ev, $simple_html, $uriid);
1944
1945                                         $text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $text);
1946                                         $text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $text);
1947                                         $text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $text);
1948                                         $text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $text);
1949                                         $text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $text);
1950                                         $text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $text);
1951                                 }
1952
1953                                 if (!$for_plaintext && DI::config()->get('system', 'big_emojis') && ($simple_html != self::DIASPORA)) {
1954                                         $conv = html_entity_decode(str_replace([' ', "\n", "\r"], '', $text));
1955                                         // Emojis are always 4 byte Unicode characters
1956                                         if (!empty($conv) && (strlen($conv) / mb_strlen($conv) == 4)) {
1957                                                 $text = '<span style="font-size: xx-large; line-height: normal;">' . $text . '</span>';
1958                                         }
1959                                 }
1960
1961                                 // Handle mentions and hashtag links
1962                                 if ($simple_html == self::DIASPORA) {
1963                                         // The ! is converted to @ since Diaspora only understands the @
1964                                         $text = preg_replace("/([@!])\[url\=(.*?)\](.*?)\[\/url\]/ism",
1965                                                 '@<a href="$2">$3</a>',
1966                                                 $text);
1967                                 } elseif (in_array($simple_html, [self::OSTATUS, self::ACTIVITYPUB])) {
1968                                         $text = preg_replace("/([@!])\[url\=(.*?)\](.*?)\[\/url\]/ism",
1969                                                 '<span class="h-card"><a href="$2" class="u-url mention">$1<span>$3</span></a></span>',
1970                                                 $text);
1971                                         $text = preg_replace("/([#])\[url\=(.*?)\](.*?)\[\/url\]/ism",
1972                                                 '<a href="$2" class="mention hashtag" rel="tag">$1<span>$3</span></a>',
1973                                                 $text);
1974                                 } elseif (in_array($simple_html, [self::INTERNAL, self::EXTERNAL, self::API])) {
1975                                         $text = preg_replace("/([@!])\[url\=(.*?)\](.*?)\[\/url\]/ism",
1976                                                 '<bdi>$1<a href="$2" class="userinfo mention" title="$3">$3</a></bdi>',
1977                                                 $text);
1978                                         $text = preg_replace("/([#])\[url\=(.*?)\](.*?)\[\/url\]/ism",
1979                                                 '<a class="mention hashtag status-link" href="$2" rel="tag">$1<span>$3</span></a>',
1980                                                 $text);
1981                                 } else {
1982                                         $text = preg_replace("/([#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism", '$1$3', $text);
1983                                 }
1984
1985                                 if (!$for_plaintext) {
1986                                         if (in_array($simple_html, [self::OSTATUS, self::API, self::ACTIVITYPUB])) {
1987                                                 $text = preg_replace_callback("/\[url\](.*?)\[\/url\]/ism", 'self::convertUrlForActivityPubCallback', $text);
1988                                                 $text = preg_replace_callback("/\[url\=(.*?)\](.*?)\[\/url\]/ism", 'self::convertUrlForActivityPubCallback', $text);
1989                                         }
1990                                 } else {
1991                                         $text = preg_replace("(\[url\](.*?)\[\/url\])ism", " $1 ", $text);
1992                                         $text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::removePictureLinksCallback', $text);
1993                                 }
1994
1995                                 // Bookmarks in red - will be converted to bookmarks in friendica
1996                                 $text = preg_replace("/#\^\[url\](.*?)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $text);
1997                                 $text = preg_replace("/#\^\[url\=(.*?)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $text);
1998                                 $text = preg_replace("/#\[url\=.*?\]\^\[\/url\]\[url\=(.*?)\](.*?)\[\/url\]/i",
1999                                                         "[bookmark=$1]$2[/bookmark]", $text);
2000
2001                                 if (in_array($simple_html, [self::OSTATUS, self::TWITTER])) {
2002                                         $text = preg_replace_callback("/([^#@!])\[url\=([^\]]*)\](.*?)\[\/url\]/ism", "self::expandLinksCallback", $text);
2003                                         //$text = preg_replace("/[^#@!]\[url\=([^\]]*)\](.*?)\[\/url\]/ism", ' $2 [url]$1[/url]', $text);
2004                                         $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", ' $2 [url]$1[/url]', $text);
2005                                 }
2006
2007                                 // Perform URL Search
2008                                 if ($try_oembed) {
2009                                         $text = preg_replace_callback("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $try_oembed_callback, $text);
2010                                 }
2011
2012                                 $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $text);
2013
2014                                 // Handle Diaspora posts
2015                                 $text = preg_replace_callback(
2016                                         "&\[url=/?posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
2017                                         function ($match) {
2018                                                 return "[url=" . DI::baseUrl() . "/display/" . $match[1] . "]" . $match[2] . "[/url]";
2019                                         }, $text
2020                                 );
2021
2022                                 $text = preg_replace_callback(
2023                                         "&\[url=/people\?q\=(.*)\](.*)\[\/url\]&Usi",
2024                                         function ($match) {
2025                                                 return "[url=" . DI::baseUrl() . "/search?search=%40" . $match[1] . "]" . $match[2] . "[/url]";
2026                                         }, $text
2027                                 );
2028
2029                                 // Server independent link to posts and comments
2030                                 // See issue: https://github.com/diaspora/diaspora_federation/issues/75
2031                                 $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
2032                                 $text = preg_replace($expression, DI::baseUrl()."/display/$1", $text);
2033
2034                                 /* Tag conversion
2035                                  * Supports:
2036                                  * - #[url=<anything>]<term>[/url]
2037                                  * - [url=<anything>]#<term>[/url]
2038                                  */
2039                                 self::performWithEscapedTags($text, ['url', 'share'], function ($text) use ($simple_html) {
2040                                         $text = preg_replace_callback("/(?:#\[url\=[^\[\]]*\]|\[url\=[^\[\]]*\]#)(.*?)\[\/url\]/ism", function($matches) use ($simple_html) {
2041                                                 if ($simple_html == self::ACTIVITYPUB) {
2042                                                         return '<a href="' . DI::baseUrl() . '/search?tag=' . rawurlencode($matches[1])
2043                                                                 . '" data-tag="' . XML::escape($matches[1]) . '" rel="tag ugc">#'
2044                                                                 . XML::escape($matches[1]) . '</a>';
2045                                                 } else {
2046                                                         return '#<a href="' . DI::baseUrl() . '/search?tag=' . rawurlencode($matches[1])
2047                                                                 . '" class="tag" rel="tag" title="' . XML::escape($matches[1]) . '">'
2048                                                                 . XML::escape($matches[1]) . '</a>';
2049                                                 }
2050                                         }, $text);
2051                                         return $text;
2052                                 });
2053
2054                                 // We need no target="_blank" rel="noopener noreferrer" for local links
2055                                 // convert links start with DI::baseUrl() as local link without the target="_blank" rel="noopener noreferrer" attribute
2056                                 $escapedBaseUrl = preg_quote(DI::baseUrl(), '/');
2057                                 $text = preg_replace("/\[url\](".$escapedBaseUrl.".*?)\[\/url\]/ism", '<a href="$1">$1</a>', $text);
2058                                 $text = preg_replace("/\[url\=(".$escapedBaseUrl.".*?)\](.*?)\[\/url\]/ism", '<a href="$1">$2</a>', $text);
2059
2060                                 $text = preg_replace("/\[url\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank" rel="noopener noreferrer">$1</a>', $text);
2061                                 $text = preg_replace("/\[url\=(.*?)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank" rel="noopener noreferrer">$2</a>', $text);
2062
2063                                 // Red compatibility, though the link can't be authenticated on Friendica
2064                                 $text = preg_replace("/\[zrl\=(.*?)\](.*?)\[\/zrl\]/ism", '<a href="$1" target="_blank" rel="noopener noreferrer">$2</a>', $text);
2065
2066
2067                                 // we may need to restrict this further if it picks up too many strays
2068                                 // link acct:user@host to a webfinger profile redirector
2069
2070                                 $text = preg_replace('/acct:([^@]+)@((?!\-)(?:[a-zA-Z\d\-]{0,62}[a-zA-Z\d]\.){1,126}(?!\d+)[a-zA-Z\d]{1,63})/', '<a href="' . DI::baseUrl() . '/acctlink?addr=$1@$2" target="extlink">acct:$1@$2</a>', $text);
2071
2072                                 // Perform MAIL Search
2073                                 $text = preg_replace("/\[mail\](.*?)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $text);
2074                                 $text = preg_replace("/\[mail\=(.*?)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $text);
2075
2076                                 /// @todo What is the meaning of these lines?
2077                                 $text = preg_replace('/\[\&amp\;([#a-z0-9]+)\;\]/', '&$1;', $text);
2078                                 $text = preg_replace('/\&\#039\;/', '\'', $text);
2079
2080                                 // Currently deactivated, it made problems with " inside of alt texts.
2081                                 //$text = preg_replace('/\&quot\;/', '"', $text);
2082
2083                                 // fix any escaped ampersands that may have been converted into links
2084                                 $text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $text);
2085
2086                                 // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
2087                                 $allowed_src_protocols = ['//', 'http://', 'https://', 'redir/', 'cid:'];
2088
2089                                 array_walk($allowed_src_protocols, function(&$value) { $value = preg_quote($value, '#');});
2090
2091                                 $text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
2092                                                          '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . DI::l10n()->t('Invalid source protocol') . '">', $text);
2093
2094                                 // sanitize href attributes (only allowlisted protocols URLs)
2095                                 // default value for backward compatibility
2096                                 $allowed_link_protocols = DI::config()->get('system', 'allowed_link_protocols', []);
2097
2098                                 // Always allowed protocol even if config isn't set or not including it
2099                                 $allowed_link_protocols[] = '//';
2100                                 $allowed_link_protocols[] = 'http://';
2101                                 $allowed_link_protocols[] = 'https://';
2102                                 $allowed_link_protocols[] = 'redir/';
2103
2104                                 array_walk($allowed_link_protocols, function(&$value) { $value = preg_quote($value, '#');});
2105
2106                                 $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
2107                                 $text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . DI::l10n()->t('Invalid link protocol') . '">', $text);
2108
2109                                 // Shared content
2110                                 $text = self::convertShare(
2111                                         $text,
2112                                         function (array $attributes, array $author_contact, $content, $is_quote_share) use ($simple_html) {
2113                                                 return self::convertShareCallback($attributes, $author_contact, $content, $is_quote_share, $simple_html);
2114                                         }, $uriid
2115                                 );
2116
2117                                 $text = self::interpolateSavedImagesIntoItemBody($uriid, $text, $saved_image);
2118
2119                                 return $text;
2120                         }); // Escaped noparse, nobb, pre
2121
2122                         // Remove escaping tags and replace new lines that remain
2123                         $text = preg_replace_callback('/\[(noparse|nobb)](.*?)\[\/\1]/ism', function ($match) {
2124                                 return str_replace("\n", "<br>", $match[2]);
2125                         }, $text);
2126
2127                         // Additionally, [pre] tags preserve spaces
2128                         $text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", function ($match) {
2129                                 return str_replace([' ', "\n"], ['&nbsp;', "<br>"], htmlentities($match[1], ENT_NOQUOTES,'UTF-8'));
2130                         }, $text);
2131
2132                         return $text;
2133                 }); // Escaped code
2134
2135                 $text = preg_replace_callback("#\[code(?:=([^\]]*))?\](.*?)\[\/code\]#ism",
2136                         function ($matches) {
2137                                 if (strpos($matches[2], "\n") !== false) {
2138                                         $return = '<pre><code class="language-' . trim($matches[1]) . '">' . htmlentities(trim($matches[2], "\n\r"), ENT_NOQUOTES, 'UTF-8') . '</code></pre>';
2139                                 } else {
2140                                         $return = '<code>' . htmlentities($matches[2], ENT_NOQUOTES, 'UTF-8') . '</code>';
2141                                 }
2142
2143                                 return $return;
2144                         },
2145                         $text
2146                 );
2147
2148                 // Default iframe allowed domains/path
2149                 $allowedIframeDomains = [
2150                         DI::baseUrl()->getHostname()
2151                         . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : '')
2152                         . '/oembed/', # The path part has to change with the source in Content\Oembed::iframe
2153                         'www.youtube.com/embed/',
2154                         'player.vimeo.com/video/',
2155                 ];
2156
2157                 $allowedIframeDomains = array_merge(
2158                         $allowedIframeDomains,
2159                         DI::config()->get('system', 'allowed_oembed') ?
2160                                 explode(',', DI::config()->get('system', 'allowed_oembed'))
2161                                 : []
2162                 );
2163
2164                 $text = HTML::purify($text, $allowedIframeDomains);
2165                 DI::profiler()->stopRecording();
2166
2167                 return trim($text);
2168         }
2169
2170         /**
2171          * Strips the "abstract" tag from the provided text
2172          *
2173          * @param string $text The text with BBCode
2174          * @return string The same text - but without "abstract" element
2175          */
2176         public static function stripAbstract(string $text): string
2177         {
2178                 DI::profiler()->startRecording('rendering');
2179
2180                 $text = BBCode::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) {
2181                         $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", ' ', $text);
2182                         $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", ' ', $text);
2183                         return $text;
2184                 });
2185
2186                 DI::profiler()->stopRecording();
2187                 return $text;
2188         }
2189
2190         /**
2191          * Returns the value of the "abstract" element
2192          *
2193          * @param string $text  The text that maybe contains the element
2194          * @param string $addon The addon for which the abstract is meant for
2195          * @return string The abstract
2196          */
2197         public static function getAbstract(string $text, string $addon = ''): string
2198         {
2199                 DI::profiler()->startRecording('rendering');
2200                 $addon = strtolower($addon);
2201
2202                 $abstract = BBCode::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) use ($addon) {
2203                         if ($addon && preg_match('#\[abstract=' . preg_quote($addon, '#') . '](.*?)\[/abstract]#ism', $text, $matches)) {
2204                                 return $matches[1];
2205                         }
2206
2207                         if (preg_match("#\[abstract](.*?)\[/abstract]#ism", $text, $matches)) {
2208                                 return $matches[1];
2209                         }
2210
2211                         return '';
2212                 });
2213
2214                 DI::profiler()->stopRecording();
2215                 return $abstract;
2216         }
2217
2218         /**
2219          * Callback function to replace a Friendica style mention in a mention for Diaspora
2220          *
2221          * @param array $match Matching values for the callback
2222          *                     [1] = Mention type (! or @)
2223          *                     [2] = Name
2224          *                     [3] = Address
2225          * @return string Replaced mention
2226          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2227          * @throws \ImagickException
2228          */
2229         private static function bbCodeMention2DiasporaCallback(array $match): string
2230         {
2231                 $contact = Contact::getByURL($match[3], false, ['addr']);
2232                 if (empty($contact['addr'])) {
2233                         return $match[0];
2234                 }
2235
2236                 $mention = $match[1] . '{' . $match[2] . '; ' . $contact['addr'] . '}';
2237                 return $mention;
2238         }
2239
2240         /**
2241          * Converts a BBCode text into Markdown
2242          *
2243          * This function converts a BBCode item body to be sent to Markdown-enabled
2244          * systems like Diaspora and Libertree
2245          *
2246          * @param string $text
2247          * @param bool   $for_diaspora Diaspora requires more changes than Libertree
2248          * @return string
2249          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2250          */
2251         public static function toMarkdown(string $text, bool $for_diaspora = true): string
2252         {
2253                 DI::profiler()->startRecording('rendering');
2254                 $original_text = $text;
2255
2256                 // Since Diaspora is creating a summary for links, this function removes them before posting
2257                 if ($for_diaspora) {
2258                         $text = self::removeShareInformation($text);
2259                 }
2260
2261                 /**
2262                  * Transform #tags, strip off the [url] and replace spaces with underscore
2263                  */
2264                 $url_search_string = "^\[\]";
2265                 $text = preg_replace_callback("/#\[url\=([$url_search_string]*)\](.*?)\[\/url\]/i",
2266                         function ($matches) {
2267                                 return '#' . str_replace(' ', '_', $matches[2]);
2268                         },
2269                         $text
2270                 );
2271
2272                 // Converting images with size parameters to simple images. Markdown doesn't know it.
2273                 $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $text);
2274
2275                 // Convert it to HTML - don't try oembed
2276                 if ($for_diaspora) {
2277                         $text = self::convert($text, false, self::DIASPORA);
2278
2279                         // Add all tags that maybe were removed
2280                         if (preg_match_all("/#\[url\=([$url_search_string]*)\](.*?)\[\/url\]/ism", $original_text, $tags)) {
2281                                 $tagline = '';
2282                                 foreach ($tags[2] as $tag) {
2283                                         $tag = html_entity_decode($tag, ENT_QUOTES, 'UTF-8');
2284                                         if (!strpos(html_entity_decode($text, ENT_QUOTES, 'UTF-8'), '#' . $tag)) {
2285                                                 $tagline .= '#' . $tag . ' ';
2286                                         }
2287                                 }
2288                                 $text = $text . ' ' . $tagline;
2289                         }
2290                 } else {
2291                         $text = self::convert($text, false, self::CONNECTORS);
2292                 }
2293
2294                 // If a link is followed by a quote then there should be a newline before it
2295                 // Maybe we should make this newline at every time before a quote.
2296                 $text = str_replace(['</a><blockquote>'], ['</a><br><blockquote>'], $text);
2297
2298                 // Now convert HTML to Markdown
2299                 $text = HTML::toMarkdown($text);
2300
2301                 // Libertree has a problem with escaped hashtags.
2302                 $text = str_replace(['\#'], ['#'], $text);
2303
2304                 // Remove any leading or trailing whitespace, as this will mess up
2305                 // the Diaspora signature verification and cause the item to disappear
2306                 $text = trim($text);
2307
2308                 if ($for_diaspora) {
2309                         $url_search_string = "^\[\]";
2310                         $text = preg_replace_callback(
2311                                 "/([@!])\[(.*?)\]\(([$url_search_string]*?)\)/ism",
2312                                 ['self', 'bbCodeMention2DiasporaCallback'],
2313                                 $text
2314                         );
2315                 }
2316
2317                 Hook::callAll('bb2diaspora', $text);
2318
2319                 DI::profiler()->stopRecording();
2320                 return $text;
2321         }
2322
2323         /**
2324          * Pull out all #hashtags and @person tags from $string.
2325          *
2326          * We also get @person@domain.com - which would make
2327          * the regex quite complicated as tags can also
2328          * end a sentence. So we'll run through our results
2329          * and strip the period from any tags which end with one.
2330          * Returns array of tags found, or empty array.
2331          *
2332          * @param string $string Post content
2333          * @return array List of tag and person names
2334          */
2335         public static function getTags(string $string): array
2336         {
2337                 DI::profiler()->startRecording('rendering');
2338                 $ret = [];
2339
2340                 self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img'], function ($string) use (&$ret) {
2341                         // Convert hashtag links to hashtags
2342                         $string = preg_replace('/#\[url\=([^\[\]]*)\](.*?)\[\/url\]/ism', '#$2 ', $string);
2343
2344                         // Force line feeds at bbtags
2345                         $string = str_replace(['[', ']'], ["\n[", "]\n"], $string);
2346
2347                         // ignore anything in a bbtag
2348                         $string = preg_replace('/\[(.*?)\]/sm', '', $string);
2349
2350                         // Match full names against @tags including the space between first and last
2351                         // We will look these up afterward to see if they are full names or not recognisable.
2352
2353                         if (preg_match_all('/(@[^ \x0D\x0A,:?]+ [^ \x0D\x0A@,:?]+)([ \x0D\x0A@,:?]|$)/', $string, $matches)) {
2354                                 foreach ($matches[1] as $match) {
2355                                         if (strstr($match, ']')) {
2356                                                 // we might be inside a bbcode color tag - leave it alone
2357                                                 continue;
2358                                         }
2359
2360                                         if (substr($match, -1, 1) === '.') {
2361                                                 $ret[] = substr($match, 0, -1);
2362                                         } else {
2363                                                 $ret[] = $match;
2364                                         }
2365                                 }
2366                         }
2367
2368                         // Otherwise pull out single word tags. These can be @nickname, @first_last
2369                         // and #hash tags.
2370
2371                         if (preg_match_all('/([!#@][^\^ \x0D\x0A,;:?\']*[^\^ \x0D\x0A,;:?!\'.])/', $string, $matches)) {
2372                                 foreach ($matches[1] as $match) {
2373                                         if (strstr($match, ']')) {
2374                                                 // we might be inside a bbcode color tag - leave it alone
2375                                                 continue;
2376                                         }
2377
2378                                         // try not to catch url fragments
2379                                         if (strpos($string, $match) && preg_match('/[a-zA-z0-9\/]/', substr($string, strpos($string, $match) - 1, 1))) {
2380                                                 continue;
2381                                         }
2382
2383                                         $ret[] = $match;
2384                                 }
2385                         }
2386                 });
2387
2388                 DI::profiler()->stopRecording();
2389                 return array_unique($ret);
2390         }
2391
2392         /**
2393          * Expand tags to URLs, checks the tag is at the start of a line or preceded by a non-word character
2394          *
2395          * @param string $body HTML/BBCode
2396          * @return string body with expanded tags
2397          */
2398         public static function expandTags(string $body): string
2399         {
2400                 return preg_replace_callback("/(?<=\W|^)([!#@])([^\^ \x0D\x0A,;:?'\"]*[^\^ \x0D\x0A,;:?!'\".])/",
2401                         function (array $match) {
2402                                 switch ($match[1]) {
2403                                         case '!':
2404                                         case '@':
2405                                                 $contact = Contact::getByURL($match[2]);
2406                                                 if (!empty($contact)) {
2407                                                         return $match[1] . '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
2408                                                 } else {
2409                                                         return $match[1] . $match[2];
2410                                                 }
2411                                                 break;
2412
2413                                         case '#':
2414                                         default:
2415                                                 return $match[1] . '[url=' . DI::baseUrl() . '/search?tag=' . $match[2] . ']' . $match[2] . '[/url]';
2416                                 }
2417                         }, $body);
2418         }
2419
2420         /**
2421          * Perform a custom function on a text after having escaped blocks enclosed in the provided tag list.
2422          *
2423          * @param string   $text HTML/BBCode
2424          * @param array    $tagList A list of tag names, e.g ['noparse', 'nobb', 'pre']
2425          * @param callable $callback
2426          * @return string
2427          * @see Strings::performWithEscapedBlocks
2428          */
2429         public static function performWithEscapedTags(string $text, array $tagList, callable $callback): string
2430         {
2431                 $tagList = array_map('preg_quote', $tagList);
2432
2433                 return Strings::performWithEscapedBlocks($text, '#\[(?:' . implode('|', $tagList) . ').*?\[/(?:' . implode('|', $tagList) . ')]#ism', $callback);
2434         }
2435
2436         /**
2437          * Replaces mentions in the provided message body in BBCode links for the provided user and network if any
2438          *
2439          * @param string $body HTML/BBCode
2440          * @param int $profile_uid Profile user id
2441          * @param string $network Network name
2442          * @return string HTML/BBCode with inserted images
2443          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2444          * @throws \ImagickException
2445          */
2446         public static function setMentions(string $body, $profile_uid = 0, $network = '')
2447         {
2448                 DI::profiler()->startRecording('rendering');
2449                 $body = self::performWithEscapedTags($body, ['noparse', 'pre', 'code', 'img'], function ($body) use ($profile_uid, $network) {
2450                         $tags = self::getTags($body);
2451
2452                         $tagged = [];
2453
2454                         foreach ($tags as $tag) {
2455                                 $tag_type = substr($tag, 0, 1);
2456
2457                                 if ($tag_type == Tag::TAG_CHARACTER[Tag::HASHTAG]) {
2458                                         continue;
2459                                 }
2460
2461                                 /*
2462                                  * If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
2463                                  * Robert Johnson should be first in the $tags array
2464                                  */
2465                                 foreach ($tagged as $nextTag) {
2466                                         if (stristr($nextTag, $tag . ' ')) {
2467                                                 continue 2;
2468                                         }
2469                                 }
2470
2471                                 if (($success = Item::replaceTag($body, $profile_uid, $tag, $network)) && $success['replaced']) {
2472                                         $tagged[] = $tag;
2473                                 }
2474                         }
2475
2476                         return $body;
2477                 });
2478
2479                 DI::profiler()->stopRecording();
2480                 return $body;
2481         }
2482
2483         /**
2484          * @param string      $author  Author display name
2485          * @param string      $profile Author profile URL
2486          * @param string      $avatar  Author profile picture URL
2487          * @param string      $link    Post source URL
2488          * @param string      $posted  Post created date
2489          * @param string|null $guid    Post guid (if any)
2490          * @param string|null $uri     Post uri (if any)
2491          * @return string
2492          * @TODO Rewrite to handle over whole record array
2493          */
2494         public static function getShareOpeningTag(string $author, string $profile, string $avatar, string $link, string $posted, string $guid = null, string $uri = null): string
2495         {
2496                 DI::profiler()->startRecording('rendering');
2497                 $header = "[share author='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $author) .
2498                         "' profile='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $profile) .
2499                         "' avatar='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $avatar) .
2500                         "' link='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $link) .
2501                         "' posted='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $posted);
2502
2503                 if ($guid) {
2504                         $header .= "' guid='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $guid);
2505                 }
2506
2507                 if ($uri) {
2508                         $header .= "' message_id='" . str_replace(["'", "[", "]"], ["&#x27;", "&#x5B;", "&#x5D;"], $uri);
2509                 }
2510
2511                 $header  .= "']";
2512
2513                 DI::profiler()->stopRecording();
2514                 return $header;
2515         }
2516
2517         /**
2518          * Returns the BBCode relevant to embed the provided URL in a post body.
2519          * For media type, it will return [img], [video] and [audio] tags.
2520          * For regular web pages, it will either output a [bookmark] tag if title and description were provided,
2521          * an [attachment] tag or a simple [url] tag depending on $tryAttachment.
2522          *
2523          * @param string      $url
2524          * @param bool        $tryAttachment
2525          * @param string|null $title
2526          * @param string|null $description
2527          * @param string|null $tags
2528          * @return string
2529          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2530          * @see ParseUrl::getSiteinfoCached
2531          */
2532         public static function embedURL(string $url, bool $tryAttachment = true, string $title = null, string $description = null, string $tags = null): string
2533         {
2534                 DI::profiler()->startRecording('rendering');
2535                 DI::logger()->info($url);
2536
2537                 // If there is already some content information submitted we don't
2538                 // need to parse the url for content.
2539                 if (!empty($title) && !empty($description)) {
2540                         $title = str_replace(["\r", "\n"], ['', ''], $title);
2541
2542                         $description = '[quote]' . trim($description) . '[/quote]' . "\n";
2543
2544                         $str_tags = '';
2545                         if (!empty($tags)) {
2546                                 $arr_tags = ParseUrl::convertTagsToArray($tags);
2547                                 if (count($arr_tags)) {
2548                                         $str_tags = "\n" . implode(' ', $arr_tags) . "\n";
2549                                 }
2550                         }
2551
2552                         $result = sprintf('[bookmark=%s]%s[/bookmark]%s', $url, ($title) ? $title : $url, $description) . $str_tags;
2553
2554                         DI::logger()->info('(unparsed): returns: ' . $result);
2555
2556                         DI::profiler()->stopRecording();
2557                         return $result;
2558                 }
2559
2560                 $siteinfo = ParseUrl::getSiteinfoCached($url);
2561
2562                 if (in_array($siteinfo['type'], ['image', 'video', 'audio'])) {
2563                         switch ($siteinfo['type']) {
2564                                 case 'video':
2565                                         $bbcode = "\n" . '[video]' . $url . '[/video]' . "\n";
2566                                         break;
2567                                 case 'audio':
2568                                         $bbcode = "\n" . '[audio]' . $url . '[/audio]' . "\n";
2569                                         break;
2570                                 default:
2571                                         $bbcode = "\n" . '[img]' . $url . '[/img]' . "\n";
2572                                         break;
2573                         }
2574
2575                         DI::profiler()->stopRecording();
2576                         return $bbcode;
2577                 }
2578
2579                 unset($siteinfo['keywords']);
2580
2581                 // Bypass attachment if parse url for a comment
2582                 if (!$tryAttachment) {
2583                         DI::profiler()->stopRecording();
2584                         return "\n" . '[url=' . $url . ']' . $siteinfo['title'] . '[/url]';
2585                 }
2586
2587                 // Format it as BBCode attachment
2588                 $bbcode = "\n" . PageInfo::getFooterFromData($siteinfo);
2589                 DI::profiler()->stopRecording();
2590                 return $bbcode;
2591         }
2592 }