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