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