]> git.mxchange.org Git - friendica.git/blob - include/bb2diaspora.php
c93b60d0d172aeb00c74bf39ef2ee15b57175c1b
[friendica.git] / include / bb2diaspora.php
1 <?php
2
3 require_once("include/oembed.php");
4 require_once("include/event.php");
5 require_once("library/markdown.php");
6 require_once("include/html2bbcode.php");
7 require_once("include/bbcode.php");
8 require_once("include/markdownify/markdownify.php");
9
10 // we don't want to support a bbcode specific markdown interpreter
11 // and the markdown library we have is pretty good, but provides HTML output.
12 // So we'll use that to convert to HTML, then convert the HTML back to bbcode,
13 // and then clean up a few Diaspora specific constructs.
14
15 function diaspora2bb($s) {
16
17         // for testing purposes: Collect raw markdown articles
18         // $file = tempnam("/tmp/friendica/", "markdown");
19         // file_put_contents($file, $s);
20
21         $s = html_entity_decode($s,ENT_COMPAT,'UTF-8');
22
23         // Too many new lines. So deactivated the following line
24         // $s = str_replace("\r","\n",$s);
25         // Simply remove cr.
26         $s = str_replace("\r","",$s);
27
28         // <br/> is invalid. Replace it with the valid expression
29         $s = str_replace("<br/>","<br />",$s);
30
31         $s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s);
32
33         // Escaping the hash tags - doesn't always seem to work
34         // $s = preg_replace('/\#([^\s\#])/','\\#$1',$s);
35         // This seems to work
36         $s = preg_replace('/\#([^\s\#])/','&#35;$1',$s);
37
38         $s = Markdown($s);
39
40         $s = str_replace('&#35;','#',$s);
41 // we seem to have double linebreaks
42 //      $s = str_replace("\n",'<br />',$s);
43
44         $s = html2bbcode($s);
45 //      $s = str_replace('&#42;','*',$s);
46
47         // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
48         $s = str_replace('&#x2672;',html_entities_decode('&#x2672;',ENT_QUOTES,'UTF-8'),$s);
49
50         // Convert everything that looks like a link to a link
51         $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);
52
53         //$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
54         $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s);
55         $s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s);
56         $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s);
57         $s = preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]',$s);
58         // remove duplicate adjacent code tags
59         $s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
60
61         // Don't show link to full picture (until it is fixed)
62         $s = scale_external_images($s, false);
63
64         return $s;
65 }
66
67
68 function stripdcode_br_cb($s) {
69         return '[code]' . str_replace('<br />', "\n\t", $s[1]) . '[/code]';
70 }
71
72
73 function diaspora_ul($s) {
74         // Replace "[*]" followed by any number (including zero) of
75         // spaces by "* " to match Diaspora's list format
76         if( strpos($s[0], "[list]") === 0 )
77                 return '<ul class="listbullet" style="list-style-type: circle;">' . preg_replace("/\[\*\]( *)/", "* ", $s[1]) . '</ul>';
78         elseif( strpos($s[0], "[ul]") === 0 )
79                 return '<ul class="listbullet" style="list-style-type: circle;">' . preg_replace("/\[\*\]( *)/", "* ", $s[1]) . '</ul>';
80         else
81                 return $s[0];
82 }
83
84
85 function diaspora_ol($s) {
86         // A hack: Diaspora will create a properly-numbered ordered list even
87         // if you use '1.' for each element of the list, like:
88         //              1. First element
89         //              1. Second element
90         //              1. Third element
91         if( strpos($s[0], "[list=1]") === 0 )
92                 return '<ul class="listdecimal" style="list-style-type: decimal;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
93         elseif( strpos($s[0], "[list=i]") === 0 )
94                 return '<ul class="listlowerroman" style="list-style-type: lower-roman;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
95         elseif( strpos($s[0], "[list=I]") === 0 )
96                 return '<ul class="listupperroman" style="list-style-type: upper-roman;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
97         elseif( strpos($s[0], "[list=a]") === 0 )
98                 return '<ul class="listloweralpha" style="list-style-type: lower-alpha;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
99         elseif( strpos($s[0], "[list=A]") === 0 )
100                 return '<ul class="listupperalpha" style="list-style-type: upper-alpha;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
101         elseif( strpos($s[0], "[ol]") === 0 )
102                 return '<ul class="listdecimal" style="list-style-type: decimal;">' . preg_replace("/\[\*\]( *)/", "1. ", $s[1]) . '</ul>';
103         else
104                 return $s[0];
105 }
106
107
108 function bb2diaspora($Text,$preserve_nl = false) {
109
110         // bbcode() will convert "[*]" into "<li>" with no closing "</li>"
111         // Markdownify() is unable to handle these, as it makes each new
112         // "<li>" into a deeper nested element until it crashes. So pre-format
113         // the lists as Diaspora lists before sending the $Text to bbcode()
114         //
115         // Note that to get nested lists to work for Diaspora, we would need
116         // to define the closing tag for the list elements. So nested lists
117         // are going to be flattened out in Diaspora for now
118         $endlessloop = 0;
119         while ((((strpos($Text, "[/list]") !== false) && (strpos($Text, "[list") !== false)) ||
120                ((strpos($Text, "[/ol]") !== false) && (strpos($Text, "[ol]") !== false)) || 
121                ((strpos($Text, "[/ul]") !== false) && (strpos($Text, "[ul]") !== false))) && (++$endlessloop < 20)) {
122                 $Text = preg_replace_callback("/\[list\](.*?)\[\/list\]/is", 'diaspora_ul', $Text);
123                 $Text = preg_replace_callback("/\[list=1\](.*?)\[\/list\]/is", 'diaspora_ol', $Text);
124                 $Text = preg_replace_callback("/\[list=i\](.*?)\[\/list\]/s",'diaspora_ol', $Text);
125                 $Text = preg_replace_callback("/\[list=I\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
126                 $Text = preg_replace_callback("/\[list=a\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
127                 $Text = preg_replace_callback("/\[list=A\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
128                 $Text = preg_replace_callback("/\[ul\](.*?)\[\/ul\]/is", 'diaspora_ul', $Text);
129                 $Text = preg_replace_callback("/\[ol\](.*?)\[\/ol\]/is", 'diaspora_ol', $Text);
130         }
131
132
133
134 //////////////////////
135 // An attempt was made to convert bbcode to html and then to markdown
136 // consisting of the following lines.
137 // I'm undoing this as we have a lot of bbcode constructs which
138 // were simply getting lost, for instance bookmark, vimeo, video, youtube, events, etc.
139 // We can try this again, but need a very good test sequence to verify
140 // all the major bbcode constructs that we use are getting through.
141 //////////////////////
142
143         // Convert it to HTML - don't try oembed
144 //      $Text = bbcode($Text, $preserve_nl, false);
145
146         // Now convert HTML to Markdown
147 //      $md = new Markdownify(false, false, false);
148 //      $Text = $md->parseString($Text);
149
150         // If the text going into bbcode() has a plain URL in it, i.e.
151         // with no [url] tags around it, it will come out of parseString()
152         // looking like: <http://url.com>, which gets removed by strip_tags().
153         // So take off the angle brackets of any such URL
154 //      $Text = preg_replace("/<http(.*?)>/is", "http$1", $Text);
155
156         // Remove all unconverted tags
157 //      $Text = strip_tags($Text);
158
159 ////// 
160 // end of bb->html->md conversion attempt
161 //////
162
163
164
165         $ev = bbtoevent($Text);
166
167         // Replace any html brackets with HTML Entities to prevent executing HTML or script
168         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
169
170         $Text = str_replace("<", "&lt;", $Text);
171         $Text = str_replace(">", "&gt;", $Text);
172
173         // If we find any event code, turn it into an event.
174         // After we're finished processing the bbcode we'll
175         // replace all of the event code with a reformatted version.
176
177         if($preserve_nl)
178                 $Text = str_replace(array("\n","\r"), array('',''),$Text);
179         else
180                 // Remove the "return" character, as Diaspora uses only the "newline"
181                 // character, so having the "return" character can cause signature
182                 // failures
183                 $Text = str_replace("\r", "", $Text);
184
185
186         // Set up the parameters for a URL search string
187         $URLSearchString = "^\[\]";
188         // Set up the parameters for a MAIL search string
189         $MAILSearchString = $URLSearchString;
190
191         // Perform URL Search
192
193         // [img]pathtoimage[/img]
194
195         // the following was added on 10-January-2012 due to an inability of Diaspora's
196         // new javascript markdown processor to handle links with images as the link "text"
197         // It is not optimal and may be removed if this ability is restored in the future
198
199         $Text = preg_replace("/\[url\=([$URLSearchString]*)\]\[img\](.*?)\[\/img\]\[\/url\]/ism",
200                 '![' . t('image/photo') . '](' . '$2' . ')' . "\n" . '[' . t('link') . '](' . '$1' . ')', $Text);
201
202         $Text = preg_replace("/\[bookmark\]([$URLSearchString]*)\[\/bookmark\]/ism", '[$1]($1)', $Text);
203         $Text = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", '[$2]($1)', $Text);
204
205         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '[$1]($1)', $Text);
206         $Text = preg_replace("/\#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[#$2]($1)', $Text);
207         $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[$2]($1)', $Text);
208
209
210         $Text = preg_replace("/\[img\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$1' . ')', $Text);
211         $Text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$2' . ')', $Text);
212
213         // Perform MAIL Search
214         $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '[$1](mailto:$1)', $Text);
215         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '[$2](mailto:$1)', $Text);
216
217         $Text = str_replace('*', '\\*', $Text);
218         $Text = str_replace('_', '\\_', $Text);
219
220         $Text = str_replace('`','\\`', $Text);
221
222         // Check for bold text
223         $Text = preg_replace("(\[b\](.*?)\[\/b\])is",'**$1**',$Text);
224
225         // Check for italics text
226         $Text = preg_replace("(\[i\](.*?)\[\/i\])is",'_$1_',$Text);
227
228         // Check for underline text
229         // Replace with italics since Diaspora doesn't have underline
230         $Text = preg_replace("(\[u\](.*?)\[\/u\])is",'_$1_',$Text);
231
232         // Check for strike-through text
233         $Text = preg_replace("(\[s\](.*?)\[\/s\])is",'**[strike]**$1**[/strike]**',$Text);
234
235         // Check for over-line text
236 //      $Text = preg_replace("(\[o\](.*?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
237
238         // Check for colored text
239         // Remove color since Diaspora doesn't support it
240         $Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])is","$2",$Text);
241
242         // Check for sized text
243         // Remove it since Diaspora doesn't support sizes very well
244         $Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])is","$2",$Text);
245
246         // Check for list text
247         $Text = preg_replace_callback("/\[list\](.*?)\[\/list\]/is", 'diaspora_ul', $Text);
248         $Text = preg_replace_callback("/\[ul\](.*?)\[\/ul\]/is", 'diaspora_ul', $Text);
249         $Text = preg_replace_callback("/\[list=1\](.*?)\[\/list\]/is", 'diaspora_ol', $Text);
250         $Text = preg_replace_callback("/\[list=i\](.*?)\[\/list\]/s",'diaspora_ol', $Text);
251         $Text = preg_replace_callback("/\[list=I\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
252         $Text = preg_replace_callback("/\[list=a\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
253         $Text = preg_replace_callback("/\[list=A\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
254         $Text = preg_replace_callback("/\[ol\](.*?)\[\/ol\]/is", 'diaspora_ol', $Text);
255 //      $Text = preg_replace("/\[li\](.*?)\[\/li\]/s", '<li>$1</li>' ,$Text);
256
257         // Just get rid of table tags since Diaspora doesn't support tables
258         $Text = preg_replace("/\[th\](.*?)\[\/th\]/s", '$1' ,$Text);
259         $Text = preg_replace("/\[td\](.*?)\[\/td\]/s", '$1' ,$Text);
260         $Text = preg_replace("/\[tr\](.*?)\[\/tr\]/s", '$1' ,$Text);
261         $Text = preg_replace("/\[table\](.*?)\[\/table\]/s", '$1' ,$Text);
262
263         $Text = preg_replace("/\[table border=(.*?)\](.*?)\[\/table\]/s", '$2' ,$Text);
264 //      $Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/s", '<table border="0" >$1</table>' ,$Text);
265
266
267 //      $Text = str_replace("[*]", "<li>", $Text);
268
269         // Check for font change text
270 //      $Text = preg_replace("(\[font=(.*?)\](.*?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
271
272
273         $Text = preg_replace_callback("/\[code\](.*?)\[\/code\]/is",'stripdcode_br_cb',$Text);
274
275         // Check for [code] text
276         $Text = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/is","\t$2\n", $Text);
277
278
279
280
281         // Declare the format for [quote] layout
282         //      $QuoteLayout = '<blockquote>$1</blockquote>';
283         // Check for [quote] text
284         $Text = preg_replace("/\[quote\](.*?)\[\/quote\]/is",">$1\n\n", $Text);
285         $Text = preg_replace("/\[quote=(.*?)\](.*?)\[\/quote\]/is",">$2\n\n", $Text);
286
287         // Images
288
289         // html5 video and audio
290
291         $Text = preg_replace("/\[video\](.*?)\[\/video\]/", '$1', $Text);
292
293         $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/", '$1', $Text);
294
295 //      $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/", '<iframe src="$1" width="425" height="350"><a href="$1">$1</a></iframe>', $Text);
296
297         // [img=widthxheight]image source[/img]
298 //      $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text);
299
300         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
301         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
302         $Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
303         $Text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", 'http://www.youtube.com/watch?v=$1', $Text);
304
305         $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
306         $Text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
307         $Text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", 'http://vimeo.com/$1',$Text);
308
309
310         $Text = str_replace('[nosmile]','',$Text);
311
312         // oembed tag
313         //      $Text = oembed_bbcode2html($Text);
314
315         // If we found an event earlier, strip out all the event code and replace with a reformatted version.
316
317         if(x($ev,'desc') && x($ev,'start')) {
318
319                 $sub = format_event_diaspora($ev);
320
321                 $Text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/is",'',$Text);
322                 $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/is",'',$Text);
323                 $Text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/is",$sub,$Text);
324                 $Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/is",'',$Text);
325                 $Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/is",'',$Text);
326                 $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",'',$Text);
327         }
328
329         $Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
330
331         $Text = preg_replace_callback('/\[(.*?)\]\((.*?)\)/ism','unescape_underscores_in_links',$Text);
332
333
334         // Remove any leading or trailing whitespace, as this will mess up
335         // the Diaspora signature verification and cause the item to disappear
336         $Text = trim($Text);
337
338         call_hooks('bb2diaspora',$Text);
339
340         return $Text;
341 }
342
343 function unescape_underscores_in_links($m) {
344         $y = str_replace('\\_','_', $m[2]);
345         return('[' . $m[1] . '](' . $y . ')');
346 }
347
348 function format_event_diaspora($ev) {
349
350         $a = get_app();
351
352         if(! ((is_array($ev)) && count($ev)))
353                 return '';
354
355         $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
356
357         $o = 'Friendica event notification:' . "\n";
358
359         $o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) .  '**' . "\n";
360
361         $o .= t('Starts:') . ' ' . '['
362                 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
363                         $ev['start'] , $bd_format ))
364                         :  day_translate(datetime_convert('UTC', 'UTC', 
365                         $ev['start'] , $bd_format)))
366                 .  '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n";
367
368         if(! $ev['nofinish'])
369                 $o .= t('Finishes:') . ' ' . '[' 
370                         . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
371                                 $ev['finish'] , $bd_format ))
372                                 :  day_translate(datetime_convert('UTC', 'UTC', 
373                                 $ev['finish'] , $bd_format )))
374                         . '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n";
375
376         if(strlen($ev['location']))
377                 $o .= t('Location:') . bb2diaspora($ev['location']) 
378                         . "\n";
379
380         $o .= "\n";
381         return $o;
382 }