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