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