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