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