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