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