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