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