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