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