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