]> git.mxchange.org Git - friendica.git/blob - include/bb2diaspora.php
community forums cleanup
[friendica.git] / include / bb2diaspora.php
1 <?php
2
3 require_once("include/oembed.php");
4 require_once('include/event.php');
5
6 require_once('library/markdown.php');
7 require_once('include/html2bbcode.php');
8
9 // we don't want to support a bbcode specific markdown interpreter
10 // and the markdown library we have is pretty good, but provides HTML output.
11 // So we'll use that to convert to HTML, then convert the HTML back to bbcode, 
12 // and then clean up a few Diaspora specific constructs.
13
14 function diaspora2bb($s) {
15
16         $s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s);
17         $s = Markdown($s);
18         $s = html2bbcode($s);
19         $s = str_replace('&#42;','*',$s);
20     $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s); 
21     $s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s); 
22         $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s); 
23         $s = preg_replace("/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism",'[vimeo]$1[/vimeo]',$s); 
24         $s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2$3$4[/url]',$s);
25         // remove duplicate adjacent code tags
26         $s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
27         $s = scale_diaspora_images($s);
28         return $s;
29 }
30
31
32 function scale_diaspora_images($s,$include_link = true) {
33
34         $matches = null;
35         $c = preg_match_all('/\[img\](.*?)\[\/img\]/ism',$s,$matches,PREG_SET_ORDER);
36         if($c) {
37                 require_once('include/Photo.php');
38                 foreach($matches as $mtch) {
39                         logger('scale_diaspora_image: ' . $mtch[1]);
40                         $i = fetch_url($mtch[1]);
41                         if($i) {
42                                 $ph = new Photo($i);
43                                 if($ph->is_valid()) {
44                                         if($ph->getWidth() > 600 || $ph->getHeight() > 600) {
45                                                 $ph->scaleImage(600);
46                                                 $new_width = $ph->getWidth();
47                                                 $new_height = $ph->getHeight();
48                                                 logger('scale_diaspora_image: ' . $new_width . 'w ' . $new_height . 'h' . 'match: ' . $mtch[0], LOGGER_DEBUG);
49                                                 $s = str_replace($mtch[0],'[img=' . $new_width . 'x' . $new_height. ']' . $mtch[1] . '[/img]'
50                                                         . "\n" . (($include_link) 
51                                                                 ? '[url=' . $mtch[1] . ']' . t('view full size') . '[/url]' . "\n"
52                                                                 : ''),$s);
53                                                 logger('scale_diaspora_image: new string: ' . $s, LOGGER_DEBUG);
54                                         }
55                                 }
56                         }
57                 }
58         }
59         return $s;
60 }
61
62 function stripdcode_br_cb($s) {
63         return '[code]' . str_replace('<br />', "\n\t", $s[1]) . '[/code]';
64 }
65
66
67
68 function bb2diaspora($Text,$preserve_nl = false) {
69
70         $ev = bbtoevent($Text);
71
72         // Replace any html brackets with HTML Entities to prevent executing HTML or script
73         // Don't use strip_tags here because it breaks [url] search by replacing & with amp
74
75         $Text = str_replace("<", "&lt;", $Text);
76         $Text = str_replace(">", "&gt;", $Text);
77
78         // If we find any event code, turn it into an event.
79         // After we're finished processing the bbcode we'll 
80         // replace all of the event code with a reformatted version.
81
82
83         if($preserve_nl)
84                 $Text = str_replace(array("\n","\r"), array('',''),$Text);
85
86         // Set up the parameters for a URL search string
87         $URLSearchString = "^\[\]";
88         // Set up the parameters for a MAIL search string
89         $MAILSearchString = $URLSearchString;
90
91         // Perform URL Search
92
93         // [img]pathtoimage[/img]
94
95         $Text = preg_replace("/\[bookmark\]([$URLSearchString]*)\[\/bookmark\]/ism", '[$1]($1)', $Text);
96         $Text = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", '[$2]($1)', $Text);
97
98         $Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '[$1]($1)', $Text);
99         $Text = preg_replace("/\#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[#$2]($1)', $Text);
100         $Text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[$2]($1)', $Text);
101
102         $Text = preg_replace("/\[img\](.*?)\[\/img\]/", '![' . t('image/photo') . '](' . '$1' . ')', $Text);
103
104         // Perform MAIL Search
105         $Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '[$1](mailto:$1)', $Text);
106         $Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '[$2](mailto:$1)', $Text);
107          
108         $Text = str_replace('*', '\\*', $Text);
109         $Text = str_replace('_', '\\_', $Text);
110
111         $Text = str_replace('`','\\`', $Text);
112
113         // Check for bold text
114         $Text = preg_replace("(\[b\](.*?)\[\/b\])is",'**$1**',$Text);
115
116         // Check for Italics text
117         $Text = preg_replace("(\[i\](.*?)\[\/i\])is",'_$1_',$Text);
118
119         // Check for Underline text
120 //      $Text = preg_replace("(\[u\](.*?)\[\/u\])is",'<u>$1</u>',$Text);
121
122         // Check for strike-through text
123 //      $Text = preg_replace("(\[s\](.*?)\[\/s\])is",'<strike>$1</strike>',$Text);
124
125         // Check for over-line text
126 //      $Text = preg_replace("(\[o\](.*?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
127
128         // Check for colored text
129 //      $Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])is","<span style=\"color: $1;\">$2</span>",$Text);
130
131         // Check for sized text
132 //      $Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])is","<span style=\"font-size: $1;\">$2</span>",$Text);
133
134         // Check for list text
135 //      $Text = preg_replace("/\[list\](.*?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
136 //      $Text = preg_replace("/\[list=1\](.*?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
137 //      $Text = preg_replace("/\[list=i\](.*?)\[\/list\]/s",'<ul class="listlowerroman">$1</ul>' ,$Text);
138 //      $Text = preg_replace("/\[list=I\](.*?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
139 //      $Text = preg_replace("/\[list=a\](.*?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
140 //      $Text = preg_replace("/\[list=A\](.*?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
141 //      $Text = preg_replace("/\[li\](.*?)\[\/li\]/s", '<li>$1</li>' ,$Text);
142
143 //      $Text = preg_replace("/\[td\](.*?)\[\/td\]/s", '<td>$1</td>' ,$Text);
144 //      $Text = preg_replace("/\[tr\](.*?)\[\/tr\]/s", '<tr>$1</tr>' ,$Text);
145 //      $Text = preg_replace("/\[table\](.*?)\[\/table\]/s", '<table>$1</table>' ,$Text);
146
147 //      $Text = preg_replace("/\[table border=1\](.*?)\[\/table\]/s", '<table border="1" >$1</table>' ,$Text);
148 //      $Text = preg_replace("/\[table border=0\](.*?)\[\/table\]/s", '<table border="0" >$1</table>' ,$Text);
149
150         
151 //      $Text = str_replace("[*]", "<li>", $Text);
152
153         // Check for font change text
154 //      $Text = preg_replace("(\[font=(.*?)\](.*?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
155
156
157     $Text = preg_replace_callback("/\[code\](.*?)\[\/code\]/is",'stripdcode_br_cb',$Text);
158
159         // Check for [code] text
160         $Text = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/is","\t$2\n", $Text);
161
162
163
164
165         // Declare the format for [quote] layout
166         //      $QuoteLayout = '<blockquote>$1</blockquote>';                     
167         // Check for [quote] text
168         $Text = preg_replace("/\[quote\](.*?)\[\/quote\]/is",">$1\n\n", $Text);
169          
170         // Images
171
172         // html5 video and audio
173
174 //      $Text = preg_replace("/\[video\](.*?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350"><a href="$1">$1</a></video>', $Text);
175
176 //      $Text = preg_replace("/\[audio\](.*?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text);
177
178 //      $Text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/", '<iframe src="$1" width="425" height="350"><a href="$1">$1</a></iframe>', $Text);
179          
180         // [img=widthxheight]image source[/img]
181 //      $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text);
182
183     $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
184     $Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/embed\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
185     $Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/ism",'http://www.youtube.com/watch?v=$1',$Text); 
186         $Text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", 'http://www.youtube.com/watch?v=$1', $Text);
187
188         $Text = preg_replace("/\[vimeo\]https?:\/\/player.vimeo.com\/video\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
189         $Text = preg_replace("/\[vimeo\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/vimeo\]/ism",'http://vimeo.com/$1',$Text); 
190         $Text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", 'http://vimeo.com/$1',$Text);
191
192
193
194
195         // oembed tag
196         //      $Text = oembed_bbcode2html($Text);
197
198         // If we found an event earlier, strip out all the event code and replace with a reformatted version.
199
200         if(x($ev,'desc') && x($ev,'start')) {
201
202                 $sub = format_event_diaspora($ev);
203         
204                 $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/is",$sub,$Text);
205                 $Text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/is",'',$Text);
206                 $Text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/is",'',$Text);
207                 $Text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/is",'',$Text);
208                 $Text = preg_replace("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",'',$Text);
209         }
210
211         $Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
212
213         $Text = preg_replace('/\[(.*?)\]\((.*?)\\\\_(.*?)\)/ism','[$1]($2_$3)',$Text);
214         
215         call_hooks('bb2diaspora',$Text);
216
217         return $Text;
218 }
219
220 function format_event_diaspora($ev) {
221
222         $a = get_app();
223
224         if(! ((is_array($ev)) && count($ev)))
225                 return '';
226
227         $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
228
229         $o = 'Friendika event notification:' . "\n";
230
231         $o .= '**' . bb2diaspora($ev['desc']) .  '**' . "\n";
232
233         $o .= t('Starts:') . ' ' . '['
234                 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
235                         $ev['start'] , $bd_format ))
236                         :  day_translate(datetime_convert('UTC', 'UTC', 
237                         $ev['start'] , $bd_format)))
238                 .  '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n";
239
240         if(! $ev['nofinish'])
241                 $o .= t('Finishes:') . ' ' . '[' 
242                         . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC', 
243                                 $ev['finish'] , $bd_format ))
244                                 :  day_translate(datetime_convert('UTC', 'UTC', 
245                                 $ev['finish'] , $bd_format )))
246                         . '](' . $a->get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n";
247
248         if(strlen($ev['location']))
249                 $o .= t('Location:') . bb2diaspora($ev['location']) 
250                         . "\n";
251
252         $o .= "\n";
253         return $o;
254 }