]> git.mxchange.org Git - friendica.git/blob - include/bb2diaspora.php
Merge branch 'develop' into improvement/move-app-to-src-2
[friendica.git] / include / bb2diaspora.php
1 <?php
2
3 use Friendica\App;
4
5 use League\HTMLToMarkdown\HtmlConverter;
6
7 require_once "include/oembed.php";
8 require_once "include/event.php";
9 require_once "library/markdown.php";
10 require_once "include/html2bbcode.php";
11 require_once "include/bbcode.php";
12
13 /**
14  * @brief Callback function to replace a Diaspora style mention in a mention for Friendica
15  *
16  * @param array $match Matching values for the callback
17  * @return string Replaced mention
18  */
19 function diaspora_mention2bb($match) {
20         if ($match[2] == '') {
21                 return;
22         }
23
24         $data = get_contact_details_by_addr($match[2]);
25
26         $name = $match[1];
27
28         if ($name == '') {
29                 $name = $data['name'];
30         }
31
32         return '@[url=' . $data['url'] . ']' . $name . '[/url]';
33 }
34
35 /*
36  * we don't want to support a bbcode specific markdown interpreter
37  * and the markdown library we have is pretty good, but provides HTML output.
38  * So we'll use that to convert to HTML, then convert the HTML back to bbcode,
39  * and then clean up a few Diaspora specific constructs.
40  */
41 function diaspora2bb($s) {
42
43         $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
44
45         // Handles single newlines
46         $s = str_replace("\r\n", "\n", $s);
47         $s = str_replace("\n", " \n", $s);
48         $s = str_replace("\r", " \n", $s);
49
50         // Replace lonely stars in lines not starting with it with literal stars
51         $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
52
53         // The parser cannot handle paragraphs correctly
54         $s = str_replace(array('</p>', '<p>', '<p dir="ltr">'), array('<br>', '<br>', '<br>'), $s);
55
56         // Escaping the hash tags
57         $s = preg_replace('/\#([^\s\#])/', '&#35;$1', $s);
58
59         $s = Markdown($s);
60
61         $regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/";
62         $s = preg_replace_callback($regexp, 'diaspora_mention2bb', $s);
63
64         $s = str_replace('&#35;', '#', $s);
65
66         $s = html2bbcode($s);
67
68         // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
69         $s = str_replace('&#x2672;', html_entity_decode('&#x2672;', ENT_QUOTES, 'UTF-8'), $s);
70
71         // Convert everything that looks like a link to a link
72         $s = preg_replace('/([^\]=]|^)(https?\:\/\/)([a-zA-Z0-9:\/\-?&;.=_~#%$!+,@]+(?<!,))/ism', '$1[url=$2$3]$2$3[/url]', $s);
73
74         //$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
75         $s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism', '[youtube]$2[/youtube]', 'url', $s);
76         $s = bb_tag_preg_replace('/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism'   , '[youtube]$1[/youtube]', 'url', $s);
77         $s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism'        , '[vimeo]$2[/vimeo]'    , 'url', $s);
78         $s = bb_tag_preg_replace('/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism'              , '[vimeo]$1[/vimeo]'    , 'url', $s);
79
80         // remove duplicate adjacent code tags
81         $s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
82
83         // Don't show link to full picture (until it is fixed)
84         $s = scale_external_images($s, false);
85
86         return $s;
87 }
88
89 /**
90  * @brief Callback function to replace a Friendica style mention in a mention for Diaspora
91  *
92  * @param array $match Matching values for the callback
93  * @return string Replaced mention
94  */
95 function diaspora_mentions($match) {
96
97         $contact = get_contact_details_by_url($match[3]);
98
99         if (!x($contact, 'addr')) {
100                 $contact = Probe::uri($match[3]);
101         }
102
103         if (!x($contact, 'addr')) {
104                 return $match[0];
105         }
106
107         $mention = '@{' . $match[2] . '; ' . $contact['addr'] . '}';
108         return $mention;
109 }
110
111 /**
112  * @brief Converts a BBCode text into Markdown
113  *
114  * This function converts a BBCode item body to be sent to Markdown-enabled
115  * systems like Diaspora and Libertree
116  *
117  * @param string $Text
118  * @param bool $preserve_nl Effects unclear, unused in Friendica
119  * @param bool $fordiaspora Diaspora requires more changes than Libertree
120  * @return string
121  */
122 function bb2diaspora($Text, $preserve_nl = false, $fordiaspora = true) {
123         $a = get_app();
124
125         $OriginalText = $Text;
126
127         // Since Diaspora is creating a summary for links, this function removes them before posting
128         if ($fordiaspora) {
129                 $Text = bb_remove_share_information($Text);
130         }
131
132         /**
133          * Transform #tags, strip off the [url] and replace spaces with underscore
134          */
135         $URLSearchString = "^\[\]";
136         $Text = preg_replace_callback("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i",
137                 function ($matches) {
138                         return '#' . str_replace(' ', '_', $matches[2]);
139                 }
140         , $Text);
141
142         // Converting images with size parameters to simple images. Markdown doesn't know it.
143         $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $Text);
144
145         // Extracting multi-line code blocks before the whitespace processing/code highlighter in bbcode()
146         $codeblocks = [];
147         $Text = preg_replace_callback('#\[code(?:=([^\]]*))?\](?=\n)(.*?)\[\/code\]#is',
148                 function ($matches) use (&$codeblocks) {
149                         $return = '#codeblock-' . count($codeblocks) . '#';
150
151             $prefix = '````' . $matches[1] . PHP_EOL;
152                         $codeblocks[] = $prefix . trim($matches[2]) . PHP_EOL . '````';
153                         return $return;
154                 }
155         , $Text);
156
157         // Convert it to HTML - don't try oembed
158         if ($fordiaspora) {
159                 $Text = bbcode($Text, $preserve_nl, false, 3);
160
161                 // Add all tags that maybe were removed
162                 if (preg_match_all("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $OriginalText, $tags)) {
163                         $tagline = "";
164                         foreach ($tags[2] as $tag) {
165                                 $tag = html_entity_decode($tag, ENT_QUOTES, 'UTF-8');
166                                 if (!strpos(html_entity_decode($Text, ENT_QUOTES, 'UTF-8'), '#' . $tag)) {
167                                         $tagline .= '#' . $tag . ' ';
168                                 }
169                         }
170                         $Text = $Text." ".$tagline;
171                 }
172         } else {
173                 $Text = bbcode($Text, $preserve_nl, false, 4);
174         }
175
176         // mask some special HTML chars from conversation to markdown
177         $Text = str_replace(array('&lt;', '&gt;', '&amp;'), array('&_lt_;', '&_gt_;', '&_amp_;'), $Text);
178
179         // If a link is followed by a quote then there should be a newline before it
180         // Maybe we should make this newline at every time before a quote.
181         $Text = str_replace(array("</a><blockquote>"), array("</a><br><blockquote>"), $Text);
182
183         $stamp1 = microtime(true);
184
185         // Now convert HTML to Markdown
186         $converter = new HtmlConverter();
187         $Text = $converter->convert($Text);
188
189         // unmask the special chars back to HTML
190         $Text = str_replace(array('&_lt_;', '&_gt_;', '&_amp_;'), array('&lt;', '&gt;', '&amp;'), $Text);
191
192         $a->save_timestamp($stamp1, "parser");
193
194         // Libertree has a problem with escaped hashtags.
195         $Text = str_replace(array('\#'), array('#'), $Text);
196
197         // Remove any leading or trailing whitespace, as this will mess up
198         // the Diaspora signature verification and cause the item to disappear
199         $Text = trim($Text);
200
201         if ($fordiaspora) {
202                 $URLSearchString = "^\[\]";
203                 $Text = preg_replace_callback("/([@]\[(.*?)\])\(([$URLSearchString]*?)\)/ism", 'diaspora_mentions', $Text);
204         }
205
206         // Restore code blocks
207         $Text = preg_replace_callback('/#codeblock-([0-9]+)#/iU',
208                 function ($matches) use ($codeblocks) {
209             $return = '';
210             if (isset($codeblocks[intval($matches[1])])) {
211                 $return = $codeblocks[$matches[1]];
212             }
213                         return $return;
214                 }
215         , $Text);
216
217         call_hooks('bb2diaspora',$Text);
218
219         return $Text;
220 }
221
222 function unescape_underscores_in_links($m) {
223         $y = str_replace('\\_', '_', $m[2]);
224         return('[' . $m[1] . '](' . $y . ')');
225 }
226
227 function format_event_diaspora($ev) {
228         if (! ((is_array($ev)) && count($ev))) {
229                 return '';
230         }
231
232         $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
233
234         $o = 'Friendica event notification:' . "\n";
235
236         $o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) .  '**' . "\n";
237
238         $o .= t('Starts:') . ' ' . '['
239                 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC',
240                         $ev['start'] , $bd_format ))
241                         :  day_translate(datetime_convert('UTC', 'UTC',
242                         $ev['start'] , $bd_format)))
243                 .  '](' . App::get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n";
244
245         if (! $ev['nofinish']) {
246                 $o .= t('Finishes:') . ' ' . '['
247                         . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC',
248                                 $ev['finish'] , $bd_format ))
249                                 :  day_translate(datetime_convert('UTC', 'UTC',
250                                 $ev['finish'] , $bd_format )))
251                         . '](' . App::get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n";
252         }
253
254         if (strlen($ev['location'])) {
255                 $o .= t('Location:') . bb2diaspora($ev['location'])
256                         . "\n";
257         }
258
259         $o .= "\n";
260         return $o;
261 }