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