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