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("library/html-to-markdown/HTML_To_Markdown.php");
11 * @brief Callback function to replace a Diaspora style mention in a mention for Friendica
13 * @param array $match Matching values for the callback
14 * @return string Replaced mention
16 function diaspora_mention2bb($match) {
17 if ($match[2] == '') {
21 $data = get_contact_details_by_addr($match[2]);
26 $name = $data['name'];
29 return '@[url='.$data['url'].']'.$name.'[/url]';
32 // we don't want to support a bbcode specific markdown interpreter
33 // and the markdown library we have is pretty good, but provides HTML output.
34 // So we'll use that to convert to HTML, then convert the HTML back to bbcode,
35 // and then clean up a few Diaspora specific constructs.
37 function diaspora2bb($s) {
39 $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
41 // Handles single newlines
42 $s = str_replace("\r\n", "\n", $s);
43 $s = str_replace("\n", " \n", $s);
44 $s = str_replace("\r", " \n", $s);
46 // Replace lonely stars in lines not starting with it with literal stars
47 $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
49 // The parser cannot handle paragraphs correctly
50 $s = str_replace(array('</p>', '<p>', '<p dir="ltr">'), array('<br>', '<br>', '<br>'), $s);
52 // Escaping the hash tags
53 $s = preg_replace('/\#([^\s\#])/', '#$1', $s);
57 $regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/";
58 $s = preg_replace_callback($regexp, 'diaspora_mention2bb', $s);
60 $s = str_replace('#', '#', $s);
62 $search = array(" \n", "\n ");
63 $replace = array("\n", "\n");
66 $s = str_replace($search, $replace, $s);
67 } while ($oldtext != $s);
69 $s = str_replace("\n\n", '<br>', $s);
73 // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
74 $s = str_replace('♲', html_entity_decode('♲', ENT_QUOTES, 'UTF-8'), $s);
76 // Convert everything that looks like a link to a link
77 $s = preg_replace('/([^\]=]|^)(https?\:\/\/)([a-zA-Z0-9:\/\-?&;.=_~#%$!+,@]+(?<!,))/ism', '$1[url=$2$3]$2$3[/url]', $s);
79 //$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
80 $s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism', '[youtube]$2[/youtube]', 'url', $s);
81 $s = bb_tag_preg_replace('/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism' , '[youtube]$1[/youtube]', 'url', $s);
82 $s = bb_tag_preg_replace('/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism' , '[vimeo]$2[/vimeo]' , 'url', $s);
83 $s = bb_tag_preg_replace('/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism' , '[vimeo]$1[/vimeo]' , 'url', $s);
85 // remove duplicate adjacent code tags
86 $s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
88 // Don't show link to full picture (until it is fixed)
89 $s = scale_external_images($s, false);
95 * @brief Callback function to replace a Friendica style mention in a mention for Diaspora
97 * @param array $match Matching values for the callback
98 * @return string Replaced mention
100 function diaspora_mentions($match) {
102 $contact = get_contact_details_by_url($match[3]);
104 if (!isset($contact['addr'])) {
105 $contact = Probe::uri($match[3]);
108 if (!isset($contact['addr'])) {
112 $mention = '@{'.$match[2].'; '.$contact['addr'].'}';
116 function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) {
120 $OriginalText = $Text;
122 // Since Diaspora is creating a summary for links, this function removes them before posting
124 $Text = bb_remove_share_information($Text);
127 * Transform #tags, strip off the [url] and replace spaces with underscore
129 $URLSearchString = "^\[\]";
130 $Text = preg_replace_callback("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/i", create_function('$match',
131 'return \'#\'. str_replace(\' \', \'_\', $match[2]);'
134 // Converting images with size parameters to simple images. Markdown doesn't know it.
135 $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $Text);
137 // Convert it to HTML - don't try oembed
139 $Text = bbcode($Text, $preserve_nl, false, 3);
141 // Add all tags that maybe were removed
142 if (preg_match_all("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism",$OriginalText, $tags)) {
144 foreach($tags[2] as $tag) {
145 $tag = html_entity_decode($tag, ENT_QUOTES, 'UTF-8');
146 if (!strpos(html_entity_decode($Text, ENT_QUOTES, 'UTF-8'), "#".$tag))
147 $tagline .= "#".$tag." ";
149 $Text = $Text." ".$tagline;
153 $Text = bbcode($Text, $preserve_nl, false, 4);
155 // mask some special HTML chars from conversation to markdown
156 $Text = str_replace(array('<','>','&'),array('&_lt_;','&_gt_;','&_amp_;'),$Text);
158 // If a link is followed by a quote then there should be a newline before it
159 // Maybe we should make this newline at every time before a quote.
160 $Text = str_replace(array("</a><blockquote>"), array("</a><br><blockquote>"), $Text);
162 $stamp1 = microtime(true);
164 // Now convert HTML to Markdown
165 $Text = new HTML_To_Markdown($Text);
167 // unmask the special chars back to HTML
168 $Text = str_replace(array('&_lt_;','&_gt_;','&_amp_;'),array('<','>','&'),$Text);
170 $a->save_timestamp($stamp1, "parser");
172 // Libertree has a problem with escaped hashtags.
173 $Text = str_replace(array('\#'), array('#'), $Text);
175 // Remove any leading or trailing whitespace, as this will mess up
176 // the Diaspora signature verification and cause the item to disappear
180 $URLSearchString = "^\[\]";
181 $Text = preg_replace_callback("/([@]\[(.*?)\])\(([$URLSearchString]*?)\)/ism", 'diaspora_mentions', $Text);
184 call_hooks('bb2diaspora',$Text);
189 function unescape_underscores_in_links($m) {
190 $y = str_replace('\\_','_', $m[2]);
191 return('[' . $m[1] . '](' . $y . ')');
194 function format_event_diaspora($ev) {
196 if(! ((is_array($ev)) && count($ev)))
199 $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
201 $o = 'Friendica event notification:' . "\n";
203 $o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) . '**' . "\n";
205 $o .= t('Starts:') . ' ' . '['
206 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC',
207 $ev['start'] , $bd_format ))
208 : day_translate(datetime_convert('UTC', 'UTC',
209 $ev['start'] , $bd_format)))
210 . '](' . App::get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['start'])) . ")\n";
212 if(! $ev['nofinish'])
213 $o .= t('Finishes:') . ' ' . '['
214 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', 'UTC',
215 $ev['finish'] , $bd_format ))
216 : day_translate(datetime_convert('UTC', 'UTC',
217 $ev['finish'] , $bd_format )))
218 . '](' . App::get_baseurl() . '/localtime/?f=&time=' . urlencode(datetime_convert('UTC','UTC',$ev['finish'])) . ")\n";
220 if(strlen($ev['location']))
221 $o .= t('Location:') . bb2diaspora($ev['location'])