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