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