3 * @file src/Content/Text/BBCode.php
5 namespace Friendica\Content\Text;
10 use Friendica\Content\OEmbed;
11 use Friendica\Content\Smilies;
12 use Friendica\Content\Text\Plaintext;
13 use Friendica\Core\Addon;
14 use Friendica\Core\Cache;
15 use Friendica\Core\Config;
16 use Friendica\Core\L10n;
17 use Friendica\Core\Protocol;
18 use Friendica\Core\PConfig;
19 use Friendica\Core\System;
20 use Friendica\Model\Contact;
21 use Friendica\Object\Image;
22 use Friendica\Util\Map;
23 use Friendica\Util\Network;
24 use Friendica\Util\ParseUrl;
26 require_once "include/bbcode.php";
27 require_once "include/event.php";
28 require_once "include/html2plain.php";
29 require_once "mod/proxy.php";
34 * @brief Fetches attachment data that were generated the old way
36 * @param string $body Message body
38 * 'type' -> Message type ("link", "video", "photo")
39 * 'text' -> Text before the shared message
40 * 'after' -> Text after the shared message
41 * 'image' -> Preview image of the message
42 * 'url' -> Url to the attached message
43 * 'title' -> Title of the attachment
44 * 'description' -> Description of the attachment
46 private static function getOldAttachmentData($body)
50 // Simplify image codes
51 $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
53 if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism", $body, $attached, PREG_SET_ORDER)) {
54 foreach ($attached as $data) {
55 if (!in_array($data[1], ["type-link", "type-video", "type-photo"])) {
59 $post["type"] = substr($data[1], 5);
61 $pos = strpos($body, $data[0]);
63 $post["text"] = trim(substr($body, 0, $pos));
64 $post["after"] = trim(substr($body, $pos + strlen($data[0])));
66 $post["text"] = trim(str_replace($data[0], "", $body));
69 $attacheddata = $data[2];
71 $URLSearchString = "^\[\]";
73 if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches)) {
75 $picturedata = Image::getInfoFromURL($matches[1]);
77 if (($picturedata[0] >= 500) && ($picturedata[0] >= $picturedata[1])) {
78 $post["image"] = $matches[1];
80 $post["preview"] = $matches[1];
84 if (preg_match("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
85 $post["url"] = $matches[1];
86 $post["title"] = $matches[2];
88 if (($post["url"] == "") && (in_array($post["type"], ["link", "video"]))
89 && preg_match("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $attacheddata, $matches)) {
90 $post["url"] = $matches[1];
93 // Search for description
94 if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches)) {
95 $post["description"] = $matches[1];
103 * @brief Fetches attachment data that were generated with the "attachment" element
105 * @param string $body Message body
107 * 'type' -> Message type ("link", "video", "photo")
108 * 'text' -> Text before the shared message
109 * 'after' -> Text after the shared message
110 * 'image' -> Preview image of the message
111 * 'url' -> Url to the attached message
112 * 'title' -> Title of the attachment
113 * 'description' -> Description of the attachment
115 public static function getAttachmentData($body)
119 if (!preg_match("/(.*)\[attachment(.*?)\](.*?)\[\/attachment\](.*)/ism", $body, $match)) {
120 return self::getOldAttachmentData($body);
123 $attributes = $match[2];
125 $data["text"] = trim($match[1]);
128 preg_match("/type='(.*?)'/ism", $attributes, $matches);
129 if (x($matches, 1)) {
130 $type = strtolower($matches[1]);
133 preg_match('/type="(.*?)"/ism', $attributes, $matches);
134 if (x($matches, 1)) {
135 $type = strtolower($matches[1]);
142 if (!in_array($type, ["link", "audio", "photo", "video"])) {
147 $data["type"] = $type;
151 preg_match("/url='(.*?)'/ism", $attributes, $matches);
152 if (x($matches, 1)) {
156 preg_match('/url="(.*?)"/ism', $attributes, $matches);
157 if (x($matches, 1)) {
162 $data["url"] = html_entity_decode($url, ENT_QUOTES, 'UTF-8');
166 preg_match("/title='(.*?)'/ism", $attributes, $matches);
167 if (x($matches, 1)) {
168 $title = $matches[1];
171 preg_match('/title="(.*?)"/ism', $attributes, $matches);
172 if (x($matches, 1)) {
173 $title = $matches[1];
177 $title = bbcode(html_entity_decode($title, ENT_QUOTES, 'UTF-8'), false, false, true);
178 $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
179 $title = str_replace(["[", "]"], ["[", "]"], $title);
180 $data["title"] = $title;
184 preg_match("/image='(.*?)'/ism", $attributes, $matches);
185 if (x($matches, 1)) {
186 $image = $matches[1];
189 preg_match('/image="(.*?)"/ism', $attributes, $matches);
190 if (x($matches, 1)) {
191 $image = $matches[1];
195 $data["image"] = html_entity_decode($image, ENT_QUOTES, 'UTF-8');
199 preg_match("/preview='(.*?)'/ism", $attributes, $matches);
200 if (x($matches, 1)) {
201 $preview = $matches[1];
204 preg_match('/preview="(.*?)"/ism', $attributes, $matches);
205 if (x($matches, 1)) {
206 $preview = $matches[1];
209 if ($preview != "") {
210 $data["preview"] = html_entity_decode($preview, ENT_QUOTES, 'UTF-8');
213 $data["description"] = trim($match[3]);
215 $data["after"] = trim($match[4]);
220 public static function getAttachedData($body, $item = [])
224 - type: link, video, photo
232 $has_title = !empty($item['title']);
233 $plink = (!empty($item['plink']) ? $item['plink'] : '');
234 $post = self::getAttachmentData($body);
236 // if nothing is found, it maybe having an image.
237 if (!isset($post["type"])) {
238 // Simplify image codes
239 $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
241 $URLSearchString = "^\[\]";
242 if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures, PREG_SET_ORDER)) {
243 if ((count($pictures) == 1) && !$has_title) {
244 // Checking, if the link goes to a picture
245 $data = ParseUrl::getSiteinfoCached($pictures[0][1], true);
248 // Sometimes photo posts to the own album are not detected at the start.
249 // So we seem to cannot use the cache for these cases. That's strange.
250 if (($data["type"] != "photo") && strstr($pictures[0][1], "/photos/")) {
251 $data = ParseUrl::getSiteinfo($pictures[0][1], true);
254 if ($data["type"] == "photo") {
255 $post["type"] = "photo";
256 if (isset($data["images"][0])) {
257 $post["image"] = $data["images"][0]["src"];
258 $post["url"] = $data["url"];
260 $post["image"] = $data["url"];
263 $post["preview"] = $pictures[0][2];
264 $post["text"] = str_replace($pictures[0][0], "", $body);
266 $imgdata = Image::getInfoFromURL($pictures[0][1]);
267 if (substr($imgdata["mime"], 0, 6) == "image/") {
268 $post["type"] = "photo";
269 $post["image"] = $pictures[0][1];
270 $post["preview"] = $pictures[0][2];
271 $post["text"] = str_replace($pictures[0][0], "", $body);
274 } elseif (count($pictures) > 0) {
275 $post["type"] = "link";
276 $post["url"] = $plink;
277 $post["image"] = $pictures[0][2];
278 $post["text"] = $body;
280 } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures, PREG_SET_ORDER)) {
281 if ((count($pictures) == 1) && !$has_title) {
282 $post["type"] = "photo";
283 $post["image"] = $pictures[0][1];
284 $post["text"] = str_replace($pictures[0][0], "", $body);
285 } elseif (count($pictures) > 0) {
286 $post["type"] = "link";
287 $post["url"] = $plink;
288 $post["image"] = $pictures[0][1];
289 $post["text"] = $body;
293 // Test for the external links
294 preg_match_all("(\[url\]([$URLSearchString]*)\[\/url\])ism", $body, $links1, PREG_SET_ORDER);
295 preg_match_all("(\[url\=([$URLSearchString]*)\].*?\[\/url\])ism", $body, $links2, PREG_SET_ORDER);
297 $links = array_merge($links1, $links2);
299 // If there is only a single one, then use it.
300 // This should cover link posts via API.
301 if ((count($links) == 1) && !isset($post["preview"]) && !$has_title) {
302 $post["type"] = "link";
303 $post["text"] = trim($body);
304 $post["url"] = $links[0][1];
307 // Now count the number of external media links
308 preg_match_all("(\[vimeo\](.*?)\[\/vimeo\])ism", $body, $links1, PREG_SET_ORDER);
309 preg_match_all("(\[youtube\\](.*?)\[\/youtube\\])ism", $body, $links2, PREG_SET_ORDER);
310 preg_match_all("(\[video\\](.*?)\[\/video\\])ism", $body, $links3, PREG_SET_ORDER);
311 preg_match_all("(\[audio\\](.*?)\[\/audio\\])ism", $body, $links4, PREG_SET_ORDER);
313 // Add them to the other external links
314 $links = array_merge($links, $links1, $links2, $links3, $links4);
316 // Are there more than one?
317 if (count($links) > 1) {
318 // The post will be the type "text", which means a blog post
319 unset($post["type"]);
320 $post["url"] = $plink;
323 if (!isset($post["type"])) {
324 $post["type"] = "text";
325 $post["text"] = trim($body);
327 } elseif (isset($post["url"]) && ($post["type"] == "video")) {
328 $data = ParseUrl::getSiteinfoCached($post["url"], true);
330 if (isset($data["images"][0])) {
331 $post["image"] = $data["images"][0]["src"];
339 * @brief Convert a message into plaintext for connectors to other networks
341 * @param array $b The message array that is about to be posted
342 * @param int $limit The maximum number of characters when posting to that network
343 * @param bool $includedlinks Has an attached link to be included into the message?
344 * @param int $htmlmode This triggers the behaviour of the bbcode conversion
345 * @param string $target_network Name of the network where the post should go to.
347 * @return string The converted message
349 public static function toPlaintext($b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "")
351 // Remove the hash tags
352 $URLSearchString = "^\[\]";
353 $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
355 // Add an URL element if the text contains a raw link
356 $body = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2[/url]', $body);
358 // Remove the abstract
359 $body = self::stripAbstract($body);
361 // At first look at data that is attached via "type-..." stuff
362 // This will hopefully replaced with a dedicated bbcode later
363 //$post = self::getAttachedData($b["body"]);
364 $post = self::getAttachedData($body, $b);
366 if (($b["title"] != "") && ($post["text"] != "")) {
367 $post["text"] = trim($b["title"]."\n\n".$post["text"]);
368 } elseif ($b["title"] != "") {
369 $post["text"] = trim($b["title"]);
374 // Fetch the abstract from the given target network
375 if ($target_network != "") {
376 $default_abstract = self::getAbstract($b["body"]);
377 $abstract = self::getAbstract($b["body"], $target_network);
379 // If we post to a network with no limit we only fetch
380 // an abstract exactly for this network
381 if (($limit == 0) && ($abstract == $default_abstract)) {
384 } else {// Try to guess the correct target network
387 $abstract = self::getAbstract($b["body"], NETWORK_TWITTER);
390 $abstract = self::getAbstract($b["body"], NETWORK_STATUSNET);
393 $abstract = self::getAbstract($b["body"], NETWORK_APPNET);
395 default: // We don't know the exact target.
396 // We fetch an abstract since there is a posting limit.
398 $abstract = self::getAbstract($b["body"]);
403 if ($abstract != "") {
404 $post["text"] = $abstract;
406 if ($post["type"] == "text") {
407 $post["type"] = "link";
408 $post["url"] = $b["plink"];
412 $html = bbcode($post["text"].$post["after"], false, false, $htmlmode);
413 $msg = html2plain($html, 0, true);
414 $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
417 if ($includedlinks) {
418 if ($post["type"] == "link") {
419 $link = $post["url"];
420 } elseif ($post["type"] == "text") {
421 $link = $post["url"];
422 } elseif ($post["type"] == "video") {
423 $link = $post["url"];
424 } elseif ($post["type"] == "photo") {
425 $link = $post["image"];
428 if (($msg == "") && isset($post["title"])) {
429 $msg = trim($post["title"]);
432 if (($msg == "") && isset($post["description"])) {
433 $msg = trim($post["description"]);
436 // If the link is already contained in the post, then it neeedn't to be added again
437 // But: if the link is beyond the limit, then it has to be added.
438 if (($link != "") && strstr($msg, $link)) {
439 $pos = strpos($msg, $link);
441 // Will the text be shortened in the link?
442 // Or is the link the last item in the post?
443 if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
444 $msg = trim(str_replace($link, "", $msg));
445 } elseif (($limit == 0) || ($pos < $limit)) {
446 // The limit has to be increased since it will be shortened - but not now
447 // Only do it with Twitter (htmlmode = 8)
448 if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
449 $limit = $limit - 23 + strlen($link);
454 if ($post["type"] == "text") {
462 // Reduce multiple spaces
463 // When posted to a network with limited space, we try to gain space where possible
464 while (strpos($msg, " ") !== false) {
465 $msg = str_replace(" ", " ", $msg);
468 // Twitter is using its own limiter, so we always assume that shortened links will have this length
469 if (iconv_strlen($link, "UTF-8") > 0) {
470 $limit = $limit - 23;
473 if (iconv_strlen($msg, "UTF-8") > $limit) {
474 if (($post["type"] == "text") && isset($post["url"])) {
475 $post["url"] = $b["plink"];
476 } elseif (!isset($post["url"])) {
477 $limit = $limit - 23;
478 $post["url"] = $b["plink"];
479 // Which purpose has this line? It is now uncommented, but left as a reminder
480 //} elseif (strpos($b["body"], "[share") !== false) {
481 // $post["url"] = $b["plink"];
482 } elseif (PConfig::get($b["uid"], "system", "no_intelligent_shortening")) {
483 $post["url"] = $b["plink"];
485 $msg = Plaintext::shorten($msg, $limit);
489 $post["text"] = trim($msg);
494 public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
496 // Suppress "view full size"
497 if (intval(Config::get('system', 'no_view_full_size'))) {
498 $include_link = false;
501 // Picture addresses can contain special characters
502 $s = htmlspecialchars_decode($srctext);
505 $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
507 foreach ($matches as $mtch) {
508 logger('scale_external_image: ' . $mtch[1]);
510 $hostname = str_replace('www.', '', substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3));
511 if (stristr($mtch[1], $hostname)) {
515 // $scale_replace, if passed, is an array of two elements. The
516 // first is the name of the full-size image. The second is the
517 // name of a remote, scaled-down version of the full size image.
518 // This allows Friendica to display the smaller remote image if
519 // one exists, while still linking to the full-size image
520 if ($scale_replace) {
521 $scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
525 $i = Network::fetchUrl($scaled);
530 // guess mimetype from headers or filename
531 $type = Image::guessType($mtch[1], true);
534 $Image = new Image($i, $type);
535 if ($Image->isValid()) {
536 $orig_width = $Image->getWidth();
537 $orig_height = $Image->getHeight();
539 if ($orig_width > 640 || $orig_height > 640) {
540 $Image->scaleDown(640);
541 $new_width = $Image->getWidth();
542 $new_height = $Image->getHeight();
543 logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG);
546 '[img=' . $new_width . 'x' . $new_height. ']' . $scaled . '[/img]'
547 . "\n" . (($include_link)
548 ? '[url=' . $mtch[1] . ']' . L10n::t('view full size') . '[/url]' . "\n"
552 logger('scale_external_images: new string: ' . $s, LOGGER_DEBUG);
559 // replace the special char encoding
560 $s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
565 * The purpose of this function is to apply system message length limits to
566 * imported messages without including any embedded photos in the length
568 * @brief Truncates imported message body string length to max_import_size
569 * @param string $body
572 public static function limitBodySize($body)
574 $maxlen = get_max_import_size();
576 // If the length of the body, including the embedded images, is smaller
577 // than the maximum, then don't waste time looking for the images
578 if ($maxlen && (strlen($body) > $maxlen)) {
580 logger('the total body length exceeds the limit', LOGGER_DEBUG);
586 $img_start = strpos($orig_body, '[img');
587 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
588 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
589 while (($img_st_close !== false) && ($img_end !== false)) {
591 $img_st_close++; // make it point to AFTER the closing bracket
592 $img_end += $img_start;
593 $img_end += strlen('[/img]');
595 if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
596 // This is an embedded image
598 if (($textlen + $img_start) > $maxlen) {
599 if ($textlen < $maxlen) {
600 logger('the limit happens before an embedded image', LOGGER_DEBUG);
601 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
605 $new_body = $new_body . substr($orig_body, 0, $img_start);
606 $textlen += $img_start;
609 $new_body = $new_body . substr($orig_body, $img_start, $img_end - $img_start);
612 if (($textlen + $img_end) > $maxlen) {
613 if ($textlen < $maxlen) {
614 logger('the limit happens before the end of a non-embedded image', LOGGER_DEBUG);
615 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
619 $new_body = $new_body . substr($orig_body, 0, $img_end);
620 $textlen += $img_end;
623 $orig_body = substr($orig_body, $img_end);
625 if ($orig_body === false) {
626 // in case the body ends on a closing image tag
630 $img_start = strpos($orig_body, '[img');
631 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
632 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
635 if (($textlen + strlen($orig_body)) > $maxlen) {
636 if ($textlen < $maxlen) {
637 logger('the limit happens after the end of the last image', LOGGER_DEBUG);
638 $new_body = $new_body . substr($orig_body, 0, $maxlen - $textlen);
641 logger('the text size with embedded images extracted did not violate the limit', LOGGER_DEBUG);
642 $new_body = $new_body . $orig_body;
652 * Processes [attachment] tags
654 * Note: Can produce a [bookmark] tag in the returned string
656 * @brief Processes [attachment] tags
657 * @param string $return
658 * @param bool|int $simplehtml
659 * @param bool $tryoembed
662 private static function convertAttachment($return, $simplehtml = false, $tryoembed = true)
664 $data = self::getAttachmentData($return);
669 if (isset($data["title"])) {
670 $data["title"] = strip_tags($data["title"]);
671 $data["title"] = str_replace(["http://", "https://"], "", $data["title"]);
674 if (((strpos($data["text"], "[img=") !== false) || (strpos($data["text"], "[img]") !== false) || Config::get('system', 'always_show_preview')) && ($data["image"] != "")) {
675 $data["preview"] = $data["image"];
680 if ($simplehtml == 7) {
681 $return = self::convertUrlForMastodon($data["url"]);
682 } elseif (($simplehtml != 4) && ($simplehtml != 0)) {
683 $return = sprintf('<a href="%s" target="_blank">%s</a><br>', $data["url"], $data["title"]);
686 if ($tryoembed && OEmbed::isAllowedURL($data['url'])) {
687 $return = OEmbed::getHTML($data['url'], $data['title']);
689 throw new Exception('OEmbed is disabled for this attachment.');
691 } catch (Exception $e) {
692 if ($simplehtml != 4) {
693 $return = sprintf('<div class="type-%s">', $data["type"]);
696 if ($data["image"] != "") {
697 $return .= 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"]);
698 } elseif ($data["preview"] != "") {
699 $return .= 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"]);
702 if (($data["type"] == "photo") && ($data["url"] != "") && ($data["image"] != "")) {
703 $return .= sprintf('<a href="%s" target="_blank"><img src="%s" alt="" title="%s" class="attachment-image" /></a>', $data["url"], proxy_url($data["image"]), $data["title"]);
705 $return .= sprintf('<h4><a href="%s">%s</a></h4>', $data['url'], $data['title']);
708 if ($data["description"] != "" && $data["description"] != $data["title"]) {
709 $return .= sprintf('<blockquote>%s</blockquote>', trim(bbcode($data["description"])));
712 if ($data["type"] == "link") {
713 $return .= sprintf('<sup><a href="%s">%s</a></sup>', $data['url'], parse_url($data['url'], PHP_URL_HOST));
716 if ($simplehtml != 4) {
722 return trim($data["text"] . ' ' . $return . ' ' . $data["after"]);
725 public static function removeShareInformation($Text, $plaintext = false, $nolink = false)
727 $data = self::getAttachmentData($Text);
732 return $data["text"] . $data["after"];
735 $title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false);
736 $text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false);
737 if ($plaintext || (($title != "") && strstr($text, $title))) {
738 $data["title"] = $data["url"];
739 } elseif (($text != "") && strstr($title, $text)) {
740 $data["text"] = $data["title"];
741 $data["title"] = $data["url"];
744 if (($data["text"] == "") && ($data["title"] != "") && ($data["url"] == "")) {
745 return $data["title"] . $data["after"];
748 // If the link already is included in the post, don't add it again
749 if (($data["url"] != "") && strpos($data["text"], $data["url"])) {
750 return $data["text"] . $data["after"];
753 $text = $data["text"];
755 if (($data["url"] != "") && ($data["title"] != "")) {
756 $text .= "\n[url=" . $data["url"] . "]" . $data["title"] . "[/url]";
757 } elseif (($data["url"] != "")) {
758 $text .= "\n" . $data["url"];
761 return $text . "\n" . $data["after"];
764 private static function cleanCss($input)
768 $input = strtolower($input);
770 for ($i = 0; $i < strlen($input); $i++) {
771 $char = substr($input, $i, 1);
773 if (($char >= "a") && ($char <= "z")) {
777 if (!(strpos(" #;:0123456789-_.%", $char) === false)) {
786 * Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
788 * @brief Converts [url] BBCodes in a format that looks fine on Mastodon. (callback function)
789 * @param array $match Array with the matching values
790 * @return string reformatted link including HTML codes
792 private static function convertUrlForMastodonCallback($match)
796 if (isset($match[2]) && ($match[1] != $match[2])) {
800 $parts = parse_url($url);
801 if (!isset($parts['scheme'])) {
805 return self::convertUrlForMastodon($url);
809 * @brief Converts [url] BBCodes in a format that looks fine on Mastodon and GNU Social.
810 * @param string $url URL that is about to be reformatted
811 * @return string reformatted link including HTML codes
813 private static function convertUrlForMastodon($url)
815 $parts = parse_url($url);
816 $scheme = $parts['scheme'] . '://';
817 $styled_url = str_replace($scheme, '', $url);
819 $html = '<a href="%s" class="attachment" rel="nofollow noopener" target="_blank">' .
820 '<span class="invisible">%s</span>';
822 if (strlen($styled_url) > 30) {
823 $html .= '<span class="ellipsis">%s</span>' .
824 '<span class="invisible">%s</span></a>';
826 $ellipsis = substr($styled_url, 0, 30);
827 $rest = substr($styled_url, 30);
828 return sprintf($html, $url, $scheme, $ellipsis, $rest);
831 return sprintf($html, $url, $scheme, $styled_url);
836 * [noparse][i]italic[/i][/noparse] turns into
837 * [noparse][ i ]italic[ /i ][/noparse],
838 * to hide them from parser.
840 private static function escapeNoparseCallback($match)
842 $whole_match = $match[0];
843 $captured = $match[1];
844 $spacefied = preg_replace("/\[(.*?)\]/", "[ $1 ]", $captured);
845 $new_str = str_replace($captured, $spacefied, $whole_match);
850 * The previously spacefied [noparse][ i ]italic[ /i ][/noparse],
851 * now turns back and the [noparse] tags are trimed
852 * returning [i]italic[/i]
854 private static function unescapeNoparseCallback($match)
856 $captured = $match[1];
857 $unspacefied = preg_replace("/\[ (.*?)\ ]/", "[$1]", $captured);
862 * Returns the bracket character positions of a set of opening and closing BBCode tags, optionally skipping first
865 * @param string $text Text to search
866 * @param string $name Tag name
867 * @param int $occurrences Number of first occurrences to skip
868 * @return boolean|array
870 public static function getTagPosition($text, $name, $occurrences = 0)
872 if ($occurrences < 0) {
877 for ($i = 0; $i <= $occurrences; $i++) {
878 if ($start_open !== false) {
879 $start_open = strpos($text, '[' . $name, $start_open + 1); // allow [name= type tags
883 if ($start_open === false) {
887 $start_equal = strpos($text, '=', $start_open);
888 $start_close = strpos($text, ']', $start_open);
890 if ($start_close === false) {
896 $end_open = strpos($text, '[/' . $name . ']', $start_close);
898 if ($end_open === false) {
904 'open' => $start_open,
905 'close' => $start_close
909 'close' => $end_open + strlen('[/' . $name . ']')
913 if ($start_equal !== false) {
914 $res['start']['equal'] = $start_equal + 1;
921 * Performs a preg_replace within the boundaries of all named BBCode tags in a text
923 * @param type $pattern Preg pattern string
924 * @param type $replace Preg replace string
925 * @param type $name BBCode tag name
926 * @param type $text Text to search
929 public static function pregReplaceInTag($pattern, $replace, $name, $text)
932 $pos = self::getTagPosition($text, $name, $occurrences);
933 while ($pos !== false && $occurrences++ < 1000) {
934 $start = substr($text, 0, $pos['start']['open']);
935 $subject = substr($text, $pos['start']['open'], $pos['end']['close'] - $pos['start']['open']);
936 $end = substr($text, $pos['end']['close']);
937 if ($end === false) {
941 $subject = preg_replace($pattern, $replace, $subject);
942 $text = $start . $subject . $end;
944 $pos = self::getTagPosition($text, $name, $occurrences);
950 private static function extractImagesFromItemBody($body)
957 $img_start = strpos($orig_body, '[img');
958 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
959 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
960 while (($img_st_close !== false) && ($img_end !== false)) {
961 $img_st_close++; // make it point to AFTER the closing bracket
962 $img_end += $img_start;
964 if (!strcmp(substr($orig_body, $img_start + $img_st_close, 5), 'data:')) {
965 // This is an embedded image
966 $saved_image[$cnt] = substr($orig_body, $img_start + $img_st_close, $img_end - ($img_start + $img_st_close));
967 $new_body = $new_body . substr($orig_body, 0, $img_start) . '[$#saved_image' . $cnt . '#$]';
971 $new_body = $new_body . substr($orig_body, 0, $img_end + strlen('[/img]'));
974 $orig_body = substr($orig_body, $img_end + strlen('[/img]'));
976 if ($orig_body === false) {
977 // in case the body ends on a closing image tag
981 $img_start = strpos($orig_body, '[img');
982 $img_st_close = ($img_start !== false ? strpos(substr($orig_body, $img_start), ']') : false);
983 $img_end = ($img_start !== false ? strpos(substr($orig_body, $img_start), '[/img]') : false);
986 $new_body = $new_body . $orig_body;
988 return ['body' => $new_body, 'images' => $saved_image];
991 private static function interpolateSavedImagesIntoItemBody($body, array $images)
996 foreach ($images as $image) {
997 // We're depending on the property of 'foreach' (specified on the PHP website) that
998 // it loops over the array starting from the first element and going sequentially
999 // to the last element
1000 $newbody = str_replace('[$#saved_image' . $cnt . '#$]',
1001 '<img src="' . proxy_url($image) . '" alt="' . L10n::t('Image/photo') . '" />', $newbody);
1009 * Processes [share] tags
1011 * Note: Can produce a [bookmark] tag in the output
1013 * @brief Processes [share] tags
1014 * @param array $share preg_match_callback result array
1015 * @param bool|int $simplehtml
1018 private static function convertShare($share, $simplehtml)
1020 $attributes = $share[2];
1023 preg_match("/author='(.*?)'/ism", $attributes, $matches);
1024 if (x($matches, 1)) {
1025 $author = html_entity_decode($matches[1], ENT_QUOTES, 'UTF-8');
1028 preg_match('/author="(.*?)"/ism', $attributes, $matches);
1029 if (x($matches, 1)) {
1030 $author = $matches[1];
1034 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
1035 if (x($matches, 1)) {
1036 $profile = $matches[1];
1039 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
1040 if (x($matches, 1)) {
1041 $profile = $matches[1];
1045 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
1046 if (x($matches, 1)) {
1047 $avatar = $matches[1];
1050 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
1051 if (x($matches, 1)) {
1052 $avatar = $matches[1];
1056 preg_match("/link='(.*?)'/ism", $attributes, $matches);
1057 if (x($matches, 1)) {
1058 $link = $matches[1];
1061 preg_match('/link="(.*?)"/ism', $attributes, $matches);
1062 if (x($matches, 1)) {
1063 $link = $matches[1];
1068 preg_match("/posted='(.*?)'/ism", $attributes, $matches);
1069 if (x($matches, 1)) {
1070 $posted = $matches[1];
1073 preg_match('/posted="(.*?)"/ism', $attributes, $matches);
1074 if (x($matches, 1)) {
1075 $posted = $matches[1];
1078 // We only call this so that a previously unknown contact can be added.
1079 // This is important for the function "Model\Contact::getDetailsByURL()".
1080 // This function then can fetch an entry from the contact table.
1081 Contact::getIdForURL($profile, 0);
1083 $data = Contact::getDetailsByURL($profile);
1085 if (x($data, "name") && x($data, "addr")) {
1086 $userid_compact = $data["name"] . " (" . $data["addr"] . ")";
1088 $userid_compact = Protocol::getAddrFromProfileUrl($profile, $author);
1091 if (x($data, "addr")) {
1092 $userid = $data["addr"];
1094 $userid = Protocol::formatMention($profile, $author);
1097 if (x($data, "name")) {
1098 $author = $data["name"];
1101 if (x($data, "micro")) {
1102 $avatar = $data["micro"];
1105 $preshare = trim($share[1]);
1106 if ($preshare != "") {
1107 $preshare .= "<br />";
1110 switch ($simplehtml) {
1112 $text = $preshare . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $userid . "</a>: <br />»" . $share[3] . "«";
1115 $text = $preshare . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1118 $headline .= '<b>' . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . $userid . ':</b><br />';
1120 $text = trim($share[1]);
1126 if (stripos(normalise_link($link), 'http://twitter.com/') === 0) {
1127 $text .= $headline . '<blockquote>' . trim($share[3]) . "</blockquote><br />";
1130 $text .= '<br /><a href="' . $link . '">[l]</a>';
1133 $text .= '<br /><a href="' . $link . '">' . $link . '</a>';
1138 $headline .= '<br /><b>' . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8');
1139 $headline .= L10n::t('<a href="%1$s" target="_blank">%2$s</a> %3$s', $link, $userid, $posted);
1140 $headline .= ":</b><br />";
1142 $text = trim($share[1]);
1148 $text .= $headline . '<blockquote class="shared_content">' . trim($share[3]) . "</blockquote><br />";
1152 $text = $preshare . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1155 $text = $preshare . ">> @" . $userid_compact . ": <br />" . $share[3];
1157 case 7: // statusnet/GNU Social
1158 $text = $preshare . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . " @" . $userid_compact . ": " . $share[3];
1161 $text = $preshare . "RT @" . $userid_compact . ": " . $share[3];
1163 case 9: // Google+/Facebook
1164 $text = $preshare . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' ' . $userid_compact . ": <br />" . $share[3];
1167 $text .= "<br /><br />" . $link;
1171 // Transforms quoted tweets in rich attachments to avoid nested tweets
1172 if (stripos(normalise_link($link), 'http://twitter.com/') === 0 && OEmbed::isAllowedURL($link)) {
1174 $oembed = OEmbed::getHTML($link, $preshare);
1175 } catch (Exception $e) {
1176 $oembed = sprintf('[bookmark=%s]%s[/bookmark]', $link, $preshare);
1179 $text = $preshare . $oembed;
1181 $text = trim($share[1]) . "\n";
1183 $avatar = proxy_url($avatar, false, PROXY_SIZE_THUMB);
1185 $tpl = get_markup_template('shared_content.tpl');
1186 $text .= replace_macros($tpl, [
1187 '$profile' => $profile,
1188 '$avatar' => $avatar,
1189 '$author' => $author,
1191 '$posted' => $posted,
1192 '$content' => trim($share[3])
1201 private static function removePictureLinksCallback($match)
1203 $text = Cache::get($match[1]);
1205 if (is_null($text)) {
1208 $stamp1 = microtime(true);
1210 $ch = @curl_init($match[1]);
1211 @curl_setopt($ch, CURLOPT_NOBODY, true);
1212 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
1213 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
1215 $curl_info = @curl_getinfo($ch);
1217 $a->save_timestamp($stamp1, "network");
1219 if (substr($curl_info["content_type"], 0, 6) == "image/") {
1220 $text = "[url=" . $match[1] . "]" . $match[1] . "[/url]";
1222 $text = "[url=" . $match[2] . "]" . $match[2] . "[/url]";
1224 // if its not a picture then look if its a page that contains a picture link
1225 $body = Network::fetchUrl($match[1]);
1227 $doc = new DOMDocument();
1228 @$doc->loadHTML($body);
1229 $xpath = new DomXPath($doc);
1230 $list = $xpath->query("//meta[@name]");
1231 foreach ($list as $node) {
1234 if ($node->attributes->length) {
1235 foreach ($node->attributes as $attribute) {
1236 $attr[$attribute->name] = $attribute->value;
1240 if (strtolower($attr["name"]) == "twitter:image") {
1241 $text = "[url=" . $attr["content"] . "]" . $attr["content"] . "[/url]";
1245 Cache::set($match[1], $text);
1251 private static function expandLinksCallback($match)
1253 if (($match[3] == "") || ($match[2] == $match[3]) || stristr($match[2], $match[3])) {
1254 return ($match[1] . "[url]" . $match[2] . "[/url]");
1256 return ($match[1] . $match[3] . " [url]" . $match[2] . "[/url]");
1260 private static function cleanPictureLinksCallback($match)
1262 $text = Cache::get($match[1]);
1264 if (is_null($text)) {
1267 $stamp1 = microtime(true);
1269 $ch = @curl_init($match[1]);
1270 @curl_setopt($ch, CURLOPT_NOBODY, true);
1271 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
1272 @curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
1274 $curl_info = @curl_getinfo($ch);
1276 $a->save_timestamp($stamp1, "network");
1278 // if its a link to a picture then embed this picture
1279 if (substr($curl_info["content_type"], 0, 6) == "image/") {
1280 $text = "[img]" . $match[1] . "[/img]";
1282 $text = "[img]" . $match[2] . "[/img]";
1284 // if its not a picture then look if its a page that contains a picture link
1285 $body = Network::fetchUrl($match[1]);
1287 $doc = new DOMDocument();
1288 @$doc->loadHTML($body);
1289 $xpath = new DomXPath($doc);
1290 $list = $xpath->query("//meta[@name]");
1291 foreach ($list as $node) {
1293 if ($node->attributes->length) {
1294 foreach ($node->attributes as $attribute) {
1295 $attr[$attribute->name] = $attribute->value;
1299 if (strtolower($attr["name"]) == "twitter:image") {
1300 $text = "[img]" . $attr["content"] . "[/img]";
1304 Cache::set($match[1], $text);
1310 public static function cleanPictureLinks($text)
1312 $return = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::cleanPictureLinksCallback', $text);
1316 private static function textHighlightCallback($match)
1318 if (in_array(strtolower($match[1]),
1319 ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby',
1320 'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])
1322 return text_highlight($match[2], strtolower($match[1]));
1328 * @brief Converts a BBCode message to HTML message
1330 * BBcode 2 HTML was written by WAY2WEB.net
1331 * extended to work with Mistpark/Friendica - Mike Macgirvin
1333 * Simple HTML values meaning:
1334 * - 0: Friendica display
1336 * - 2: Used for Facebook, Google+, Windows Phone push, Friendica API
1337 * - 3: Used before converting to Markdown in bb2diaspora.php
1338 * - 4: Used for WordPress, Libertree (before Markdown), pump.io and tumblr
1340 * - 6: Used for Appnet
1341 * - 7: Used for dfrn, OStatus
1342 * - 8: Used for WP backlink text setting
1344 * @param string $text
1345 * @param bool $preserve_nl
1346 * @param bool $try_oembed
1347 * @param int $simple_html
1348 * @param bool $for_plaintext
1351 public static function convert($text, $preserve_nl = false, $try_oembed = true, $simple_html = false, $for_plaintext = false)
1356 * preg_match_callback function to replace potential Oembed tags with Oembed content
1358 * $match[0] = [tag]$url[/tag] or [tag=$url]$title[/tag]
1360 * $match[2] = $title or absent
1362 $try_oembed_callback = function ($match)
1365 $title = defaults($match, 2, null);
1368 $return = OEmbed::getHTML($url, $title);
1369 } catch (Exception $ex) {
1370 $return = $match[0];
1376 // Hide all [noparse] contained bbtags by spacefying them
1377 // POSSIBLE BUG --> Will the 'preg' functions crash if there's an embedded image?
1379 $text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'self::escapeNoparseCallback', $text);
1380 $text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'self::escapeNoparseCallback', $text);
1381 $text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'self::escapeNoparseCallback', $text);
1383 // Remove the abstract element. It is a non visible element.
1384 $text = self::stripAbstract($text);
1386 // Move all spaces out of the tags
1387 $text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $text);
1388 $text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $text);
1390 // Extract the private images which use data urls since preg has issues with
1391 // large data sizes. Stash them away while we do bbcode conversion, and then put them back
1392 // in after we've done all the regex matching. We cannot use any preg functions to do this.
1394 $extracted = self::extractImagesFromItemBody($text);
1395 $text = $extracted['body'];
1396 $saved_image = $extracted['images'];
1398 // If we find any event code, turn it into an event.
1399 // After we're finished processing the bbcode we'll
1400 // replace all of the event code with a reformatted version.
1402 $ev = bbtoevent($text);
1404 // Replace any html brackets with HTML Entities to prevent executing HTML or script
1405 // Don't use strip_tags here because it breaks [url] search by replacing & with amp
1407 $text = str_replace("<", "<", $text);
1408 $text = str_replace(">", ">", $text);
1410 // remove some newlines before the general conversion
1411 $text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "[share$1]$2[/share]", $text);
1412 $text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "[quote$1]$2[/quote]", $text);
1414 $text = preg_replace("/\n\[code\]/ism", "[code]", $text);
1415 $text = preg_replace("/\[\/code\]\n/ism", "[/code]", $text);
1417 // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
1419 $text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $text);
1422 // Check for [code] text here, before the linefeeds are messed with.
1423 // The highlighter will unescape and re-escape the content.
1424 if (strpos($text, '[code=') !== false) {
1425 $text = preg_replace_callback("/\[code=(.*?)\](.*?)\[\/code\]/ism", 'self::textHighlightCallback', $text);
1427 // Convert new line chars to html <br /> tags
1429 // nlbr seems to be hopelessly messed up
1430 // $Text = nl2br($Text);
1432 // We'll emulate it.
1434 $text = trim($text);
1435 $text = str_replace("\r\n", "\n", $text);
1437 // removing multiplicated newlines
1438 if (Config::get("system", "remove_multiplicated_lines")) {
1439 $search = ["\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]", "[/li]\n", "\n[li]", "\n[ul]", "[/ul]\n", "\n\n[share ", "[/attachment]\n",
1440 "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"];
1441 $replace = ["\n\n", "\n", "\n", "[/quote]\n", "[/quote]", "[/li]", "[li]", "[ul]", "[/ul]", "\n[share ", "[/attachment]",
1442 "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"];
1445 $text = str_replace($search, $replace, $text);
1446 } while ($oldtext != $text);
1449 // Set up the parameters for a URL search string
1450 $URLSearchString = "^\[\]";
1451 // Set up the parameters for a MAIL search string
1452 $MAILSearchString = $URLSearchString;
1454 // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
1455 if (!$for_plaintext) {
1456 // Autolink feature (thanks to http://code.seebz.net/p/autolink-php/)
1457 // Currently disabled, since the function is too greedy
1458 // $autolink_regex = "`([^\]\=\"']|^)(https?\://[^\s<]+[^\s<\.\)])`ism";
1459 $autolink_regex = "/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism";
1460 $text = preg_replace($autolink_regex, '$1[url]$2[/url]', $text);
1461 if ($simple_html == 7) {
1462 $text = preg_replace_callback("/\[url\]([$URLSearchString]*)\[\/url\]/ism", 'self::convertUrlForMastodonCallback', $text);
1463 $text = preg_replace_callback("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", 'self::convertUrlForMastodonCallback', $text);
1466 $text = preg_replace("(\[url\]([$URLSearchString]*)\[\/url\])ism", " $1 ", $text);
1467 $text = preg_replace_callback("&\[url=([^\[\]]*)\]\[img\](.*)\[\/img\]\[\/url\]&Usi", 'self::removePictureLinksCallback', $text);
1471 // Handle attached links or videos
1472 $text = self::convertAttachment($text, $simple_html, $try_oembed);
1474 $text = str_replace(["\r","\n"], ['<br />', '<br />'], $text);
1477 $text = str_replace(["\n", "\r"], ['', ''], $text);
1480 // Remove all hashtag addresses
1481 if ((!$try_oembed || $simple_html) && !in_array($simple_html, [3, 7])) {
1482 $text = preg_replace("/([#@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $text);
1483 } elseif ($simple_html == 3) {
1484 // The ! is converted to @ since Diaspora only understands the @
1485 $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1486 '@<a href="$2">$3</a>',
1488 } elseif ($simple_html == 7) {
1489 $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1490 '$1<span class="vcard"><a href="$2" class="url" title="$3"><span class="fn nickname mention">$3</span></a></span>',
1492 } elseif (!$simple_html) {
1493 $text = preg_replace("/([@!])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1494 '$1<a href="$2" class="userinfo mention" title="$3">$3</a>',
1498 // Bookmarks in red - will be converted to bookmarks in friendica
1499 $text = preg_replace("/#\^\[url\]([$URLSearchString]*)\[\/url\]/ism", '[bookmark=$1]$1[/bookmark]', $text);
1500 $text = preg_replace("/#\^\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[bookmark=$1]$2[/bookmark]', $text);
1501 $text = preg_replace("/#\[url\=[$URLSearchString]*\]\^\[\/url\]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
1502 "[bookmark=$1]$2[/bookmark]", $text);
1504 if (in_array($simple_html, [2, 6, 7, 8, 9])) {
1505 $text = preg_replace_callback("/([^#@!])\[url\=([^\]]*)\](.*?)\[\/url\]/ism", "self::expandLinksCallback", $text);
1506 //$Text = preg_replace("/[^#@!]\[url\=([^\]]*)\](.*?)\[\/url\]/ism", ' $2 [url]$1[/url]', $Text);
1507 $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", ' $2 [url]$1[/url]',$text);
1510 if ($simple_html == 5) {
1511 $text = preg_replace("/[^#@!]\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url]$1[/url]', $text);
1514 // Perform URL Search
1516 $text = preg_replace_callback("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $try_oembed_callback, $text);
1519 if ($simple_html == 5) {
1520 $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url]$1[/url]', $text);
1522 $text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $text);
1525 // Handle Diaspora posts
1526 $text = preg_replace_callback(
1527 "&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
1529 return "[url=" . System::baseUrl() . "/display/" . $match[1] . "]" . $match[2] . "[/url]";
1533 // Server independent link to posts and comments
1534 // See issue: https://github.com/diaspora/diaspora_federation/issues/75
1535 $expression = "=diaspora://.*?/post/([0-9A-Za-z\-_@.:]{15,254}[0-9A-Za-z])=ism";
1536 $text = preg_replace($expression, System::baseUrl()."/display/$1", $text);
1538 $text = preg_replace("/([#])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",
1539 '$1<a href="' . System::baseUrl() . '/search?tag=$3" class="tag" title="$3">$3</a>', $text);
1541 $text = preg_replace("/\[url\=([$URLSearchString]*)\]#(.*?)\[\/url\]/ism",
1542 '#<a href="' . System::baseUrl() . '/search?tag=$2" class="tag" title="$2">$2</a>', $text);
1544 $text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $text);
1545 $text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $text);
1546 //$Text = preg_replace("/\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $Text);
1548 // Red compatibility, though the link can't be authenticated on Friendica
1549 $text = preg_replace("/\[zrl\=([$URLSearchString]*)\](.*?)\[\/zrl\]/ism", '<a href="$1" target="_blank">$2</a>', $text);
1552 // we may need to restrict this further if it picks up too many strays
1553 // link acct:user@host to a webfinger profile redirector
1555 $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="' . System::baseUrl() . '/acctlink?addr=$1@$2" target="extlink">acct:$1@$2</a>', $text);
1557 // Perform MAIL Search
1558 $text = preg_replace("/\[mail\]([$MAILSearchString]*)\[\/mail\]/", '<a href="mailto:$1">$1</a>', $text);
1559 $text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $text);
1561 // leave open the posibility of [map=something]
1562 // this is replaced in prepare_body() which has knowledge of the item location
1564 if (strpos($text, '[/map]') !== false) {
1565 $text = preg_replace_callback(
1566 "/\[map\](.*?)\[\/map\]/ism",
1568 // the extra space in the following line is intentional
1569 // Whyyy? - @MrPetovan
1570 return str_replace($match[0], '<div class="map" >' . Map::byLocation($match[1]) . '</div>', $match[0]);
1575 if (strpos($text, '[map=') !== false) {
1576 $text = preg_replace_callback(
1577 "/\[map=(.*?)\]/ism",
1579 // the extra space in the following line is intentional
1580 // Whyyy? - @MrPetovan
1581 return str_replace($match[0], '<div class="map" >' . Map::byCoordinates(str_replace('/', ' ', $match[1])) . '</div>', $match[0]);
1586 if (strpos($text, '[map]') !== false) {
1587 $text = preg_replace("/\[map\]/", '<div class="map"></div>', $text);
1590 // Check for headers
1591 $text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '<h1>$1</h1>', $text);
1592 $text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '<h2>$1</h2>', $text);
1593 $text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '<h3>$1</h3>', $text);
1594 $text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '<h4>$1</h4>', $text);
1595 $text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '<h5>$1</h5>', $text);
1596 $text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '<h6>$1</h6>', $text);
1598 // Check for paragraph
1599 $text = preg_replace("(\[p\](.*?)\[\/p\])ism", '<p>$1</p>', $text);
1601 // Check for bold text
1602 $text = preg_replace("(\[b\](.*?)\[\/b\])ism", '<strong>$1</strong>', $text);
1604 // Check for Italics text
1605 $text = preg_replace("(\[i\](.*?)\[\/i\])ism", '<em>$1</em>', $text);
1607 // Check for Underline text
1608 $text = preg_replace("(\[u\](.*?)\[\/u\])ism", '<u>$1</u>', $text);
1610 // Check for strike-through text
1611 $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<strike>$1</strike>', $text);
1613 // Check for over-line text
1614 $text = preg_replace("(\[o\](.*?)\[\/o\])ism", '<span class="overline">$1</span>', $text);
1616 // Check for colored text
1617 $text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $text);
1619 // Check for sized text
1620 // [size=50] --> font-size: 50px (with the unit).
1621 $text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $text);
1622 $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $text);
1624 // Check for centered text
1625 $text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $text);
1627 // Check for list text
1628 $text = str_replace("[*]", "<li>", $text);
1630 // Check for style sheet commands
1631 $text = preg_replace_callback(
1632 "(\[style=(.*?)\](.*?)\[\/style\])ism",
1634 return "<span style=\"" . self::cleanCss($match[1]) . ";\">" . $match[2] . "</span>";
1639 // Check for CSS classes
1640 $text = preg_replace_callback(
1641 "(\[class=(.*?)\](.*?)\[\/class\])ism",
1643 return "<span class=\"" . self::cleanCss($match[1]) . "\">" . $match[2] . "</span>";
1648 // handle nested lists
1651 while ((((strpos($text, "[/list]") !== false) && (strpos($text, "[list") !== false)) ||
1652 ((strpos($text, "[/ol]") !== false) && (strpos($text, "[ol]") !== false)) ||
1653 ((strpos($text, "[/ul]") !== false) && (strpos($text, "[ul]") !== false)) ||
1654 ((strpos($text, "[/li]") !== false) && (strpos($text, "[li]") !== false))) && (++$endlessloop < 20)) {
1655 $text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1656 $text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '<ul class="listnone" style="list-style-type: none;">$1</ul>', $text);
1657 $text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1658 $text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '<ul class="listlowerroman" style="list-style-type: lower-roman;">$2</ul>', $text);
1659 $text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '<ul class="listupperroman" style="list-style-type: upper-roman;">$2</ul>', $text);
1660 $text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '<ul class="listloweralpha" style="list-style-type: lower-alpha;">$2</ul>', $text);
1661 $text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '<ul class="listupperalpha" style="list-style-type: upper-alpha;">$2</ul>', $text);
1662 $text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '<ul class="listbullet" style="list-style-type: circle;">$1</ul>', $text);
1663 $text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '<ul class="listdecimal" style="list-style-type: decimal;">$1</ul>', $text);
1664 $text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '<li>$1</li>', $text);
1667 $text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '<th>$1</th>', $text);
1668 $text = preg_replace("/\[td\](.*?)\[\/td\]/sm", '<td>$1</td>', $text);
1669 $text = preg_replace("/\[tr\](.*?)\[\/tr\]/sm", '<tr>$1</tr>', $text);
1670 $text = preg_replace("/\[table\](.*?)\[\/table\]/sm", '<table>$1</table>', $text);
1672 $text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '<table border="1" >$1</table>', $text);
1673 $text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '<table border="0" >$1</table>', $text);
1675 $text = str_replace('[hr]', '<hr />', $text);
1677 // This is actually executed in prepare_body()
1679 $text = str_replace('[nosmile]', '', $text);
1681 // Check for font change text
1682 $text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "<span style=\"font-family: $1;\">$2</span>", $text);
1684 // Declare the format for [code] layout
1686 $CodeLayout = '<code>$1</code>';
1687 // Check for [code] text
1688 $text = preg_replace("/\[code\](.*?)\[\/code\]/ism", "$CodeLayout", $text);
1690 // Declare the format for [spoiler] layout
1691 $SpoilerLayout = '<blockquote class="spoiler">$1</blockquote>';
1693 // Check for [spoiler] text
1694 // handle nested quotes
1696 while ((strpos($text, "[/spoiler]") !== false) && (strpos($text, "[spoiler]") !== false) && (++$endlessloop < 20)) {
1697 $text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", "$SpoilerLayout", $text);
1700 // Check for [spoiler=Author] text
1702 $t_wrote = L10n::t('$1 wrote:');
1704 // handle nested quotes
1706 while ((strpos($text, "[/spoiler]")!== false) && (strpos($text, "[spoiler=") !== false) && (++$endlessloop < 20)) {
1707 $text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism",
1708 "<br /><strong class=".'"spoiler"'.">" . $t_wrote . "</strong><blockquote class=".'"spoiler"'.">$2</blockquote>",
1712 // Declare the format for [quote] layout
1713 $QuoteLayout = '<blockquote>$1</blockquote>';
1715 // Check for [quote] text
1716 // handle nested quotes
1718 while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote]") !== false) && (++$endlessloop < 20)) {
1719 $text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $text);
1722 // Check for [quote=Author] text
1724 $t_wrote = L10n::t('$1 wrote:');
1726 // handle nested quotes
1728 while ((strpos($text, "[/quote]")!== false) && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) {
1729 $text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism",
1730 "<br /><strong class=".'"author"'.">" . $t_wrote . "</strong><blockquote>$2</blockquote>",
1735 // [img=widthxheight]image source[/img]
1736 $text = preg_replace_callback(
1737 "/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism",
1738 function ($matches) {
1739 if (strpos($matches[3], "data:image/") === 0) {
1743 $matches[3] = proxy_url($matches[3]);
1744 return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]";
1749 $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '<img src="$3" style="width: $1px;" >', $text);
1750 $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '<img class="zrl" src="$3" style="width: $1px;" >', $text);
1753 // [img]pathtoimage[/img]
1754 $text = preg_replace_callback(
1755 "/\[img\](.*?)\[\/img\]/ism",
1756 function ($matches) {
1757 if (strpos($matches[1], "data:image/") === 0) {
1761 $matches[1] = proxy_url($matches[1]);
1762 return "[img]" . $matches[1] . "[/img]";
1767 $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $text);
1768 $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '<img src="$1" alt="' . L10n::t('Image/photo') . '" />', $text);
1771 $text = preg_replace_callback("/(.*?)\[share(.*?)\](.*?)\[\/share\]/ism",
1772 function ($match) use ($simple_html) {
1773 return self::convertShare($match, $simple_html);
1776 $text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . L10n::t('Encrypted content') . '" /><br />', $text);
1777 $text = preg_replace("/\[crypt(.*?)\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . '$1' . ' ' . L10n::t('Encrypted content') . '" /><br />', $text);
1778 //$Text = preg_replace("/\[crypt=(.*?)\](.*?)\[\/crypt\]/ism", '<br/><img src="' .System::baseUrl() . '/images/lock_icon.gif" alt="' . L10n::t('Encrypted content') . '" title="' . '$1' . ' ' . L10n::t('Encrypted content') . '" /><br />', $Text);
1782 $text = preg_replace("/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4))\[\/video\]/ism", '<video src="$1" controls="controls" width="' . $a->videowidth . '" height="' . $a->videoheight . '" loop="true"><a href="$1">$1</a></video>', $text);
1783 $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);
1785 $text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $try_oembed_callback, $text);
1786 $text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $try_oembed_callback, $text);
1788 $text = preg_replace("/\[video\](.*?)\[\/video\]/",
1789 '<a href="$1" target="_blank">$1</a>', $text);
1790 $text = preg_replace("/\[audio\](.*?)\[\/audio\]/",
1791 '<a href="$1" target="_blank">$1</a>', $text);
1794 // html5 video and audio
1798 $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<iframe src="$1" width="' . $a->videowidth . '" height="' . $a->videoheight . '"><a href="$1">$1</a></iframe>', $text);
1800 $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '<a href="$1">$1</a>', $text);
1803 // Youtube extensions
1805 $text = preg_replace_callback("/\[youtube\](https?:\/\/www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1806 $text = preg_replace_callback("/\[youtube\](www.youtube.com\/watch\?v\=.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1807 $text = preg_replace_callback("/\[youtube\](https?:\/\/youtu.be\/.*?)\[\/youtube\]/ism", $try_oembed_callback, $text);
1810 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1811 $text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1812 $text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism", '[youtube]$1[/youtube]', $text);
1815 $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);
1817 $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
1818 '<a href="https://www.youtube.com/watch?v=$1" target="_blank">https://www.youtube.com/watch?v=$1</a>', $text);
1822 $text = preg_replace_callback("/\[vimeo\](https?:\/\/player.vimeo.com\/video\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1823 $text = preg_replace_callback("/\[vimeo\](https?:\/\/vimeo.com\/[0-9]+).*?\[\/vimeo\]/ism", $try_oembed_callback, $text);
1826 $text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1827 $text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism", '[vimeo]$1[/vimeo]', $text);
1830 $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);
1832 $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
1833 '<a href="https://vimeo.com/$1" target="_blank">https://vimeo.com/$1</a>', $text);
1837 $text = OEmbed::BBCode2HTML($text);
1839 // Avoid triple linefeeds through oembed
1840 $text = str_replace("<br style='clear:left'></span><br /><br />", "<br style='clear:left'></span><br />", $text);
1842 // If we found an event earlier, strip out all the event code and replace with a reformatted version.
1843 // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
1844 // Summary (e.g. title) is required, earlier revisions only required description (in addition to
1845 // start which is always required). Allow desc with a missing summary for compatibility.
1847 if ((x($ev, 'desc') || x($ev, 'summary')) && x($ev, 'start')) {
1848 $sub = format_event_html($ev, $simple_html);
1850 $text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $text);
1851 $text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $text);
1852 $text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $text);
1853 $text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $text);
1854 $text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $text);
1855 $text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/ism", '', $text);
1856 $text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $text);
1859 // Replace non graphical smilies for external posts
1861 $text = Smilies::replace($text, false, true);
1864 // Replace inline code blocks
1865 $text = preg_replace_callback("|(?!<br[^>]*>)<code>([^<]*)</code>(?!<br[^>]*>)|ism",
1866 function ($match) use ($simple_html) {
1867 $return = '<key>' . $match[1] . '</key>';
1868 // Use <code> for Diaspora inline code blocks
1869 if ($simple_html === 3) {
1870 $return = '<code>' . $match[1] . '</code>';
1876 // Unhide all [noparse] contained bbtags unspacefying them
1877 // and triming the [noparse] tag.
1879 $text = preg_replace_callback("/\[noparse\](.*?)\[\/noparse\]/ism", 'self::unescapeNoparseCallback', $text);
1880 $text = preg_replace_callback("/\[nobb\](.*?)\[\/nobb\]/ism", 'self::unescapeNoparseCallback', $text);
1881 $text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'self::unescapeNoparseCallback', $text);
1884 $text = preg_replace('/\[\&\;([#a-z0-9]+)\;\]/', '&$1;', $text);
1885 $text = preg_replace('/\&\#039\;/', '\'', $text);
1886 $text = preg_replace('/\"\;/', '"', $text);
1888 // fix any escaped ampersands that may have been converted into links
1889 $text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&\;(.*?)\>/ism', '<$1$2=$3&$4>', $text);
1891 // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
1892 $allowed_src_protocols = ['http', 'redir', 'cid'];
1893 $text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
1894 '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . L10n::t('Invalid source protocol') . '">', $text);
1896 // sanitize href attributes (only whitelisted protocols URLs)
1897 // default value for backward compatibility
1898 $allowed_link_protocols = Config::get('system', 'allowed_link_protocols', ['ftp', 'mailto', 'gopher', 'cid']);
1900 // Always allowed protocol even if config isn't set or not including it
1901 $allowed_link_protocols[] = 'http';
1902 $allowed_link_protocols[] = 'redir/';
1904 $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
1905 $text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . L10n::t('Invalid link protocol') . '">', $text);
1908 $text = self::interpolateSavedImagesIntoItemBody($text, $saved_image);
1911 // Clean up the HTML by loading and saving the HTML with the DOM.
1912 // Bad structured html can break a whole page.
1913 // For performance reasons do it only with ativated item cache or at export.
1914 if (!$try_oembed || (get_itemcachepath() != "")) {
1915 $doc = new DOMDocument();
1916 $doc->preserveWhiteSpace = false;
1918 $text = mb_convert_encoding($text, 'HTML-ENTITIES', "UTF-8");
1920 $doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">';
1921 $encoding = '<?xml encoding="UTF-8">';
1922 @$doc->loadHTML($encoding.$doctype."<html><body>".$text."</body></html>");
1923 $doc->encoding = 'UTF-8';
1924 $text = $doc->saveHTML();
1925 $text = str_replace(["<html><body>", "</body></html>", $doctype, $encoding], ["", "", "", ""], $text);
1927 $text = str_replace('<br></li>', '</li>', $text);
1929 //$Text = mb_convert_encoding($Text, "UTF-8", 'HTML-ENTITIES');
1932 // Clean up some useless linebreaks in lists
1933 //$Text = str_replace('<br /><ul', '<ul ', $Text);
1934 //$Text = str_replace('</ul><br />', '</ul>', $Text);
1935 //$Text = str_replace('</li><br />', '</li>', $Text);
1936 //$Text = str_replace('<br /><li>', '<li>', $Text);
1937 //$Text = str_replace('<br /><ul', '<ul ', $Text);
1939 Addon::callHooks('bbcode', $text);
1945 * @brief Strips the "abstract" tag from the provided text
1947 * @param string $text The text with BBCode
1948 * @return string The same text - but without "abstract" element
1950 public static function stripAbstract($text)
1952 $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", '', $text);
1953 $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", '', $text);
1959 * @brief Returns the value of the "abstract" element
1961 * @param string $text The text that maybe contains the element
1962 * @param string $addon The addon for which the abstract is meant for
1963 * @return string The abstract
1965 private static function getAbstract($text, $addon = "")
1969 $addon = strtolower($addon);
1971 if (preg_match_all("/\[abstract=(.*?)\](.*?)\[\/abstract\]/ism", $text, $results, PREG_SET_ORDER)) {
1972 foreach ($results AS $result) {
1973 $abstracts[strtolower($result[1])] = $result[2];
1977 if (isset($abstracts[$addon])) {
1978 $abstract = $abstracts[$addon];
1981 if ($abstract == "" && preg_match("/\[abstract\](.*?)\[\/abstract\]/ism", $text, $result)) {
1982 $abstract = $result[1];