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