2018-02-08 22:49:49 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file src/Content/Text/Markdown.php
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Content\Text;
|
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
2018-03-04 08:31:05 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-02-08 22:49:49 -05:00
|
|
|
use Michelf\MarkdownExtra;
|
2018-03-08 14:58:35 -05:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-02-08 22:49:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Friendica-specific usage of Markdown
|
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-08 22:49:49 -05:00
|
|
|
*/
|
|
|
|
class Markdown extends BaseObject
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Converts a Markdown string into HTML. The hardwrap parameter maximizes
|
|
|
|
* compatibility with Diaspora in spite of the Markdown standard.
|
|
|
|
*
|
|
|
|
* @brief Converts a Markdown string into HTML
|
|
|
|
* @param string $text
|
|
|
|
* @param bool $hardwrap
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function convert($text, $hardwrap = true) {
|
|
|
|
$stamp1 = microtime(true);
|
|
|
|
|
|
|
|
$MarkdownParser = new MarkdownExtra();
|
|
|
|
$MarkdownParser->hard_wrap = $hardwrap;
|
2018-09-16 09:04:25 -04:00
|
|
|
$MarkdownParser->code_class_prefix = 'language-';
|
2018-02-08 22:49:49 -05:00
|
|
|
$html = $MarkdownParser->transform($text);
|
|
|
|
|
|
|
|
self::getApp()->save_timestamp($stamp1, "parser");
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Callback function to replace a Diaspora style mention in a mention for Friendica
|
|
|
|
*
|
|
|
|
* @param array $match Matching values for the callback
|
|
|
|
* @return string Replaced mention
|
|
|
|
*/
|
|
|
|
private static function diasporaMention2BBCodeCallback($match)
|
|
|
|
{
|
|
|
|
if ($match[2] == '') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = Contact::getDetailsByAddr($match[2]);
|
|
|
|
|
2018-07-30 00:41:20 -04:00
|
|
|
if (empty($data)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-04 08:31:05 -05:00
|
|
|
$name = $match[1];
|
|
|
|
|
|
|
|
if ($name == '') {
|
|
|
|
$name = $data['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return '@[url=' . $data['url'] . ']' . $name . '[/url]';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we don't want to support a bbcode specific markdown interpreter
|
|
|
|
* and the markdown library we have is pretty good, but provides HTML output.
|
|
|
|
* So we'll use that to convert to HTML, then convert the HTML back to bbcode,
|
|
|
|
* and then clean up a few Diaspora specific constructs.
|
|
|
|
*/
|
|
|
|
public static function toBBCode($s)
|
|
|
|
{
|
|
|
|
$s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
|
|
|
|
|
|
|
|
// Handles single newlines
|
|
|
|
$s = str_replace("\r\n", "\n", $s);
|
|
|
|
$s = str_replace("\n", " \n", $s);
|
|
|
|
$s = str_replace("\r", " \n", $s);
|
|
|
|
|
|
|
|
// Replace lonely stars in lines not starting with it with literal stars
|
|
|
|
$s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
|
|
|
|
|
|
|
|
// The parser cannot handle paragraphs correctly
|
|
|
|
$s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
|
|
|
|
|
|
|
|
// Escaping the hash tags
|
|
|
|
$s = preg_replace('/\#([^\s\#])/', '#$1', $s);
|
|
|
|
|
2018-03-04 17:34:59 -05:00
|
|
|
$s = self::convert($s);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
$regexp = "/@\{(?:([^\}]+?); )?([^\} ]+)\}/";
|
|
|
|
$s = preg_replace_callback($regexp, ['self', 'diasporaMention2BBCodeCallback'], $s);
|
|
|
|
|
|
|
|
$s = str_replace('#', '#', $s);
|
|
|
|
|
2018-03-08 14:58:35 -05:00
|
|
|
$s = HTML::toBBCode($s);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
// protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
|
|
|
|
$s = str_replace('♲', html_entity_decode('♲', ENT_QUOTES, 'UTF-8'), $s);
|
|
|
|
|
|
|
|
// Convert everything that looks like a link to a link
|
|
|
|
$s = preg_replace('/([^\]=]|^)(https?\:\/\/)([a-zA-Z0-9:\/\-?&;.=_~#%$!+,@]+(?<!,))/ism', '$1[url=$2$3]$2$3[/url]', $s);
|
|
|
|
|
|
|
|
//$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)(vimeo|youtu|www\.youtube|soundcloud)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3$4]$2$3$4[/url]',$s);
|
|
|
|
$s = BBCode::pregReplaceInTag('/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism', '[youtube]$2[/youtube]', 'url', $s);
|
|
|
|
$s = BBCode::pregReplaceInTag('/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism' , '[youtube]$1[/youtube]', 'url', $s);
|
|
|
|
$s = BBCode::pregReplaceInTag('/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism' , '[vimeo]$2[/vimeo]' , 'url', $s);
|
|
|
|
$s = BBCode::pregReplaceInTag('/\[url\=https?:\/\/vimeo.com\/([0-9]+)\](.*?)\[\/url\]/ism' , '[vimeo]$1[/vimeo]' , 'url', $s);
|
|
|
|
|
|
|
|
// remove duplicate adjacent code tags
|
|
|
|
$s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
|
|
|
|
|
|
|
|
// Don't show link to full picture (until it is fixed)
|
|
|
|
$s = BBCode::scaleExternalImages($s, false);
|
|
|
|
|
|
|
|
return $s;
|
|
|
|
}
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|