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