]> git.mxchange.org Git - friendica.git/blob - include/bbcode.php
0544c4c61665e1f285ee2122bfb56d7e582e5ec7
[friendica.git] / include / bbcode.php
1 <?php
2 /**
3  * @file include/bbcode.php
4  */
5 use Friendica\App;
6 use Friendica\Content\Smilies;
7 use Friendica\Content\OEmbed;
8 use Friendica\Content\Text\BBCode;
9 use Friendica\Core\Addon;
10 use Friendica\Core\Cache;
11 use Friendica\Core\L10n;
12 use Friendica\Core\System;
13 use Friendica\Core\Config;
14 use Friendica\Model\Contact;
15 use Friendica\Util\Map;
16 use Friendica\Util\Network;
17
18 require_once 'include/event.php';
19 require_once 'mod/proxy.php';
20
21 function bb_PictureCacheExt($matches) {
22         if (strpos($matches[3], "data:image/") === 0) {
23                 return $matches[0];
24         }
25
26         $matches[3] = proxy_url($matches[3]);
27         return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]";
28 }
29
30 function bb_PictureCache($matches) {
31         if (strpos($matches[1], "data:image/") === 0) {
32                 return $matches[0];
33         }
34
35         $matches[1] = proxy_url($matches[1]);
36         return "[img]" . $matches[1] . "[/img]";
37 }
38
39 function bb_map_coords($match) {
40         // the extra space in the following line is intentional
41         return str_replace($match[0], '<div class="map"  >' . Map::byCoordinates(str_replace('/', ' ', $match[1])) . '</div>', $match[0]);
42 }
43 function bb_map_location($match) {
44         // the extra space in the following line is intentional
45         return str_replace($match[0], '<div class="map"  >' . Map::byLocation($match[1]) . '</div>', $match[0]);
46 }
47
48 /**
49  * Processes [attachment] tags
50  *
51  * Note: Can produce a [bookmark] tag in the returned string
52  *
53  * @brief Processes [attachment] tags
54  * @param string $return
55  * @param bool|int $simplehtml
56  * @param bool $tryoembed
57  * @return string
58  */
59 function bb_attachment($return, $simplehtml = false, $tryoembed = true)
60 {
61         $data = BBCode::getAttachmentData($return);
62         if (!$data) {
63                 return $return;
64         }
65
66         if (isset($data["title"])) {
67                 $data["title"] = strip_tags($data["title"]);
68                 $data["title"] = str_replace(["http://", "https://"], "", $data["title"]);
69         }
70
71         if (((strpos($data["text"], "[img=") !== false) || (strpos($data["text"], "[img]") !== false) || Config::get('system', 'always_show_preview')) && ($data["image"] != "")) {
72                 $data["preview"] = $data["image"];
73                 $data["image"] = "";
74         }
75
76         $return = '';
77         if ($simplehtml == 7) {
78                 $return = style_url_for_mastodon($data["url"]);
79         } elseif (($simplehtml != 4) && ($simplehtml != 0)) {
80                 $return = sprintf('<a href="%s" target="_blank">%s</a><br>', $data["url"], $data["title"]);
81         } else {
82                 try {
83                         if ($tryoembed && OEmbed::isAllowedURL($data['url'])) {
84                                 $return = OEmbed::getHTML($data['url'], $data['title']);
85                         } else {
86                                 throw new Exception('OEmbed is disabled for this attachment.');
87                         }
88                 } catch (Exception $e) {
89                         if ($simplehtml != 4) {
90                                 $return = sprintf('<div class="type-%s">', $data["type"]);
91                         }
92
93                         if ($data["image"] != "") {
94                                 $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-image" /></a><br />', $data["url"], proxy_url($data["image"]), $data["title"]);
95                         } elseif ($data["preview"] != "") {
96                                 $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-preview" /></a><br />', $data["url"], proxy_url($data["preview"]), $data["title"]);
97                         }
98
99                         if (($data["type"] == "photo") && ($data["url"] != "") && ($data["image"] != "")) {
100                                 $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-image" /></a>', $data["url"], proxy_url($data["image"]), $data["title"]);
101                         } else {
102                                 $return .= sprintf('<h4><a href="%s">%s</a></h4>', $data['url'], $data['title']);
103                         }
104
105                         if ($data["description"] != "" && $data["description"] != $data["title"]) {
106                                 $return .= sprintf('<blockquote>%s</blockquote>', trim(bbcode($data["description"])));
107                         }
108
109                         if ($data["type"] == "link") {
110                                 $return .= sprintf('<sup><a href="%s">%s</a></sup>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
111                         }
112
113                         if ($simplehtml != 4) {
114                                 $return .= '</div>';
115                         }
116                 }
117         }
118
119         return trim($data["text"] . ' ' . $return . ' ' . $data["after"]);
120 }
121
122 function bb_remove_share_information($Text, $plaintext = false, $nolink = false) {
123
124         $data = BBCode::getAttachmentData($Text);
125
126         if (!$data) {
127                 return $Text;
128         } elseif ($nolink) {
129                 return $data["text"] . $data["after"];
130         }
131
132         $title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false);
133         $text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false);
134         if ($plaintext || (($title != "") && strstr($text, $title))) {
135                 $data["title"] = $data["url"];
136         } elseif (($text != "") && strstr($title, $text)) {
137                 $data["text"] = $data["title"];
138                 $data["title"] = $data["url"];
139         }
140
141         if (($data["text"] == "") && ($data["title"] != "") && ($data["url"] == "")) {
142                 return $data["title"] . $data["after"];
143         }
144
145         // If the link already is included in the post, don't add it again
146         if (($data["url"] != "") && strpos($data["text"], $data["url"])) {
147                 return $data["text"] . $data["after"];
148         }
149
150         $text = $data["text"];
151
152         if (($data["url"] != "") && ($data["title"] != "")) {
153                 $text .= "\n[url=" . $data["url"] . "]" . $data["title"] . "[/url]";
154         } elseif (($data["url"] != "")) {
155                 $text .= "\n" . $data["url"];
156         }
157
158         return $text . "\n" . $data["after"];
159 }
160
161 function bb_cleanstyle($st) {
162         return "<span style=\"" . cleancss($st[1]) . ";\">" . $st[2] . "</span>";
163 }
164
165 function bb_cleanclass($st) {
166         return "<span class=\"" . cleancss($st[1]) . "\">" . $st[2] . "</span>";
167 }
168
169 function cleancss($input) {
170
171         $cleaned = "";
172
173         $input = strtolower($input);
174
175         for ($i = 0; $i < strlen($input); $i++) {
176                 $char = substr($input, $i, 1);
177
178                 if (($char >= "a") && ($char <= "z")) {
179                         $cleaned .= $char;
180                 }
181
182                 if (!(strpos(" #;:0123456789-_.%", $char) === false)) {
183                         $cleaned .= $char;
184                 }
185         }
186
187         return $cleaned;
188 }
189
190 /**
191  * @brief Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
192  * @param array $match Array with the matching values
193  * @return string reformatted link including HTML codes
194  */
195 function bb_style_url($match) {
196         $url = $match[1];
197
198         if (isset($match[2]) && ($match[1] != $match[2])) {
199                 return $match[0];
200         }
201
202         $parts = parse_url($url);
203         if (!isset($parts['scheme'])) {
204                 return $match[0];
205         }
206
207         return style_url_for_mastodon($url);
208 }
209
210 /**
211  * @brief Converts [url] BBCodes in a format that looks fine on Mastodon and GNU Social.
212  * @param string $url URL that is about to be reformatted
213  * @return string reformatted link including HTML codes
214  */
215 function style_url_for_mastodon($url) {
216         $styled_url = $url;
217
218         $parts = parse_url($url);
219         $scheme = $parts['scheme'].'://';
220         $styled_url = str_replace($scheme, '', $styled_url);
221
222         $html = '<a href="%s" class="attachment" rel="nofollow noopener" target="_blank">'.
223                  '<span class="invisible">%s</span>';
224
225         if (strlen($styled_url) > 30) {
226                 $html .= '<span class="ellipsis">%s</span>'.
227                         '<span class="invisible">%s</span></a>';
228
229                 $ellipsis = substr($styled_url, 0, 30);
230                 $rest = substr($styled_url, 30);
231                 return sprintf($html, $url, $scheme, $ellipsis, $rest);
232         } else {
233                 $html .= '%s</a>';
234                 return sprintf($html, $url, $scheme, $styled_url);
235         }
236 }
237
238 function stripcode_br_cb($s) {
239         return '[code]' . str_replace('<br />', '', $s[1]) . '[/code]';
240 }
241
242 /*
243  * [noparse][i]italic[/i][/noparse] turns into
244  * [noparse][ i ]italic[ /i ][/noparse],
245  * to hide them from parser.
246  */
247 function bb_spacefy($st) {
248         $whole_match = $st[0];
249         $captured = $st[1];
250         $spacefied = preg_replace("/\[(.*?)\]/", "[ $1 ]", $captured);
251         $new_str = str_replace($captured, $spacefied, $whole_match);
252         return $new_str;
253 }
254
255 /*
256  * The previously spacefied [noparse][ i ]italic[ /i ][/noparse],
257  * now turns back and the [noparse] tags are trimed
258  * returning [i]italic[/i]
259  */
260 function bb_unspacefy_and_trim($st) {
261         $captured = $st[1];
262         $unspacefied = preg_replace("/\[ (.*?)\ ]/", "[$1]", $captured);
263         return $unspacefied;
264 }
265
266 function bb_find_open_close($s, $open, $close, $occurence = 1) {
267         if ($occurence < 1) {
268                 $occurence = 1;
269         }
270
271         $start_pos = -1;
272         for ($i = 1; $i <= $occurence; $i++) {
273                 if ($start_pos !== false) {
274                         $start_pos = strpos($s, $open, $start_pos + 1);
275                 }
276         }
277
278         if ($start_pos === false) {
279                 return false;
280         }
281
282         $end_pos = strpos($s, $close, $start_pos);
283
284         if ($end_pos === false) {
285                 return false;
286         }
287
288         $res = [ 'start' => $start_pos, 'end' => $end_pos ];
289
290         return $res;
291 }
292
293 function get_bb_tag_pos($s, $name, $occurence = 1) {
294         if ($occurence < 1) {
295                 $occurence = 1;
296         }
297
298         $start_open = -1;
299         for ($i = 1; $i <= $occurence; $i++) {
300                 if ($start_open !== false) {
301                         $start_open = strpos($s, '[' . $name, $start_open + 1); // allow [name= type tags
302                 }
303         }
304
305         if ($start_open === false) {
306                 return false;
307         }
308
309         $start_equal = strpos($s, '=', $start_open);
310         $start_close = strpos($s, ']', $start_open);
311
312         if ($start_close === false) {
313                 return false;
314         }
315
316         $start_close++;
317
318         $end_open = strpos($s, '[/' . $name . ']', $start_close);
319
320         if ($end_open === false) {
321                 return false;
322         }
323
324         $res = [
325                 'start' => [
326                         'open'  => $start_open,
327                         'close' => $start_close
328                 ],
329                 'end'   => [
330                         'open'  => $end_open,
331                         'close' => $end_open + strlen('[/' . $name . ']')
332                 ],
333         ];
334
335         if ($start_equal !== false) {
336                 $res['start']['equal'] = $start_equal + 1;
337         }
338
339         return $res;
340 }
341
342 function bb_tag_preg_replace($pattern, $replace, $name, $s) {
343
344         $string = $s;
345
346         $occurence = 1;
347         $pos = get_bb_tag_pos($string, $name, $occurence);
348         while ($pos !== false && $occurence < 1000) {
349                 $start = substr($string, 0, $pos['start']['open']);
350                 $subject = substr($string, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
351                 $end = substr($string, $pos['end']['close']);
352                 if ($end === false) {
353                         $end = '';
354                 }
355
356                 $subject = preg_replace($pattern, $replace, $subject);
357                 $string = $start . $subject . $end;
358
359                 $occurence++;
360                 $pos = get_bb_tag_pos($string, $name, $occurence);
361         }
362
363         return $string;
364 }
365
366 function bb_extract_images($body) {
367
368         $saved_image = [];
369         $orig_body = $body;
370         $new_body = '';
371
372         $cnt = 0;
373         $img_start = strpos($orig_body, '[img');
374         $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
375         $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
376         while (($img_st_close !== false) && ($img_end !== false)) {
377
378                 $img_st_close++; // make it point to AFTER the closing bracket
379                 $img_end += $img_start;
380
381                 if (! strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
382                         // This is an embedded image
383
384                         $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
385                         $new_body = $new_body . substr($orig_body, 0, $img_start) . '[$#saved_image' . $cnt . '#$]';
386
387                         $cnt++;
388                 } else {
389                         $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
390                 }
391
392                 $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
393
394                 if ($orig_body === false) {
395                         // in case the body ends on a closing image tag
396                         $orig_body = '';
397                 }
398
399                 $img_start = strpos($orig_body, '[img');
400                 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
401                 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
402         }
403
404         $new_body = $new_body . $orig_body;
405
406         return ['body' => $new_body, 'images' => $saved_image];
407 }
408
409 function bb_replace_images($body, $images) {
410
411         $newbody = $body;
412
413         $cnt = 0;
414         foreach ($images as $image) {
415                 // We're depending on the property of 'foreach' (specified on the PHP website) that
416                 // it loops over the array starting from the first element and going sequentially
417                 // to the last element
418                 $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '<img src="' . proxy_url($image) .'" alt="' . L10n::t('Image/photo') . '" />', $newbody);
419                 $cnt++;
420         }
421
422         return $newbody;
423 }
424
425 /**
426  * Processes [share] tags
427  *
428  * Note: Can produce a [bookmark] tag in the output
429  *
430  * @brief Processes [share] tags
431  * @param array    $share      preg_match_callback result array
432  * @param bool|int $simplehtml
433  * @return string
434  */
435 function bb_ShareAttributes($share, $simplehtml)
436 {
437         $attributes = $share[2];
438
439         $author = "";
440         preg_match("/author='(.*?)'/ism", $attributes, $matches);
441         if (x($matches, 1)) {
442                 $author = html_entity_decode($matches[1], ENT_QUOTES, 'UTF-8');
443         }
444
445         preg_match('/author="(.*?)"/ism', $attributes, $matches);
446         if (x($matches, 1)) {
447                 $author = $matches[1];
448         }
449
450         $profile = "";
451         preg_match("/profile='(.*?)'/ism", $attributes, $matches);
452         if (x($matches, 1)) {
453                 $profile = $matches[1];
454         }
455
456         preg_match('/profile="(.*?)"/ism', $attributes, $matches);
457         if (x($matches, 1)) {
458                 $profile = $matches[1];
459         }
460
461         $avatar = "";
462         preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
463         if (x($matches, 1)) {
464                 $avatar = $matches[1];
465         }
466
467         preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
468         if (x($matches, 1)) {
469                 $avatar = $matches[1];
470         }
471
472         $link = "";
473         preg_match("/link='(.*?)'/ism", $attributes, $matches);
474         if (x($matches, 1)) {
475                 $link = $matches[1];
476         }
477
478         preg_match('/link="(.*?)"/ism', $attributes, $matches);
479         if (x($matches, 1)) {
480                 $link = $matches[1];
481         }
482
483         $posted = "";
484
485         preg_match("/posted='(.*?)'/ism", $attributes, $matches);
486         if (x($matches, 1)) {
487                 $posted = $matches[1];
488         }
489
490         preg_match('/posted="(.*?)"/ism', $attributes, $matches);
491         if (x($matches, 1)) {
492                 $posted = $matches[1];
493         }
494
495         // We only call this so that a previously unknown contact can be added.
496         // This is important for the function "get_contact_details_by_url".
497         // This function then can fetch an entry from the contact table.
498         Contact::getIdForURL($profile, 0);
499
500         $data = Contact::getDetailsByURL($profile);
501
502         if (x($data, "name") && x($data, "addr")) {
503                 $userid_compact = $data["name"] . " (" . $data["addr"] . ")";
504         } else {
505                 $userid_compact = GetProfileUsername($profile, $author, true);
506         }
507
508         if (x($data, "addr")) {
509                 $userid = $data["addr"];
510         } else {
511                 $userid = GetProfileUsername($profile, $author, false);
512         }
513
514         if (x($data, "name")) {
515                 $author = $data["name"];
516         }
517
518         if (x($data, "micro")) {
519                 $avatar = $data["micro"];
520         }
521
522         $preshare = trim($share[1]);
523         if ($preshare != "") {
524                 $preshare .= "<br />";
525         }
526
527         switch ($simplehtml) {
528                 case 1:
529                         $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $userid . "</a>: <br />»" . $share[3] . "«";
530                         break;
531                 case 2:
532                         $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
533                         break;
534                 case 3: // Diaspora
535                         $headline .= '<b>' . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . $userid . ':</b><br />';
536
537                         $text = trim($share[1]);
538
539                         if ($text != "") {
540                                 $text .= "<hr />";
541                         }
542
543                         if (stripos(normalise_link($link), 'http://twitter.com/') === 0) {
544                                 $text .= $headline . '<blockquote>' . trim($share[3]) . "</blockquote><br />";
545
546                                 if ($link != "") {
547                                         $text .= '<br /><a href="' . $link . '">[l]</a>';
548                                 }
549                         } else {
550                                 $text .= '<br /><a href="' . $link . '">' . $link . '</a>';
551                         }
552
553                         break;
554                 case 4:
555                         $headline .= '<br /><b>' . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
556                         $headline .= L10n::t('<a href="%1$s" target="_blank">%2$s</a> %3$s', $link, $userid, $posted);
557                         $headline .= ":</b><br />";
558
559                         $text = trim($share[1]);
560
561                         if ($text != "") {
562                                 $text .= "<hr />";
563                         }
564
565                         $text .= $headline . '<blockquote class="shared_content">' . trim($share[3]) . "</blockquote><br />";
566
567                         break;
568                 case 5:
569                         $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
570                         break;
571                 case 6: // app.net
572                         $text = $preshare . "&gt;&gt; @" . $userid_compact . ": <br />" . $share[3];
573                         break;
574                 case 7: // statusnet/GNU Social
575                         $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . " @" . $userid_compact . ": " . $share[3];
576                         break;
577                 case 8: // twitter
578                         $text = $preshare . "RT @" . $userid_compact . ": " . $share[3];
579                         break;
580                 case 9: // Google+/Facebook
581                         $text = $preshare . html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
582
583                         if ($link != "") {
584                                 $text .= "<br /><br />" . $link;
585                         }
586                         break;
587                 default:
588                         // Transforms quoted tweets in rich attachments to avoid nested tweets
589                         if (stripos(normalise_link($link), 'http://twitter.com/') === 0 && OEmbed::isAllowedURL($link)) {
590                                 try {
591                                         $oembed = OEmbed::getHTML($link, $preshare);
592                                 } catch (Exception $e) {
593                                         $oembed = sprintf('[bookmark=%s]%s[/bookmark]', $link, $preshare);
594                                 }
595
596                                 $text = $preshare . $oembed;
597                         } else {
598                                 $text = trim($share[1]) . "\n";
599
600                                 $avatar = proxy_url($avatar, false, PROXY_SIZE_THUMB);
601
602                                 $tpl = get_markup_template('shared_content.tpl');
603                                 $text .= replace_macros($tpl, [
604                                         '$profile' => $profile,
605                                         '$avatar' => $avatar,
606                                         '$author' => $author,
607                                         '$link' => $link,
608                                         '$posted' => $posted,
609                                         '$content' => trim($share[3])
610                                 ]);
611                         }
612                         break;
613         }
614
615         return $text;
616 }
617
618 function GetProfileUsername($profile, $username, $compact = false, $getnetwork = false) {
619
620         $twitter = preg_replace("=https?://twitter.com/(.*)=ism", "$1@twitter.com", $profile);
621         if ($twitter != $profile) {
622                 if ($getnetwork) {
623                         return NETWORK_TWITTER;
624                 } elseif ($compact) {
625                         return $twitter;
626                 } else {
627                         return ($username . " (" . $twitter . ")");
628                 }
629         }
630
631         $appnet = preg_replace("=https?://alpha.app.net/(.*)=ism", "$1@alpha.app.net", $profile);
632         if ($appnet != $profile) {
633                 if ($getnetwork) {
634                         return NETWORK_APPNET;
635                 } elseif ($compact) {
636                         return $appnet;
637                 } else {
638                         return ($username . " (" . $appnet . ")");
639                 }
640         }
641
642         $gplus = preg_replace("=https?://plus.google.com/(.*)=ism", "$1@plus.google.com", $profile);
643         if ($gplus != $profile) {
644                 if ($getnetwork) {
645                         return NETWORK_GPLUS;
646                 } elseif ($compact) {
647                         return ($gplususername . " (" . $username . ")");
648                 } else {
649                         return ($username . " (" . $gplus . ")");
650                 }
651         }
652
653         $friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2@$1", $profile);
654         if ($friendica != $profile) {
655                 if ($getnetwork) {
656                         return NETWORK_DFRN;
657                 } elseif ($compact) {
658                         return $friendica;
659                 } else {
660                         return ($username . " (" . $friendica . ")");
661                 }
662         }
663
664         $diaspora = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
665         if ($diaspora != $profile) {
666                 if ($getnetwork) {
667                         return NETWORK_DIASPORA;
668                 } elseif ($compact) {
669                         return $diaspora;
670                 } else {
671                         return ($username . " (" . $diaspora . ")");
672                 }
673         }
674
675         $red = preg_replace("=https?://(.*)/channel/(.*)=ism", "$2@$1", $profile);
676         if ($red != $profile) {
677                 if ($getnetwork) {
678                         // red is identified as Diaspora - friendica can't connect directly to it
679                         return NETWORK_DIASPORA;
680                 } elseif ($compact) {
681                         return $red;
682                 } else {
683                         return ($username . " (" . $red . ")");
684                 }
685         }
686
687         $StatusnetHost = preg_replace("=https?://(.*)/user/(.*)=ism", "$1", $profile);
688         if ($StatusnetHost != $profile) {
689                 $StatusnetUser = preg_replace("=https?://(.*)/user/(.*)=ism", "$2", $profile);
690                 if ($StatusnetUser != $profile) {
691                         /// @TODO Some hosts run on https, not just http and sometimes http is disabled, let's support both here
692                         $UserData = Network::fetchURL("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
693                         $user = json_decode($UserData);
694                         if ($user) {
695                                 if ($getnetwork) {
696                                         return NETWORK_STATUSNET;
697                                 } elseif ($compact) {
698                                         return ($user->screen_name . "@" . $StatusnetHost);
699                                 } else {
700                                         return ($username . " (" . $user->screen_name . "@" . $StatusnetHost . ")");
701                                 }
702                         }
703                 }
704         }
705
706         // pumpio (http://host.name/user)
707         $rest = preg_replace("=https?://([\.\w]+)/([\.\w]+)(.*)=ism", "$3", $profile);
708         if ($rest == "") {
709                 $pumpio = preg_replace("=https?://([\.\w]+)/([\.\w]+)(.*)=ism", "$2@$1", $profile);
710                 if ($pumpio != $profile) {
711                         if ($getnetwork) {
712                                 return NETWORK_PUMPIO;
713                         } elseif ($compact) {
714                                 return $pumpio;
715                         } else {
716                                 return ($username . " (" . $pumpio . ")");
717                         }
718                 }
719         }
720
721         return $username;
722 }
723
724 function bb_DiasporaLinks($match) {
725         return "[url=".System::baseUrl()."/display/".$match[1]."]".$match[2]."[/url]";
726 }
727
728 function bb_RemovePictureLinks($match) {
729         $text = Cache::get($match[1]);
730
731         if (is_null($text)) {
732                 $a = get_app();
733
734                 $stamp1 = microtime(true);
735
736                 $ch = @curl_init($match[1]);
737                 @curl_setopt($ch, CURLOPT_NOBODY, true);
738                 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
739                 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
740                 @curl_exec($ch);
741                 $curl_info = @curl_getinfo($ch);
742
743                 $a->save_timestamp($stamp1, "network");
744
745                 if (substr($curl_info["content_type"], 0, 6) == "image/")
746                         $text = "[url=".$match[1]."]".$match[1]."[/url]";
747                 else {
748                         $text = "[url=".$match[2]."]".$match[2]."[/url]";
749
750                         // if its not a picture then look if its a page that contains a picture link
751                         require_once("include/network.php");
752
753                         $body = Network::fetchURL($match[1]);
754
755                         $doc = new DOMDocument();
756                         @$doc->loadHTML($body);
757                         $xpath = new DomXPath($doc);
758                         $list = $xpath->query("//meta[@name]");
759                         foreach ($list as $node) {
760                                 $attr = [];
761
762                                 if ($node->attributes->length)
763                                         foreach ($node->attributes as $attribute)
764                                                 $attr[$attribute->name] = $attribute->value;
765
766                                 if (strtolower($attr["name"]) == "twitter:image")
767                                         $text = "[url=".$attr["content"]."]".$attr["content"]."[/url]";
768                         }
769                 }
770                 Cache::set($match[1],$text);
771         }
772
773         return $text;
774 }
775
776 function bb_expand_links($match) {
777         if (($match[3] == "") || ($match[2] == $match[3]) || stristr($match[2], $match[3])) {
778                 return ($match[1] . "[url]" . $match[2] . "[/url]");
779         } else {
780                 return ($match[1] . $match[3] . " [url]" . $match[2] . "[/url]");
781         }
782 }
783
784 function bb_CleanPictureLinksSub($match) {
785         $text = Cache::get($match[1]);
786
787         if (is_null($text)) {
788                 $a = get_app();
789
790                 $stamp1 = microtime(true);
791
792                 $ch = @curl_init($match[1]);
793                 @curl_setopt($ch, CURLOPT_NOBODY, true);
794                 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
795                 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
796                 @curl_exec($ch);
797                 $curl_info = @curl_getinfo($ch);
798
799                 $a->save_timestamp($stamp1, "network");
800
801                 // if its a link to a picture then embed this picture
802                 if (substr($curl_info["content_type"], 0, 6) == "image/")
803                         $text = "[img]".$match[1]."[/img]";
804                 else {
805                         $text = "[img]".$match[2]."[/img]";
806
807                         // if its not a picture then look if its a page that contains a picture link
808                         require_once("include/network.php");
809
810                         $body = Network::fetchURL($match[1]);
811
812                         $doc = new DOMDocument();
813                         @$doc->loadHTML($body);
814                         $xpath = new DomXPath($doc);
815                         $list = $xpath->query("//meta[@name]");
816                         foreach ($list as $node) {
817                                 $attr = [];
818
819                                 if ($node->attributes->length)
820                                         foreach ($node->attributes as $attribute)
821                                                 $attr[$attribute->name] = $attribute->value;
822
823                                 if (strtolower($attr["name"]) == "twitter:image")
824                                         $text = "[img]".$attr["content"]."[/img]";
825                         }
826                 }
827                 Cache::set($match[1],$text);
828         }
829
830         return $text;
831 }
832
833 function bb_CleanPictureLinks($text) {
834         $text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'bb_CleanPictureLinksSub', $text);
835         return $text;
836 }
837
838 function bb_highlight($match) {
839         if (in_array(strtolower($match[1]), ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby',
840                 'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])) {
841                 return text_highlight($match[2], strtolower($match[1]));
842         }
843         return $match[0];
844 }
845
846 /**
847  * @brief Converts a BBCode message to HTML message
848  *
849  * BBcode 2 HTML was written by WAY2WEB.net
850  * extended to work with Mistpark/Friendica - Mike Macgirvin
851  *
852  * Simple HTML values meaning:
853  * - 0: Friendica display
854  * - 1: Unused
855  * - 2: Used for Facebook, Google+, Windows Phone push, Friendica API
856  * - 3: Used before converting to Markdown in bb2diaspora.php
857  * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
858  * - 5: Unused
859  * - 6: Used for Appnet
860  * - 7: Used for dfrn, OStatus
861  * - 8: Used for WP backlink text setting
862  *
863  * @staticvar array $allowed_src_protocols
864  * @param string $Text
865  * @param bool $preserve_nl
866  * @param bool $tryoembed
867  * @param int $simplehtml
868  * @param bool $forplaintext
869  * @return string
870  */
871 function bbcode($Text, $preserve_nl = false, $tryoembed = true, $simplehtml = false, $forplaintext = false)
872 {
873         $a = get_app();
874
875         /*
876          * preg_match_callback function to replace potential Oembed tags with Oembed content
877          *
878          * $match[0] = [tag]$url[/tag] or [tag=$url]$title[/tag]
879          * $match[1] = $url
880          * $match[2] = $title or absent
881          */
882         $tryoembed_callback = function ($match)
883         {
884                 $url = $match[1];
885                 $title = defaults($match, 2, null);
886
887                 try {
888                         $return = OEmbed::getHTML($url, $title);
889                 } catch (Exception $ex) {
890                         $return = $match[0];
891                 }
892
893                 return $return;
894         };
895
896         // Hide all [noparse] contained bbtags by spacefying them
897         // POSSIBLE BUG --> Will the 'preg' functions crash if there's an embedded image?
898
899         $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_spacefy', $Text);
900         $Text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'bb_spacefy', $Text);
901         $Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_spacefy', $Text);
902
903         // Remove the abstract element. It is a non visible element.
904         $Text = remove_abstract($Text);
905
906         // Move all spaces out of the tags
907         $Text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $Text);
908         $Text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $Text);
909
910         // Extract the private images which use data urls since preg has issues with
911         // large data sizes. Stash them away while we do bbcode conversion, and then put them back
912         // in after we've done all the regex matching. We cannot use any preg functions to do this.
913
914         $extracted = bb_extract_images($Text);
915         $Text = $extracted['body'];
916         $saved_image = $extracted['images'];
917
918         // If we find any event code, turn it into an event.
919         // After we're finished processing the bbcode we'll
920         // replace all of the event code with a reformatted version.
921
922         $ev = bbtoevent($Text);
923
924         // Replace any html brackets with HTML Entities to prevent executing HTML or script
925         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
926
927         $Text = str_replace("<", "&lt;", $Text);
928         $Text = str_replace(">", "&gt;", $Text);
929
930         // remove some newlines before the general conversion
931         $Text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "[share$1]$2[/share]", $Text);
932         $Text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "[quote$1]$2[/quote]", $Text);
933
934         $Text = preg_replace("/\n\[code\]/ism", "[code]", $Text);
935         $Text = preg_replace("/\[\/code\]\n/ism", "[/code]", $Text);
936
937         // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
938         if (!$tryoembed) {
939                 $Text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $Text);
940         }
941
942         // Check for [code] text here, before the linefeeds are messed with.
943         // The highlighter will unescape and re-escape the content.
944         if (strpos($Text, '[code=') !== false) {
945                 $Text = preg_replace_callback("/\[code=(.*?)\](.*?)\[\/code\]/ism", 'bb_highlight', $Text);
946         }
947         // Convert new line chars to html <br /> tags
948
949         // nlbr seems to be hopelessly messed up
950         //      $Text = nl2br($Text);
951
952         // We'll emulate it.
953
954         $Text = trim($Text);
955         $Text = str_replace("\r\n", "\n", $Text);
956
957         // removing multiplicated newlines
958         if (Config::get("system", "remove_multiplicated_lines")) {
959                 $search = ["\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n",
960                                 "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"];
961                 $replace = ["\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]",
962                                 "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"];
963                 do {
964                         $oldtext = $Text;
965                         $Text = str_replace($search, $replace, $Text);
966                 } while ($oldtext != $Text);
967         }
968
969         // Set up the parameters for a URL search string
970         $URLSearchString = "^\[\]";
971         // Set up the parameters for a MAIL search string
972         $MAILSearchString = $URLSearchString;
973
974         // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
975         if (!$forplaintext) {
976                 // Autolink feature (thanks to http://code.seebz.net/p/autolink-php/)
977                 // Currently disabled, since the function is too greedy
978                 // $autolink_regex = "`([^\]\=\"']|^)(https?\://[^\s<]+[^\s<\.\)])`ism";
979                 $autolink_regex = "/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism";
980                 $Text = preg_replace($autolink_regex, '$1[url]$2[/url]', $Text);
981                 if ($simplehtml == 7) {
982                         $Text = preg_replace_callback("/\[url\]([$URLSearchString]*)\[\/url\]/ism", 'bb_style_url', $Text);
983                         $Text = preg_replace_callback("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", 'bb_style_url', $Text);
984                 }
985         } else {
986                 $Text = preg_replace("(\[url\]([$URLSearchString]*)\[\/url\])ism", " $1 ", $Text);
987                 $Text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'bb_RemovePictureLinks', $Text);
988         }
989
990
991         // Handle attached links or videos
992         $Text = bb_attachment($Text, $simplehtml, $tryoembed);
993
994         $Text = str_replace(["\r","\n"], ['<br />', '<br />'], $Text);
995
996         if ($preserve_nl) {
997                 $Text = str_replace(["\n", "\r"], ['', ''], $Text);
998         }
999
1000         // Remove all hashtag addresses
1001         if ((!$tryoembed || $simplehtml) && !in_array($simplehtml, [3, 7])) {
1002                 $Text = preg_replace("/([#@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $Text);
1003         } elseif ($simplehtml == 3) {
1004                 $Text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1005                         '$1<a href="$2">$3</a>',
1006                         $Text);
1007         } elseif ($simplehtml == 7) {
1008                 $Text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1009                         '$1<span class="vcard"><a href="$2" class="url" title="$3"><span class="fn nickname mention">$3</span></a></span>',
1010                         $Text);
1011         } elseif (!$simplehtml) {
1012                 $Text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1013                         '$1<a href="$2" class="userinfo mention" title="$3">$3</a>',
1014                         $Text);
1015         }
1016
1017         // Bookmarks in red - will be converted to bookmarks in friendica
1018         $Text = preg_replace("/#\^\[url\]([$URLSearchString]*)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $Text);
1019         $Text = preg_replace("/#\^\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $Text);
1020         $Text = preg_replace("/#\[url\=[$URLSearchString]*\]\^\[\/url\]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
1021                                 "[bookmark=$1]$2[/bookmark]", $Text);
1022
1023         if (in_array($simplehtml, [2, 6, 7, 8, 9])) {
1024                 $Text = preg_replace_callback("/([^#@!])\[url\=([^\]]*)\](.*?)\[\/url\]/ism", "bb_expand_links", $Text);
1025                 //$Text = preg_replace("/[^#@!]\[url\=([^\]]*)\](.*?)\[\/url\]/ism", ' $2 [url]$1[/url]', $Text);
1026                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", ' $2 [url]$1[/url]',$Text);
1027         }
1028
1029         if ($simplehtml == 5) {
1030                 $Text = preg_replace("/[^#@!]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url]$1[/url]', $Text);
1031         }
1032
1033         // Perform URL Search
1034         if ($tryoembed) {
1035                 $Text = preg_replace_callback("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $tryoembed_callback, $Text);
1036         }
1037
1038         if ($simplehtml == 5) {
1039                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url]$1[/url]', $Text);
1040         } else {
1041                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $Text);
1042         }
1043
1044         // Handle Diaspora posts
1045         $Text = preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", 'bb_DiasporaLinks', $Text);
1046
1047         // Server independent link to posts and comments
1048         // See issue: https://github.com/diaspora/diaspora_federation/issues/75
1049         $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
1050         $Text = preg_replace($expression, System::baseUrl()."/display/$1", $Text);
1051
1052         $Text = preg_replace("/([#])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1053                                 '$1<a href="' . System::baseUrl() . '/search?tag=$3" class="tag" title="$3">$3</a>', $Text);
1054
1055         $Text = preg_replace("/\[url\=([$URLSearchString]*)\]#(.*?)\[\/url\]/ism",
1056                                 '#<a href="' . System::baseUrl() . '/search?tag=$2" class="tag" title="$2">$2</a>', $Text);
1057
1058         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $Text);
1059         $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
1060         //$Text = preg_replace("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
1061
1062         // Red compatibility, though the link can't be authenticated on Friendica
1063         $Text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
1064
1065
1066         // we may need to restrict this further if it picks up too many strays
1067         // link acct:user@host to a webfinger profile redirector
1068
1069         $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);
1070
1071         // Perform MAIL Search
1072         $Text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $Text);
1073         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
1074
1075         // leave open the posibility of [map=something]
1076         // this is replaced in prepare_body() which has knowledge of the item location
1077
1078         if (strpos($Text, '[/map]') !== false) {
1079                 $Text = preg_replace_callback("/\[map\](.*?)\[\/map\]/ism", 'bb_map_location', $Text);
1080         }
1081         if (strpos($Text, '[map=') !== false) {
1082                 $Text = preg_replace_callback("/\[map=(.*?)\]/ism", 'bb_map_coords', $Text);
1083         }
1084         if (strpos($Text, '[map]') !== false) {
1085                 $Text = preg_replace("/\[map\]/", '<div class="map"></div>', $Text);
1086         }
1087
1088         // Check for headers
1089         $Text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '<h1>$1</h1>', $Text);
1090         $Text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '<h2>$1</h2>', $Text);
1091         $Text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '<h3>$1</h3>', $Text);
1092         $Text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '<h4>$1</h4>', $Text);
1093         $Text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '<h5>$1</h5>', $Text);
1094         $Text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '<h6>$1</h6>', $Text);
1095
1096         // Check for paragraph
1097         $Text = preg_replace("(\[p\](.*?)\[\/p\])ism", '<p>$1</p>', $Text);
1098
1099         // Check for bold text
1100         $Text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $Text);
1101
1102         // Check for Italics text
1103         $Text = preg_replace("(\[i\](.*?)\[\/i\])ism", '<em>$1</em>', $Text);
1104
1105         // Check for Underline text
1106         $Text = preg_replace("(\[u\](.*?)\[\/u\])ism", '<u>$1</u>', $Text);
1107
1108         // Check for strike-through text
1109         $Text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<strike>$1</strike>', $Text);
1110
1111         // Check for over-line text
1112         $Text = preg_replace("(\[o\](.*?)\[\/o\])ism", '<span class="overline">$1</span>', $Text);
1113
1114         // Check for colored text
1115         $Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $Text);
1116
1117         // Check for sized text
1118         // [size=50] --> font-size: 50px (with the unit).
1119         $Text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $Text);
1120         $Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $Text);
1121
1122         // Check for centered text
1123         $Text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $Text);
1124
1125         // Check for list text
1126         $Text = str_replace("[*]", "<li>", $Text);
1127
1128         // Check for style sheet commands
1129         $Text = preg_replace_callback("(\[style=(.*?)\](.*?)\[\/style\])ism", "bb_cleanstyle", $Text);
1130
1131         // Check for CSS classes
1132         $Text = preg_replace_callback("(\[class=(.*?)\](.*?)\[\/class\])ism", "bb_cleanclass", $Text);
1133
1134         // handle nested lists
1135         $endlessloop = 0;
1136
1137         while ((((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list") !== false)) ||
1138                ((strpos($Text, "[/ol]") !== false) && (strpos($Text, "[ol]") !== false)) ||
1139                ((strpos($Text, "[/ul]") !== false) && (strpos($Text, "[ul]") !== false)) ||
1140                ((strpos($Text, "[/li]") !== false) && (strpos($Text, "[li]") !== false))) && (++$endlessloop < 20)) {
1141                 $Text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $Text);
1142                 $Text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '<ul class="listnone" style="list-style-type: none;">$1</ul>', $Text);
1143                 $Text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $Text);
1144                 $Text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '<ul class="listlowerroman" style="list-style-type: lower-roman;">$2</ul>', $Text);
1145                 $Text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '<ul class="listupperroman" style="list-style-type: upper-roman;">$2</ul>', $Text);
1146                 $Text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$2</ul>', $Text);
1147                 $Text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$2</ul>', $Text);
1148                 $Text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $Text);
1149                 $Text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $Text);
1150                 $Text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '<li>$1</li>', $Text);
1151         }
1152
1153         $Text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '<th>$1</th>', $Text);
1154         $Text = preg_replace("/\[td\](.*?)\[\/td\]/sm", '<td>$1</td>', $Text);
1155         $Text = preg_replace("/\[tr\](.*?)\[\/tr\]/sm", '<tr>$1</tr>', $Text);
1156         $Text = preg_replace("/\[table\](.*?)\[\/table\]/sm", '<table>$1</table>', $Text);
1157
1158         $Text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '<table border="1" >$1</table>', $Text);
1159         $Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '<table border="0" >$1</table>', $Text);
1160
1161         $Text = str_replace('[hr]', '<hr />', $Text);
1162
1163         // This is actually executed in prepare_body()
1164
1165         $Text = str_replace('[nosmile]', '', $Text);
1166
1167         // Check for font change text
1168         $Text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "<span style=\"font-family: $1;\">$2</span>", $Text);
1169
1170         // Declare the format for [code] layout
1171
1172 //      $Text = preg_replace_callback("/\[code\](.*?)\[\/code\]/ism", 'stripcode_br_cb', $Text);
1173
1174         $CodeLayout = '<code>$1</code>';
1175         // Check for [code] text
1176         $Text = preg_replace("/\[code\](.*?)\[\/code\]/ism", "$CodeLayout", $Text);
1177
1178         // Declare the format for [spoiler] layout
1179         $SpoilerLayout = '<blockquote class="spoiler">$1</blockquote>';
1180
1181         // Check for [spoiler] text
1182         // handle nested quotes
1183         $endlessloop = 0;
1184         while ((strpos($Text, "[/spoiler]") !== false) && (strpos($Text, "[spoiler]") !== false) && (++$endlessloop < 20)) {
1185                 $Text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", "$SpoilerLayout", $Text);
1186         }
1187
1188         // Check for [spoiler=Author] text
1189
1190         $t_wrote = L10n::t('$1 wrote:');
1191
1192         // handle nested quotes
1193         $endlessloop = 0;
1194         while ((strpos($Text, "[/spoiler]")!== false)  && (strpos($Text, "[spoiler=") !== false) && (++$endlessloop < 20)) {
1195                 $Text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism",
1196                                      "<br /><strong class=".'"spoiler"'.">" . $t_wrote . "</strong><blockquote class=".'"spoiler"'.">$2</blockquote>",
1197                                      $Text);
1198         }
1199
1200         // Declare the format for [quote] layout
1201         $QuoteLayout = '<blockquote>$1</blockquote>';
1202
1203         // Check for [quote] text
1204         // handle nested quotes
1205         $endlessloop = 0;
1206         while ((strpos($Text, "[/quote]") !== false) && (strpos($Text, "[quote]") !== false) && (++$endlessloop < 20)) {
1207                 $Text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $Text);
1208         }
1209
1210         // Check for [quote=Author] text
1211
1212         $t_wrote = L10n::t('$1 wrote:');
1213
1214         // handle nested quotes
1215         $endlessloop = 0;
1216         while ((strpos($Text, "[/quote]")!== false)  && (strpos($Text, "[quote=") !== false) && (++$endlessloop < 20)) {
1217                 $Text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
1218                                      "<br /><strong class=".'"author"'.">" . $t_wrote . "</strong><blockquote>$2</blockquote>",
1219                                      $Text);
1220         }
1221
1222
1223         // [img=widthxheight]image source[/img]
1224         $Text = preg_replace_callback("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", 'bb_PictureCacheExt', $Text);
1225
1226         $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '<img src="$3" style="width: $1px;" >', $Text);
1227         $Text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '<img class="zrl" src="$3" style="width: $1px;" >', $Text);
1228
1229         // Images
1230         // [img]pathtoimage[/img]
1231         $Text = preg_replace_callback("/\[img\](.*?)\[\/img\]/ism", 'bb_PictureCache', $Text);
1232
1233         $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $Text);
1234         $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $Text);
1235
1236         // Shared content
1237         $Text = preg_replace_callback("/(.*?)\[share(.*?)\](.*?)\[\/share\]/ism",
1238                 function ($match) use ($simplehtml) {
1239                         return bb_ShareAttributes($match, $simplehtml);
1240                 }, $Text);
1241
1242         $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);
1243         $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);
1244         //$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);
1245
1246         // Try to Oembed
1247         if ($tryoembed) {
1248                 $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);
1249                 $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);
1250
1251                 $Text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $tryoembed_callback, $Text);
1252                 $Text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $tryoembed_callback, $Text);
1253         } else {
1254                 $Text = preg_replace("/\[video\](.*?)\[\/video\]/",
1255                                         '<a href="$1" target="_blank">$1</a>', $Text);
1256                 $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/",
1257                                         '<a href="$1" target="_blank">$1</a>', $Text);
1258         }
1259
1260         // html5 video and audio
1261
1262
1263         if ($tryoembed) {
1264                 $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<iframe src="$1" width="' . $a->videowidth . '" height="' . $a->videoheight . '"><a href="$1">$1</a></iframe>', $Text);
1265         } else {
1266                 $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1">$1</a>', $Text);
1267         }
1268
1269         // Youtube extensions
1270         if ($tryoembed) {
1271                 $Text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $tryoembed_callback, $Text);
1272                 $Text = preg_replace_callback("/\[youtube\](www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $tryoembed_callback, $Text);
1273                 $Text = preg_replace_callback("/\[youtube\](https?:\/\/youtu.be\/.*?)\[\/youtube\]/ism", $tryoembed_callback, $Text);
1274         }
1275
1276         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1277         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1278         $Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1279
1280         if ($tryoembed) {
1281                 $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);
1282         } else {
1283                 $Text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
1284                                         '<a href="https://www.youtube.com/watch?v=$1" target="_blank">https://www.youtube.com/watch?v=$1</a>', $Text);
1285         }
1286
1287         if ($tryoembed) {
1288                 $Text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism", $tryoembed_callback, $Text);
1289                 $Text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism", $tryoembed_callback, $Text);
1290         }
1291
1292         $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $Text);
1293         $Text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $Text);
1294
1295         if ($tryoembed) {
1296                 $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);
1297         } else {
1298                 $Text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
1299                                         '<a href="https://vimeo.com/$1" target="_blank">https://vimeo.com/$1</a>', $Text);
1300         }
1301
1302 //      $Text = preg_replace("/\[youtube\](.*?)\[\/youtube\]/", '<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1" ><param name="movie" value="http://www.youtube.com/v/$1"></param><!--[if IE]><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="425" height="350" /><![endif]--></object>', $Text);
1303
1304         // oembed tag
1305         $Text = OEmbed::BBCode2HTML($Text);
1306
1307         // Avoid triple linefeeds through oembed
1308         $Text = str_replace("<br style='clear:left'></span><br /><br />", "<br style='clear:left'></span><br />", $Text);
1309
1310         // If we found an event earlier, strip out all the event code and replace with a reformatted version.
1311         // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
1312         // Summary (e.g. title) is required, earlier revisions only required description (in addition to
1313         // start which is always required). Allow desc with a missing summary for compatibility.
1314
1315         if ((x($ev, 'desc') || x($ev, 'summary')) && x($ev, 'start')) {
1316                 $sub = format_event_html($ev, $simplehtml);
1317
1318                 $Text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $Text);
1319                 $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $Text);
1320                 $Text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $Text);
1321                 $Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $Text);
1322                 $Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $Text);
1323                 $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism", '', $Text);
1324                 $Text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $Text);
1325         }
1326
1327         // Replace non graphical smilies for external posts
1328         if ($simplehtml) {
1329                 $Text = Smilies::replace($Text, false, true);
1330         }
1331
1332         // Replace inline code blocks
1333         $Text = preg_replace_callback("|(?!<br[^>]*>)<code>([^<]*)</code>(?!<br[^>]*>)|ism",
1334                 function ($match) use ($simplehtml) {
1335                         $return = '<key>' . $match[1] . '</key>';
1336                         // Use <code> for Diaspora inline code blocks
1337                         if ($simplehtml === 3) {
1338                                 $return = '<code>' . $match[1] . '</code>';
1339                         }
1340                         return $return;
1341                 }
1342         , $Text);
1343
1344         // Unhide all [noparse] contained bbtags unspacefying them
1345         // and triming the [noparse] tag.
1346
1347         $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_unspacefy_and_trim', $Text);
1348         $Text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'bb_unspacefy_and_trim', $Text);
1349         $Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_unspacefy_and_trim', $Text);
1350
1351
1352         $Text = preg_replace('/\[\&amp\;([#a-z0-9]+)\;\]/', '&$1;', $Text);
1353         $Text = preg_replace('/\&\#039\;/', '\'', $Text);
1354         $Text = preg_replace('/\&quot\;/', '"', $Text);
1355
1356         // fix any escaped ampersands that may have been converted into links
1357         $Text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $Text);
1358
1359         // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
1360         static $allowed_src_protocols = ['http', 'redir', 'cid'];
1361         $Text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
1362                              '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . L10n::t('Invalid source protocol') . '">', $Text);
1363
1364         // sanitize href attributes (only whitelisted protocols URLs)
1365         // default value for backward compatibility
1366         $allowed_link_protocols = Config::get('system', 'allowed_link_protocols', ['ftp', 'mailto', 'gopher', 'cid']);
1367
1368         // Always allowed protocol even if config isn't set or not including it
1369         $allowed_link_protocols[] = 'http';
1370         $allowed_link_protocols[] = 'redir/';
1371
1372         $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
1373         $Text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . L10n::t('Invalid link protocol') . '">', $Text);
1374
1375         if ($saved_image) {
1376                 $Text = bb_replace_images($Text, $saved_image);
1377         }
1378
1379         // Clean up the HTML by loading and saving the HTML with the DOM.
1380         // Bad structured html can break a whole page.
1381         // For performance reasons do it only with ativated item cache or at export.
1382         if (!$tryoembed || (get_itemcachepath() != "")) {
1383                 $doc = new DOMDocument();
1384                 $doc->preserveWhiteSpace = false;
1385
1386                 $Text = mb_convert_encoding($Text, 'HTML-ENTITIES', "UTF-8");
1387
1388                 $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
1389                 $encoding = '<?xml encoding="UTF-8">';
1390                 @$doc->loadHTML($encoding.$doctype."<html><body>".$Text."</body></html>");
1391                 $doc->encoding = 'UTF-8';
1392                 $Text = $doc->saveHTML();
1393                 $Text = str_replace(["<html><body>", "</body></html>", $doctype, $encoding], ["", "", "", ""], $Text);
1394
1395                 $Text = str_replace('<br></li>', '</li>', $Text);
1396
1397                 //$Text = mb_convert_encoding($Text, "UTF-8", 'HTML-ENTITIES');
1398         }
1399
1400         // Clean up some useless linebreaks in lists
1401         //$Text = str_replace('<br /><ul', '<ul ', $Text);
1402         //$Text = str_replace('</ul><br />', '</ul>', $Text);
1403         //$Text = str_replace('</li><br />', '</li>', $Text);
1404         //$Text = str_replace('<br /><li>', '<li>', $Text);
1405         //$Text = str_replace('<br /><ul', '<ul ', $Text);
1406
1407         Addon::callHooks('bbcode', $Text);
1408
1409         return trim($Text);
1410 }
1411
1412 /**
1413  * @brief Removes the "abstract" element from the text
1414  *
1415  * @param string $text The text with BBCode
1416  * @return string The same text - but without "abstract" element
1417  */
1418 function remove_abstract($text) {
1419         $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
1420         $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
1421
1422         return $text;
1423 }
1424
1425 /**
1426  * @brief Returns the value of the "abstract" element
1427  *
1428  * @param string $text The text that maybe contains the element
1429  * @param string $addon The addon for which the abstract is meant for
1430  * @return string The abstract
1431  */
1432 function fetch_abstract($text, $addon = "") {
1433         $abstract = "";
1434         $abstracts = [];
1435         $addon = strtolower($addon);
1436
1437         if (preg_match_all("/\[abstract=(.*?)\](.*?)\[\/abstract\]/ism",$text, $results, PREG_SET_ORDER))
1438                 foreach ($results AS $result)
1439                         $abstracts[strtolower($result[1])] = $result[2];
1440
1441         if (isset($abstracts[$addon]))
1442                 $abstract = $abstracts[$addon];
1443
1444         if ($abstract == "")
1445                 if (preg_match("/\[abstract\](.*?)\[\/abstract\]/ism",$text, $result))
1446                         $abstract = $result[1];
1447
1448         return $abstract;
1449 }