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