]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Text/Markdown.php
Merge pull request #6594 from annando/delete-item
[friendica.git] / src / Content / Text / Markdown.php
index e7383a3fd79341c9e3290b34b3ee04f5e98e40e1..ceb5b043b3065ba045c27891fc0138df916afd31 100644 (file)
@@ -10,12 +10,10 @@ use Friendica\BaseObject;
 use Friendica\Model\Contact;
 use Michelf\MarkdownExtra;
 
-require_once  'include/html2bbcode.php';
-
 /**
  * Friendica-specific usage of Markdown
  *
- * @author Hypolite Petovan <mrpetovan@gmail.com>
+ * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class Markdown extends BaseObject
 {
@@ -27,15 +25,18 @@ class Markdown extends BaseObject
         * @param string $text
         * @param bool   $hardwrap
         * @return string
+        * @throws \Exception
         */
        public static function convert($text, $hardwrap = true) {
                $stamp1 = microtime(true);
 
                $MarkdownParser = new MarkdownExtra();
                $MarkdownParser->hard_wrap = $hardwrap;
+               $MarkdownParser->code_class_prefix = 'language-';
                $html = $MarkdownParser->transform($text);
+               $html = preg_replace('/<a(.*?)href="#/is', '<a$1href="' . ltrim($_SERVER['REQUEST_URI'], '/') . '#', $html);
 
-               self::getApp()->save_timestamp($stamp1, "parser");
+               self::getApp()->saveTimestamp($stamp1, "parser");
 
                return $html;
        }
@@ -44,23 +45,32 @@ class Markdown extends BaseObject
         * @brief Callback function to replace a Diaspora style mention in a mention for Friendica
         *
         * @param array $match Matching values for the callback
+        *                     [1] = mention type (@ or !)
+        *                     [2] = name (optional)
+        *                     [3] = address
         * @return string Replaced mention
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
         */
        private static function diasporaMention2BBCodeCallback($match)
        {
-               if ($match[2] == '') {
+               if ($match[3] == '') {
                        return;
                }
 
-               $data = Contact::getDetailsByAddr($match[2]);
+               $data = Contact::getDetailsByAddr($match[3]);
+
+               if (empty($data)) {
+                       return;
+               }
 
-               $name = $match[1];
+               $name = $match[2];
 
                if ($name == '') {
                        $name = $data['name'];
                }
 
-               return '@[url=' . $data['url'] . ']' . $name . '[/url]';
+               return $match[1] . '[url=' . $data['url'] . ']' . $name . '[/url]';
        }
 
        /*
@@ -73,28 +83,18 @@ class Markdown extends BaseObject
        {
                $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
 
-               // Handles single newlines
-               $s = str_replace("\r\n", "\n", $s);
-               $s = str_replace("\n", " \n", $s);
-               $s = str_replace("\r", " \n", $s);
-
-               // Replace lonely stars in lines not starting with it with literal stars
-               $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
-
                // The parser cannot handle paragraphs correctly
                $s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
 
-               // Escaping the hash tags
-               $s = preg_replace('/\#([^\s\#])/', '&#35;$1', $s);
+               // Escaping hashtags that could be titles
+               $s = preg_replace('/^\#([^\s\#])/im', '\#$1', $s);
 
                $s = self::convert($s);
 
-               $regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/";
+               $regexp = "/([@!])\{(?:([^\}]+?); ?)?([^\} ]+)\}/";
                $s = preg_replace_callback($regexp, ['self', 'diasporaMention2BBCodeCallback'], $s);
 
-               $s = str_replace('&#35;', '#', $s);
-
-               $s = html2bbcode($s);
+               $s = HTML::toBBCode($s);
 
                // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
                $s = str_replace('&#x2672;', html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8'), $s);