]> git.mxchange.org Git - friendica.git/blob - include/bbcode.php
some more spaces
[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 thumbnail" 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 $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         return($text);
546 }
547
548 function GetProfileUsername($profile, $username, $compact = false, $getnetwork = false) {
549
550         $twitter = preg_replace("=https?://twitter.com/(.*)=ism", "$1@twitter.com", $profile);
551         if ($twitter != $profile) {
552                 if ($getnetwork)
553                         return(NETWORK_TWITTER);
554                 elseif ($compact)
555                         return($twitter);
556                 else
557                         return($username." (".$twitter.")");
558         }
559
560         $appnet = preg_replace("=https?://alpha.app.net/(.*)=ism", "$1@alpha.app.net", $profile);
561         if ($appnet != $profile) {
562                 if ($getnetwork)
563                         return(NETWORK_APPNET);
564                 elseif ($compact)
565                         return($appnet);
566                 else
567                         return($username." (".$appnet.")");
568         }
569
570         $gplus = preg_replace("=https?://plus.google.com/(.*)=ism", "$1@plus.google.com", $profile);
571         if ($gplus != $profile) {
572                 if ($getnetwork)
573                         return(NETWORK_GPLUS);
574                 elseif ($compact)
575                         return($gplususername." (".$username.")");
576                 else
577                         return($username." (".$gplus.")");
578         }
579
580         $friendica = preg_replace("=https?://(.*)/profile/(.*)=ism", "$2@$1", $profile);
581         if ($friendica != $profile) {
582                 if ($getnetwork)
583                         return(NETWORK_DFRN);
584                 elseif ($compact)
585                         return($friendica);
586                 else
587                         return($username." (".$friendica.")");
588         }
589
590         $diaspora = preg_replace("=https?://(.*)/u/(.*)=ism", "$2@$1", $profile);
591         if ($diaspora != $profile) {
592                 if ($getnetwork)
593                         return(NETWORK_DIASPORA);
594                 elseif ($compact)
595                         return($diaspora);
596                 else
597                         return($username." (".$diaspora.")");
598         }
599
600         $red = preg_replace("=https?://(.*)/channel/(.*)=ism", "$2@$1", $profile);
601         if ($red != $profile) {
602                 if ($getnetwork)
603                         // red is identified as Diaspora - friendica can't connect directly to it
604                         return(NETWORK_DIASPORA);
605                 elseif ($compact)
606                         return($red);
607                 else
608                         return($username." (".$red.")");
609         }
610
611         $StatusnetHost = preg_replace("=https?://(.*)/user/(.*)=ism", "$1", $profile);
612         if ($StatusnetHost != $profile) {
613                 $StatusnetUser = preg_replace("=https?://(.*)/user/(.*)=ism", "$2", $profile);
614                 if ($StatusnetUser != $profile) {
615                         $UserData = fetch_url("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
616                         $user = json_decode($UserData);
617                         if ($user) {
618                                 if ($getnetwork)
619                                         return(NETWORK_STATUSNET);
620                                 elseif ($compact)
621                                         return($user->screen_name."@".$StatusnetHost);
622                                 else
623                                         return($username." (".$user->screen_name."@".$StatusnetHost.")");
624                         }
625                 }
626         }
627
628         // pumpio (http://host.name/user)
629         $rest = preg_replace("=https?://([\.\w]+)/([\.\w]+)(.*)=ism", "$3", $profile);
630         if ($rest == "") {
631                 $pumpio = preg_replace("=https?://([\.\w]+)/([\.\w]+)(.*)=ism", "$2@$1", $profile);
632                 if ($pumpio != $profile) {
633                         if ($getnetwork)
634                                 return(NETWORK_PUMPIO);
635                         elseif ($compact)
636                                 return($pumpio);
637                         else
638                                 return($username." (".$pumpio.")");
639                 }
640         }
641
642         return($username);
643 }
644
645 function bb_DiasporaLinks($match) {
646         return "[url=".App::get_baseurl()."/display/".$match[1]."]".$match[2]."[/url]";
647 }
648
649 function bb_RemovePictureLinks($match) {
650         $text = Cache::get($match[1]);
651
652         if (is_null($text)) {
653                 $a = get_app();
654
655                 $stamp1 = microtime(true);
656
657                 $ch = @curl_init($match[1]);
658                 @curl_setopt($ch, CURLOPT_NOBODY, true);
659                 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
660                 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
661                 @curl_exec($ch);
662                 $curl_info = @curl_getinfo($ch);
663
664                 $a->save_timestamp($stamp1, "network");
665
666                 if (substr($curl_info["content_type"], 0, 6) == "image/")
667                         $text = "[url=".$match[1]."]".$match[1]."[/url]";
668                 else {
669                         $text = "[url=".$match[2]."]".$match[2]."[/url]";
670
671                         // if its not a picture then look if its a page that contains a picture link
672                         require_once("include/network.php");
673
674                         $body = fetch_url($match[1]);
675
676                         $doc = new DOMDocument();
677                         @$doc->loadHTML($body);
678                         $xpath = new DomXPath($doc);
679                         $list = $xpath->query("//meta[@name]");
680                         foreach ($list as $node) {
681                                 $attr = array();
682
683                                 if ($node->attributes->length)
684                                         foreach ($node->attributes as $attribute)
685                                                 $attr[$attribute->name] = $attribute->value;
686
687                                 if (strtolower($attr["name"]) == "twitter:image")
688                                         $text = "[url=".$attr["content"]."]".$attr["content"]."[/url]";
689                         }
690                 }
691                 Cache::set($match[1],$text);
692         }
693         return($text);
694 }
695
696 function bb_expand_links($match) {
697         if (($match[3] == "") OR ($match[2] == $match[3]) OR stristr($match[2], $match[3]))
698                 return ($match[1]."[url]".$match[2]."[/url]");
699         else
700                 return ($match[1].$match[3]." [url]".$match[2]."[/url]");
701 }
702
703 function bb_CleanPictureLinksSub($match) {
704         $text = Cache::get($match[1]);
705
706         if (is_null($text)) {
707                 $a = get_app();
708
709                 $stamp1 = microtime(true);
710
711                 $ch = @curl_init($match[1]);
712                 @curl_setopt($ch, CURLOPT_NOBODY, true);
713                 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
714                 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
715                 @curl_exec($ch);
716                 $curl_info = @curl_getinfo($ch);
717
718                 $a->save_timestamp($stamp1, "network");
719
720                 // if its a link to a picture then embed this picture
721                 if (substr($curl_info["content_type"], 0, 6) == "image/")
722                         $text = "[img]".$match[1]."[/img]";
723                 else {
724                         $text = "[img]".$match[2]."[/img]";
725
726                         // if its not a picture then look if its a page that contains a picture link
727                         require_once("include/network.php");
728
729                         $body = fetch_url($match[1]);
730
731                         $doc = new DOMDocument();
732                         @$doc->loadHTML($body);
733                         $xpath = new DomXPath($doc);
734                         $list = $xpath->query("//meta[@name]");
735                         foreach ($list as $node) {
736                                 $attr = array();
737
738                                 if ($node->attributes->length)
739                                         foreach ($node->attributes as $attribute)
740                                                 $attr[$attribute->name] = $attribute->value;
741
742                                 if (strtolower($attr["name"]) == "twitter:image")
743                                         $text = "[img]".$attr["content"]."[/img]";
744                         }
745                 }
746                 Cache::set($match[1],$text);
747         }
748         return($text);
749 }
750
751 function bb_CleanPictureLinks($text) {
752         $text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'bb_CleanPictureLinksSub', $text);
753         return ($text);
754 }
755
756 function bb_highlight($match) {
757         if (in_array(strtolower($match[1]), ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby',
758                 'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])) {
759                 return text_highlight($match[2],strtolower($match[1]));
760         }
761         return $match[0];
762 }
763
764 /**
765  * @brief Converts a BBCode message to HTML message
766  *
767  * BBcode 2 HTML was written by WAY2WEB.net
768  * extended to work with Mistpark/Friendica - Mike Macgirvin
769  *
770  * Simple HTML values meaning:
771  * - 0: Friendica display
772  * - 1: Unused
773  * - 2: Used for Facebook, Google+, Windows Phone push, Friendica API
774  * - 3: Used before converting to Markdown in bb2diaspora.php
775  * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
776  * - 5: Unused
777  * - 6: Used for Appnet
778  * - 7: Used for dfrn, OStatus
779  * - 8: Used for WP backlink text setting
780  *
781  * @staticvar array $allowed_src_protocols
782  * @param string $Text
783  * @param bool $preserve_nl
784  * @param bool $tryoembed
785  * @param int $simplehtml
786  * @param bool $forplaintext
787  * @return string
788  */
789 function bbcode($Text, $preserve_nl = false, $tryoembed = true, $simplehtml = false, $forplaintext = false) {
790
791         $a = get_app();
792
793         // Hide all [noparse] contained bbtags by spacefying them
794         // POSSIBLE BUG --> Will the 'preg' functions crash if there's an embedded image?
795
796         $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_spacefy', $Text);
797         $Text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'bb_spacefy', $Text);
798         $Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_spacefy', $Text);
799
800         // Remove the abstract element. It is a non visible element.
801         $Text = remove_abstract($Text);
802
803         // Move all spaces out of the tags
804         $Text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $Text);
805         $Text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $Text);
806
807         // Extract the private images which use data urls since preg has issues with
808         // large data sizes. Stash them away while we do bbcode conversion, and then put them back
809         // in after we've done all the regex matching. We cannot use any preg functions to do this.
810
811         $extracted = bb_extract_images($Text);
812         $Text = $extracted['body'];
813         $saved_image = $extracted['images'];
814
815         // If we find any event code, turn it into an event.
816         // After we're finished processing the bbcode we'll
817         // replace all of the event code with a reformatted version.
818
819         $ev = bbtoevent($Text);
820
821         // Replace any html brackets with HTML Entities to prevent executing HTML or script
822         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
823
824         $Text = str_replace("<", "&lt;", $Text);
825         $Text = str_replace(">", "&gt;", $Text);
826
827         // remove some newlines before the general conversion
828         $Text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "[share$1]$2[/share]", $Text);
829         $Text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "[quote$1]$2[/quote]", $Text);
830
831         $Text = preg_replace("/\n\[code\]/ism", "[code]", $Text);
832         $Text = preg_replace("/\[\/code\]\n/ism", "[/code]", $Text);
833
834         // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
835         if (!$tryoembed) {
836                 $Text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $Text);
837         }
838
839         // Check for [code] text here, before the linefeeds are messed with.
840         // The highlighter will unescape and re-escape the content.
841         if (strpos($Text, '[code=') !== false) {
842                 $Text = preg_replace_callback("/\[code=(.*?)\](.*?)\[\/code\]/ism", 'bb_highlight', $Text);
843         }
844         // Convert new line chars to html <br /> tags
845
846         // nlbr seems to be hopelessly messed up
847         //      $Text = nl2br($Text);
848
849         // We'll emulate it.
850
851         $Text = trim($Text);
852         $Text = str_replace("\r\n", "\n", $Text);
853
854         // removing multiplicated newlines
855         if (get_config("system", "remove_multiplicated_lines")) {
856                 $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",
857                                 "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n");
858                 $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]",
859                                 "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]");
860                 do {
861                         $oldtext = $Text;
862                         $Text = str_replace($search, $replace, $Text);
863                 } while ($oldtext != $Text);
864         }
865
866         // Handle attached links or videos
867         $Text = bb_attachment($Text, $simplehtml, $tryoembed);
868
869         $Text = str_replace(array("\r","\n"), array('<br />', '<br />'), $Text);
870
871         if ($preserve_nl) {
872                 $Text = str_replace(array("\n", "\r"), array('', ''), $Text);
873         }
874
875         // Set up the parameters for a URL search string
876         $URLSearchString = "^\[\]";
877         // Set up the parameters for a MAIL search string
878         $MAILSearchString = $URLSearchString;
879
880         // Remove all hashtag addresses
881         if ((!$tryoembed OR $simplehtml) AND !in_array($simplehtml, array(3, 7))) {
882                 $Text = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $Text);
883         } elseif ($simplehtml == 3) {
884                 $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
885                         '$1<a href="$2">$3</a>',
886                         $Text);
887         } elseif ($simplehtml == 7) {
888                 $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
889                         '$1<span class="vcard"><a href="$2" class="url" title="$3"><span class="fn nickname mention">$3</span></a></span>',
890                         $Text);
891         } elseif (!$simplehtml) {
892                 $Text = preg_replace("/([@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
893                         '$1<a href="$2" class="userinfo mention" title="$3">$3</a>',
894                         $Text);
895         }
896
897         // Bookmarks in red - will be converted to bookmarks in friendica
898         $Text = preg_replace("/#\^\[url\]([$URLSearchString]*)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $Text);
899         $Text = preg_replace("/#\^\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $Text);
900         $Text = preg_replace("/#\[url\=[$URLSearchString]*\]\^\[\/url\]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
901                                 "[bookmark=$1]$2[/bookmark]", $Text);
902
903         if (in_array($simplehtml, array(2, 6, 7, 8, 9))) {
904                 $Text = preg_replace_callback("/([^#@])\[url\=([^\]]*)\](.*?)\[\/url\]/ism", "bb_expand_links", $Text);
905                 //$Text = preg_replace("/[^#@]\[url\=([^\]]*)\](.*?)\[\/url\]/ism", ' $2 [url]$1[/url]', $Text);
906                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", ' $2 [url]$1[/url]',$Text);
907         }
908
909         if ($simplehtml == 5) {
910                 $Text = preg_replace("/[^#@]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url]$1[/url]', $Text);
911         }
912
913         // Perform URL Search
914         if ($tryoembed) {
915                 $Text = preg_replace_callback("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", 'tryoembed', $Text);
916         }
917
918         if ($simplehtml == 5) {
919                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url]$1[/url]', $Text);
920         } else {
921                 $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $Text);
922         }
923
924         // Handle Diaspora posts
925         $Text = preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", 'bb_DiasporaLinks', $Text);
926
927         // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
928 //      if ($simplehtml != 7) {
929                 if (!$forplaintext) {
930                         $Text = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1<a href="$2" target="_blank">$2</a>', $Text);
931                 } else {
932                         $Text = preg_replace("(\[url\]([$URLSearchString]*)\[\/url\])ism", " $1 ", $Text);
933                         $Text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'bb_RemovePictureLinks', $Text);
934                 }
935 //      }
936
937         if ($tryoembed) {
938                 $Text = preg_replace_callback("/\[url\]([$URLSearchString]*)\[\/url\]/ism", 'tryoembed', $Text);
939         }
940
941         $Text = preg_replace("/([#])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
942                                 '$1<a href="$2" class="tag" title="$3">$3</a>', $Text);
943
944         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $Text);
945         $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
946         //$Text = preg_replace("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
947
948         // Red compatibility, though the link can't be authenticated on Friendica
949         $Text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
950
951
952         // we may need to restrict this further if it picks up too many strays
953         // link acct:user@host to a webfinger profile redirector
954
955         $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);
956
957         // Perform MAIL Search
958         $Text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $Text);
959         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
960
961         // leave open the posibility of [map=something]
962         // this is replaced in prepare_body() which has knowledge of the item location
963
964         if (strpos($Text, '[/map]') !== false) {
965                 $Text = preg_replace_callback("/\[map\](.*?)\[\/map\]/ism", 'bb_map_location', $Text);
966         }
967         if (strpos($Text, '[map=') !== false) {
968                 $Text = preg_replace_callback("/\[map=(.*?)\]/ism", 'bb_map_coords', $Text);
969         }
970         if (strpos($Text, '[map]') !== false) {
971                 $Text = preg_replace("/\[map\]/", '<div class="map"></div>', $Text);
972         }
973
974         // Check for headers
975         $Text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '<h1>$1</h1>', $Text);
976         $Text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '<h2>$1</h2>', $Text);
977         $Text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '<h3>$1</h3>', $Text);
978         $Text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '<h4>$1</h4>', $Text);
979         $Text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '<h5>$1</h5>', $Text);
980         $Text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '<h6>$1</h6>', $Text);
981
982         // Check for paragraph
983         $Text = preg_replace("(\[p\](.*?)\[\/p\])ism", '<p>$1</p>', $Text);
984
985         // Check for bold text
986         $Text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $Text);
987
988         // Check for Italics text
989         $Text = preg_replace("(\[i\](.*?)\[\/i\])ism", '<em>$1</em>', $Text);
990
991         // Check for Underline text
992         $Text = preg_replace("(\[u\](.*?)\[\/u\])ism", '<u>$1</u>', $Text);
993
994         // Check for strike-through text
995         $Text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<strike>$1</strike>', $Text);
996
997         // Check for over-line text
998         $Text = preg_replace("(\[o\](.*?)\[\/o\])ism", '<span class="overline">$1</span>', $Text);
999
1000         // Check for colored text
1001         $Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $Text);
1002
1003         // Check for sized text
1004         // [size=50] --> font-size: 50px (with the unit).
1005         $Text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $Text);
1006         $Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $Text);
1007
1008         // Check for centered text
1009         $Text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $Text);
1010
1011         // Check for list text
1012         $Text = str_replace("[*]", "<li>", $Text);
1013
1014         // Check for style sheet commands
1015         $Text = preg_replace_callback("(\[style=(.*?)\](.*?)\[\/style\])ism", "bb_cleanstyle", $Text);
1016
1017         // Check for CSS classes
1018         $Text = preg_replace_callback("(\[class=(.*?)\](.*?)\[\/class\])ism", "bb_cleanclass", $Text);
1019
1020         // handle nested lists
1021         $endlessloop = 0;
1022
1023         while ((((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list") !== false)) ||
1024                ((strpos($Text, "[/ol]") !== false) && (strpos($Text, "[ol]") !== false)) ||
1025                ((strpos($Text, "[/ul]") !== false) && (strpos($Text, "[ul]") !== false)) ||
1026                ((strpos($Text, "[/li]") !== false) && (strpos($Text, "[li]") !== false))) && (++$endlessloop < 20)) {
1027                 $Text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $Text);
1028                 $Text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '<ul class="listnone" style="list-style-type: none;">$1</ul>', $Text);
1029                 $Text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $Text);
1030                 $Text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '<ul class="listlowerroman" style="list-style-type: lower-roman;">$2</ul>', $Text);
1031                 $Text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '<ul class="listupperroman" style="list-style-type: upper-roman;">$2</ul>', $Text);
1032                 $Text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$2</ul>', $Text);
1033                 $Text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$2</ul>', $Text);
1034                 $Text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $Text);
1035                 $Text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $Text);
1036                 $Text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '<li>$1</li>', $Text);
1037         }
1038
1039         $Text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '<th>$1</th>', $Text);
1040         $Text = preg_replace("/\[td\](.*?)\[\/td\]/sm", '<td>$1</td>', $Text);
1041         $Text = preg_replace("/\[tr\](.*?)\[\/tr\]/sm", '<tr>$1</tr>', $Text);
1042         $Text = preg_replace("/\[table\](.*?)\[\/table\]/sm", '<table>$1</table>', $Text);
1043
1044         $Text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '<table border="1" >$1</table>', $Text);
1045         $Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '<table border="0" >$1</table>', $Text);
1046
1047         $Text = str_replace('[hr]', '<hr />', $Text);
1048
1049         // This is actually executed in prepare_body()
1050
1051         $Text = str_replace('[nosmile]', '', $Text);
1052
1053         // Check for font change text
1054         $Text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "<span style=\"font-family: $1;\">$2</span>", $Text);
1055
1056         // Declare the format for [code] layout
1057
1058 //      $Text = preg_replace_callback("/\[code\](.*?)\[\/code\]/ism", 'stripcode_br_cb', $Text);
1059
1060         $CodeLayout = '<code>$1</code>';
1061         // Check for [code] text
1062         $Text = preg_replace("/\[code\](.*?)\[\/code\]/ism", "$CodeLayout", $Text);
1063
1064         // Declare the format for [spoiler] layout
1065         $SpoilerLayout = '<blockquote class="spoiler">$1</blockquote>';
1066
1067         // Check for [spoiler] text
1068         // handle nested quotes
1069         $endlessloop = 0;
1070         while ((strpos($Text, "[/spoiler]") !== false) and (strpos($Text, "[spoiler]") !== false) and (++$endlessloop < 20)) {
1071                 $Text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", "$SpoilerLayout", $Text);
1072         }
1073
1074         // Check for [spoiler=Author] text
1075
1076         $t_wrote = t('$1 wrote:');
1077
1078         // handle nested quotes
1079         $endlessloop = 0;
1080         while ((strpos($Text, "[/spoiler]")!== false)  and (strpos($Text, "[spoiler=") !== false) and (++$endlessloop < 20)) {
1081                 $Text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism",
1082                                      "<br /><strong class=".'"spoiler"'.">" . $t_wrote . "</strong><blockquote class=".'"spoiler"'.">$2</blockquote>",
1083                                      $Text);
1084         }
1085
1086         // Declare the format for [quote] layout
1087         $QuoteLayout = '<blockquote>$1</blockquote>';
1088
1089         // Check for [quote] text
1090         // handle nested quotes
1091         $endlessloop = 0;
1092         while ((strpos($Text, "[/quote]") !== false) and (strpos($Text, "[quote]") !== false) and (++$endlessloop < 20)) {
1093                 $Text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $Text);
1094         }
1095
1096         // Check for [quote=Author] text
1097
1098         $t_wrote = t('$1 wrote:');
1099
1100         // handle nested quotes
1101         $endlessloop = 0;
1102         while ((strpos($Text, "[/quote]")!== false)  and (strpos($Text, "[quote=") !== false) and (++$endlessloop < 20)) {
1103                 $Text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
1104                                      "<br /><strong class=".'"author"'.">" . $t_wrote . "</strong><blockquote>$2</blockquote>",
1105                                      $Text);
1106         }
1107
1108
1109         // [img=widthxheight]image source[/img]
1110         $Text = preg_replace_callback("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", 'bb_PictureCacheExt', $Text);
1111
1112         $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '<img src="$3" style="width: $1px;" >', $Text);
1113         $Text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '<img class="zrl" src="$3" style="width: $1px;" >', $Text);
1114
1115         // Images
1116         // [img]pathtoimage[/img]
1117         $Text = preg_replace_callback("/\[img\](.*?)\[\/img\]/ism", 'bb_PictureCache', $Text);
1118
1119         $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . t('Image/photo') . '" />', $Text);
1120         $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '<img src="$1" alt="' . t('Image/photo') . '" />', $Text);
1121
1122         // Shared content
1123         $Text = preg_replace_callback("/(.*?)\[share(.*?)\](.*?)\[\/share\]/ism",
1124                 function ($match) use ($simplehtml){
1125                         return(bb_ShareAttributes($match, $simplehtml));
1126                 }, $Text);
1127
1128         $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);
1129         $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);
1130         //$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);
1131
1132
1133         // Try to Oembed
1134         if ($tryoembed) {
1135                 $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);
1136                 $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);
1137
1138                 $Text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", 'tryoembed', $Text);
1139                 $Text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", 'tryoembed', $Text);
1140         } else {
1141                 $Text = preg_replace("/\[video\](.*?)\[\/video\]/",
1142                                         '<a href="$1" target="_blank">$1</a>', $Text);
1143                 $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/",
1144                                         '<a href="$1" target="_blank">$1</a>', $Text);
1145         }
1146
1147         // html5 video and audio
1148
1149
1150         if ($tryoembed) {
1151                 $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<iframe src="$1" width="' . $a->videowidth . '" height="' . $a->videoheight . '"><a href="$1">$1</a></iframe>', $Text);
1152         } else {
1153                 $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1">$1</a>', $Text);
1154         }
1155
1156         // Youtube extensions
1157         if ($tryoembed) {
1158                 $Text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", 'tryoembed', $Text);
1159                 $Text = preg_replace_callback("/\[youtube\](www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", 'tryoembed', $Text);
1160                 $Text = preg_replace_callback("/\[youtube\](https?:\/\/youtu.be\/.*?)\[\/youtube\]/ism", 'tryoembed', $Text);
1161         }
1162
1163         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1164         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1165         $Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $Text);
1166
1167         if ($tryoembed) {
1168                 $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);
1169         } else {
1170                 $Text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
1171                                         '<a href="https://www.youtube.com/watch?v=$1" target="_blank">https://www.youtube.com/watch?v=$1</a>', $Text);
1172         }
1173
1174         if ($tryoembed) {
1175                 $Text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism", 'tryoembed', $Text);
1176                 $Text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism", 'tryoembed', $Text);
1177         }
1178
1179         $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $Text);
1180         $Text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $Text);
1181
1182         if ($tryoembed) {
1183                 $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);
1184         } else {
1185                 $Text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
1186                                         '<a href="https://vimeo.com/$1" target="_blank">https://vimeo.com/$1</a>', $Text);
1187         }
1188
1189 //      $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);
1190
1191         // oembed tag
1192         $Text = oembed_bbcode2html($Text);
1193
1194         // Avoid triple linefeeds through oembed
1195         $Text = str_replace("<br style='clear:left'></span><br /><br />", "<br style='clear:left'></span><br />", $Text);
1196
1197         // If we found an event earlier, strip out all the event code and replace with a reformatted version.
1198         // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
1199         // Summary (e.g. title) is required, earlier revisions only required description (in addition to
1200         // start which is always required). Allow desc with a missing summary for compatibility.
1201
1202         if((x($ev, 'desc') || x($ev, 'summary')) && x($ev, 'start')) {
1203                 $sub = format_event_html($ev, $simplehtml);
1204
1205                 $Text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $Text);
1206                 $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $Text);
1207                 $Text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $Text);
1208                 $Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $Text);
1209                 $Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $Text);
1210                 $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism", '', $Text);
1211                 $Text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $Text);
1212         }
1213
1214
1215         // Replace inline code blocks
1216         $Text = preg_replace_callback("|(?!<br[^>]*>)<code>([^<]*)</code>(?!<br[^>]*>)|ism",
1217                 function ($match) use ($simplehtml) {
1218                         $return = '<key>' . $match[1] . '</key>';
1219                         // Use <code> for Diaspora inline code blocks
1220                         if ($simplehtml === 3) {
1221                                 $return = '<code>' . $match[1] . '</code>';
1222                         }
1223                         return $return;
1224                 }
1225         , $Text);
1226
1227         // Unhide all [noparse] contained bbtags unspacefying them
1228         // and triming the [noparse] tag.
1229
1230         $Text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'bb_unspacefy_and_trim', $Text);
1231         $Text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'bb_unspacefy_and_trim', $Text);
1232         $Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_unspacefy_and_trim', $Text);
1233
1234
1235         $Text = preg_replace('/\[\&amp\;([#a-z0-9]+)\;\]/', '&$1;', $Text);
1236         $Text = preg_replace('/\&\#039\;/', '\'', $Text);
1237         $Text = preg_replace('/\&quot\;/', '"', $Text);
1238
1239         // fix any escaped ampersands that may have been converted into links
1240         $Text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $Text);
1241
1242         // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
1243         static $allowed_src_protocols = array('http', 'redir', 'cid');
1244         $Text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
1245                              '<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
1246
1247         // sanitize href attributes (only whitelisted protocols URLs)
1248         // default value for backward compatibility
1249         $allowed_link_protocols = Config::get('system', 'allowed_link_protocols', array('ftp', 'mailto', 'gopher', 'cid'));
1250
1251         // Always allowed protocol even if config isn't set or not including it
1252         $allowed_link_protocols[] = 'http';
1253
1254         $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
1255         $Text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 class="invalid-href" title="' . t('Invalid link protocol') . '">', $Text);
1256
1257         if ($saved_image) {
1258                 $Text = bb_replace_images($Text, $saved_image);
1259         }
1260
1261         // Clean up the HTML by loading and saving the HTML with the DOM.
1262         // Bad structured html can break a whole page.
1263         // For performance reasons do it only with ativated item cache or at export.
1264         if (!$tryoembed OR (get_itemcachepath() != "")) {
1265                 $doc = new DOMDocument();
1266                 $doc->preserveWhiteSpace = false;
1267
1268                 $Text = mb_convert_encoding($Text, 'HTML-ENTITIES', "UTF-8");
1269
1270                 $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
1271                 $encoding = '<?xml encoding="UTF-8">';
1272                 @$doc->loadHTML($encoding.$doctype."<html><body>".$Text."</body></html>");
1273                 $doc->encoding = 'UTF-8';
1274                 $Text = $doc->saveHTML();
1275                 $Text = str_replace(array("<html><body>", "</body></html>", $doctype, $encoding), array("", "", "", ""), $Text);
1276
1277                 $Text = str_replace('<br></li>', '</li>', $Text);
1278
1279                 //$Text = mb_convert_encoding($Text, "UTF-8", 'HTML-ENTITIES');
1280         }
1281
1282         // Clean up some useless linebreaks in lists
1283         //$Text = str_replace('<br /><ul', '<ul ', $Text);
1284         //$Text = str_replace('</ul><br />', '</ul>', $Text);
1285         //$Text = str_replace('</li><br />', '</li>', $Text);
1286         //$Text = str_replace('<br /><li>', '<li>', $Text);
1287         //$Text = str_replace('<br /><ul', '<ul ', $Text);
1288
1289         call_hooks('bbcode', $Text);
1290
1291         return trim($Text);
1292 }
1293
1294 /**
1295  * @brief Removes the "abstract" element from the text
1296  *
1297  * @param string $text The text with BBCode
1298  * @return string The same text - but without "abstract" element
1299  */
1300 function remove_abstract($text) {
1301         $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
1302         $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
1303
1304         return $text;
1305 }
1306
1307 /**
1308  * @brief Returns the value of the "abstract" element
1309  *
1310  * @param string $text The text that maybe contains the element
1311  * @param string $addon The addon for which the abstract is meant for
1312  * @return string The abstract
1313  */
1314 function fetch_abstract($text, $addon = "") {
1315         $abstract = "";
1316         $abstracts = array();
1317         $addon = strtolower($addon);
1318
1319         if (preg_match_all("/\[abstract=(.*?)\](.*?)\[\/abstract\]/ism",$text, $results, PREG_SET_ORDER))
1320                 foreach ($results AS $result)
1321                         $abstracts[strtolower($result[1])] = $result[2];
1322
1323         if (isset($abstracts[$addon]))
1324                 $abstract = $abstracts[$addon];
1325
1326         if ($abstract == "")
1327                 if (preg_match("/\[abstract\](.*?)\[\/abstract\]/ism",$text, $result))
1328                         $abstract = $result[1];
1329
1330         return $abstract;
1331 }