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