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