Replace html2bbcode calls by HTML::toBBCode
[friendica.git/.git] / src / Content / Text / Markdown.php
1 <?php
2
3 /**
4  * @file src/Content/Text/Markdown.php
5  */
6
7 namespace Friendica\Content\Text;
8
9 use Friendica\BaseObject;
10 use Friendica\Model\Contact;
11 use Michelf\MarkdownExtra;
12
13 require_once  'include/html2bbcode.php';
14
15 /**
16  * Friendica-specific usage of Markdown
17  *
18  * @author Hypolite Petovan <mrpetovan@gmail.com>
19  */
20 class Markdown extends BaseObject
21 {
22         /**
23          * Converts a Markdown string into HTML. The hardwrap parameter maximizes
24          * compatibility with Diaspora in spite of the Markdown standard.
25          *
26          * @brief Converts a Markdown string into HTML
27          * @param string $text
28          * @param bool   $hardwrap
29          * @return string
30          */
31         public static function convert($text, $hardwrap = true) {
32                 $stamp1 = microtime(true);
33
34                 $MarkdownParser = new MarkdownExtra();
35                 $MarkdownParser->hard_wrap = $hardwrap;
36                 $html = $MarkdownParser->transform($text);
37
38                 self::getApp()->save_timestamp($stamp1, "parser");
39
40                 return $html;
41         }
42
43         /**
44          * @brief Callback function to replace a Diaspora style mention in a mention for Friendica
45          *
46          * @param array $match Matching values for the callback
47          * @return string Replaced mention
48          */
49         private static function diasporaMention2BBCodeCallback($match)
50         {
51                 if ($match[2] == '') {
52                         return;
53                 }
54
55                 $data = Contact::getDetailsByAddr($match[2]);
56
57                 $name = $match[1];
58
59                 if ($name == '') {
60                         $name = $data['name'];
61                 }
62
63                 return '@[url=' . $data['url'] . ']' . $name . '[/url]';
64         }
65
66         /*
67          * we don't want to support a bbcode specific markdown interpreter
68          * and the markdown library we have is pretty good, but provides HTML output.
69          * So we'll use that to convert to HTML, then convert the HTML back to bbcode,
70          * and then clean up a few Diaspora specific constructs.
71          */
72         public static function toBBCode($s)
73         {
74                 $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
75
76                 // Handles single newlines
77                 $s = str_replace("\r\n", "\n", $s);
78                 $s = str_replace("\n", " \n", $s);
79                 $s = str_replace("\r", " \n", $s);
80
81                 // Replace lonely stars in lines not starting with it with literal stars
82                 $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
83
84                 // The parser cannot handle paragraphs correctly
85                 $s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
86
87                 // Escaping the hash tags
88                 $s = preg_replace('/\#([^\s\#])/', '&#35;$1', $s);
89
90                 $s = self::convert($s);
91
92                 $regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/";
93                 $s = preg_replace_callback($regexp, ['self', 'diasporaMention2BBCodeCallback'], $s);
94
95                 $s = str_replace('&#35;', '#', $s);
96
97                 $s = Friendica\Content\Text\HTML::toBBCode($s);
98
99                 // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
100                 $s = str_replace('&#x2672;', html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8'), $s);
101
102                 // Convert everything that looks like a link to a link
103                 $s = preg_replace('/([^\]=]|^)(https?\:\/\/)([a-zA-Z0-9:\/\-?&;.=_~#%$!+,@]+(?<!,))/ism', '$1[url=$2$3]$2$3[/url]', $s);
104
105                 //$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
106                 $s = BBCode::pregReplaceInTag('/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism', '[youtube]$2[/youtube]', 'url', $s);
107                 $s = BBCode::pregReplaceInTag('/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism'   , '[youtube]$1[/youtube]', 'url', $s);
108                 $s = BBCode::pregReplaceInTag('/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism'        , '[vimeo]$2[/vimeo]'    , 'url', $s);
109                 $s = BBCode::pregReplaceInTag('/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism'              , '[vimeo]$1[/vimeo]'    , 'url', $s);
110
111                 // remove duplicate adjacent code tags
112                 $s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
113
114                 // Don't show link to full picture (until it is fixed)
115                 $s = BBCode::scaleExternalImages($s, false);
116
117                 return $s;
118         }
119 }