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