]> git.mxchange.org Git - friendica.git/blob - include/bb2diaspora.php
I want HTML code!
[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
42         $s = str_replace("\n",'<br />',$s);
43
44         $s = html2bbcode($s);
45 //      $s = str_replace('&#42;','*',$s);
46
47         // Convert everything that looks like a link to a link
48         $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);
49
50         //$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
51         $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s);
52         $s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s);
53         $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s);
54         $s = preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]',$s);
55         // remove duplicate adjacent code tags
56         $s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
57
58         // Don't show link to full picture (until it is fixed)
59         $s = scale_external_images($s, false);
60
61         return $s;
62 }
63
64
65 function stripdcode_br_cb($s) {
66         return '[code]' . str_replace('<br />', "\n\t", $s[1]) . '[/code]';
67 }
68
69
70 function diaspora_ul($s) {
71         // Replace "[\\*]" followed by any number (including zero) of
72         // spaces by "* " to match Diaspora's list format
73         return preg_replace("/\[\\\\\*\]( *)/", "* ", $s[1]);
74 }
75
76
77 function diaspora_ol($s) {
78         // A hack: Diaspora will create a properly-numbered ordered list even
79         // if you use '1.' for each element of the list, like:
80         //              1. First element
81         //              1. Second element
82         //              1. Third element
83         return preg_replace("/\[\\\\\*\]( *)/", "1. ", $s[1]);
84 }
85
86
87 function bb2diaspora($Text,$preserve_nl = false) {
88
89         // Convert it to HTML - don't try oembed
90         $Text = bbcode($Text, $preserve_nl, false);
91
92         // Now convert HTML to Markdown
93         $md = new Markdownify(false, false, false);
94         $Text = $md->parseString($Text);
95
96         // Remove all unconverted tags
97         $Text = strip_tags($Text);
98
99 /*
100         $ev = bbtoevent($Text);
101
102         // Replace any html brackets with HTML Entities to prevent executing HTML or script
103         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
104
105         $Text = str_replace("<", "&lt;", $Text);
106         $Text = str_replace(">", "&gt;", $Text);
107
108         // If we find any event code, turn it into an event.
109         // After we're finished processing the bbcode we'll
110         // replace all of the event code with a reformatted version.
111
112         if($preserve_nl)
113                 $Text = str_replace(array("\n","\r"), array('',''),$Text);
114         else
115                 // Remove the "return" character, as Diaspora uses only the "newline"
116                 // character, so having the "return" character can cause signature
117                 // failures
118                 $Text = str_replace("\r", "", $Text);
119
120
121         // Set up the parameters for a URL search string
122         $URLSearchString = "^\[\]";
123         // Set up the parameters for a MAIL search string
124         $MAILSearchString = $URLSearchString;
125
126         // Perform URL Search
127
128         // [img]pathtoimage[/img]
129
130         // the following was added on 10-January-2012 due to an inability of Diaspora's
131         // new javascript markdown processor to handle links with images as the link "text"
132         // It is not optimal and may be removed if this ability is restored in the future
133
134         $Text = preg_replace("/\[url\=([$URLSearchString]*)\]\[img\](.*?)\[\/img\]\[\/url\]/ism",
135                 '![' . t('image/photo') . '](' . '$2' . ')' . "\n" . '[' . t('link') . '](' . '$1' . ')', $Text);
136
137         $Text = preg_replace("/\[bookmark\]([$URLSearchString]*)\[\/bookmark\]/ism", '[$1]($1)', $Text);
138         $Text = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", '[$2]($1)', $Text);
139
140         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '[$1]($1)', $Text);
141         $Text = preg_replace("/\#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[#$2]($1)', $Text);
142         $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[$2]($1)', $Text);
143
144
145         $Text = preg_replace("/\[img\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$1' . ')', $Text);
146         $Text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$2' . ')', $Text);
147
148         // Perform MAIL Search
149         $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '[$1](mailto:$1)', $Text);
150         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '[$2](mailto:$1)', $Text);
151
152         $Text = str_replace('*', '\\*', $Text);
153         $Text = str_replace('_', '\\_', $Text);
154
155         $Text = str_replace('`','\\`', $Text);
156
157         // Check for bold text
158         $Text = preg_replace("(\[b\](.*?)\[\/b\])is",'**$1**',$Text);
159
160         // Check for italics text
161         $Text = preg_replace("(\[i\](.*?)\[\/i\])is",'_$1_',$Text);
162
163         // Check for underline text
164         // Replace with italics since Diaspora doesn't have underline
165         $Text = preg_replace("(\[u\](.*?)\[\/u\])is",'_$1_',$Text);
166
167         // Check for strike-through text
168         $Text = preg_replace("(\[s\](.*?)\[\/s\])is",'**[strike]**$1**[/strike]**',$Text);
169
170         // Check for over-line text
171 //      $Text = preg_replace("(\[o\](.*?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
172
173         // Check for colored text
174         // Remove color since Diaspora doesn't support it
175         $Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])is","$2",$Text);
176
177         // Check for sized text
178         // Remove it since Diaspora doesn't support sizes very well
179         $Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])is","$2",$Text);
180
181         // Check for list text
182         $Text = preg_replace_callback("/\[list\](.*?)\[\/list\]/is", 'diaspora_ul', $Text);
183         $Text = preg_replace_callback("/\[ul\](.*?)\[\/ul\]/is", 'diaspora_ul', $Text);
184         $Text = preg_replace_callback("/\[list=1\](.*?)\[\/list\]/is", 'diaspora_ol', $Text);
185         $Text = preg_replace_callback("/\[list=i\](.*?)\[\/list\]/s",'diaspora_ol', $Text);
186         $Text = preg_replace_callback("/\[list=I\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
187         $Text = preg_replace_callback("/\[list=a\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
188         $Text = preg_replace_callback("/\[list=A\](.*?)\[\/list\]/s", 'diaspora_ol', $Text);
189         $Text = preg_replace_callback("/\[ol\](.*?)\[\/ol\]/is", 'diaspora_ol', $Text);
190 //      $Text = preg_replace("/\[li\](.*?)\[\/li\]/s", '<li>$1</li>' ,$Text);
191
192         // Just get rid of table tags since Diaspora doesn't support tables
193         $Text = preg_replace("/\[th\](.*?)\[\/th\]/s", '$1' ,$Text);
194         $Text = preg_replace("/\[td\](.*?)\[\/td\]/s", '$1' ,$Text);
195         $Text = preg_replace("/\[tr\](.*?)\[\/tr\]/s", '$1' ,$Text);
196         $Text = preg_replace("/\[table\](.*?)\[\/table\]/s", '$1' ,$Text);
197
198         $Text = preg_replace("/\[table border=(.*?)\](.*?)\[\/table\]/s", '$2' ,$Text);
199 //      $Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/s", '<table border="0" >$1</table>' ,$Text);
200
201
202 //      $Text = str_replace("[*]", "<li>", $Text);
203
204         // Check for font change text
205 //      $Text = preg_replace("(\[font=(.*?)\](.*?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
206
207
208         $Text = preg_replace_callback("/\[code\](.*?)\[\/code\]/is",'stripdcode_br_cb',$Text);
209
210         // Check for [code] text
211         $Text = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/is","\t$2\n", $Text);
212
213
214
215
216         // Declare the format for [quote] layout
217         //      $QuoteLayout = '<blockquote>$1</blockquote>';
218         // Check for [quote] text
219         $Text = preg_replace("/\[quote\](.*?)\[\/quote\]/is",">$1\n\n", $Text);
220         $Text = preg_replace("/\[quote=(.*?)\](.*?)\[\/quote\]/is",">$2\n\n", $Text);
221
222         // Images
223
224         // html5 video and audio
225
226         $Text = preg_replace("/\[video\](.*?)\[\/video\]/", '$1', $Text);
227
228         $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/", '$1', $Text);
229
230 //      $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/", '<iframe src="$1" width="425" height="350"><a href="$1">$1</a></iframe>', $Text);
231
232         // [img=widthxheight]image source[/img]
233 //      $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text);
234
235         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
236         $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
237         $Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
238         $Text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", 'http://www.youtube.com/watch?v=$1', $Text);
239
240         $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
241         $Text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
242         $Text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", 'http://vimeo.com/$1',$Text);
243
244
245         $Text = str_replace('[nosmile]','',$Text);
246
247         // oembed tag
248         //      $Text = oembed_bbcode2html($Text);
249
250         // If we found an event earlier, strip out all the event code and replace with a reformatted version.
251
252         if(x($ev,'desc') && x($ev,'start')) {
253
254                 $sub = format_event_diaspora($ev);
255
256                 $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/is",$sub,$Text);
257                 $Text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/is",'',$Text);
258                 $Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/is",'',$Text);
259                 $Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/is",'',$Text);
260                 $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",'',$Text);
261         }
262
263         $Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
264
265         $Text = preg_replace_callback('/\[(.*?)\]\((.*?)\)/ism','unescape_underscores_in_links',$Text);
266 */
267
268         // Remove any leading or trailing whitespace, as this will mess up
269         // the Diaspora signature verification and cause the item to disappear
270         $Text = trim($Text);
271
272         call_hooks('bb2diaspora',$Text);
273
274         return $Text;
275 }
276
277 function unescape_underscores_in_links($m) {
278         $y = str_replace('\\_','_', $m[2]);
279         return('[' . $m[1] . '](' . $y . ')');
280 }
281
282 function format_event_diaspora($ev) {
283
284         $a = get_app();
285
286         if(! ((is_array($ev)) && count($ev)))
287                 return '';
288
289         $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
290
291         $o = 'Friendica event notification:' . "\n";
292
293         $o .= '**' . bb2diaspora($ev['desc']) .  '**' . "\n";
294
295         $o .= t('Starts:') . ' ' . '['
296                 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
297                         $ev['start'] , $bd_format ))
298                         :  day_translate(datetime_convert('UTC', 'UTC', 
299                         $ev['start'] , $bd_format)))
300                 .  '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n";
301
302         if(! $ev['nofinish'])
303                 $o .= t('Finishes:') . ' ' . '[' 
304                         . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
305                                 $ev['finish'] , $bd_format ))
306                                 :  day_translate(datetime_convert('UTC', 'UTC', 
307                                 $ev['finish'] , $bd_format )))
308                         . '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n";
309
310         if(strlen($ev['location']))
311                 $o .= t('Location:') . bb2diaspora($ev['location']) 
312                         . "\n";
313
314         $o .= "\n";
315         return $o;
316 }