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