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