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