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