2018-02-08 22:49:49 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 09:45:36 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-02-08 22:49:49 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Content\Text;
|
|
|
|
|
2019-02-16 17:17:10 -05:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2018-03-04 08:31:05 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-02-08 22:49:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Friendica-specific usage of Markdown
|
|
|
|
*/
|
2019-12-15 17:28:01 -05:00
|
|
|
class Markdown
|
2018-02-08 22:49:49 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Converts a Markdown string into HTML. The hardwrap parameter maximizes
|
|
|
|
* compatibility with Diaspora in spite of the Markdown standard.
|
|
|
|
*
|
|
|
|
* @param string $text
|
|
|
|
* @param bool $hardwrap
|
|
|
|
* @return string
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-02-08 22:49:49 -05:00
|
|
|
*/
|
|
|
|
public static function convert($text, $hardwrap = true) {
|
|
|
|
$stamp1 = microtime(true);
|
|
|
|
|
2019-03-09 23:28:50 -05:00
|
|
|
$MarkdownParser = new MarkdownParser();
|
|
|
|
$MarkdownParser->code_class_prefix = 'language-';
|
|
|
|
$MarkdownParser->hard_wrap = $hardwrap;
|
|
|
|
$MarkdownParser->hashtag_protection = true;
|
|
|
|
$MarkdownParser->url_filter_func = function ($url) {
|
|
|
|
if (strpos($url, '#') === 0) {
|
|
|
|
$url = ltrim($_SERVER['REQUEST_URI'], '/') . $url;
|
|
|
|
}
|
|
|
|
return $url;
|
|
|
|
};
|
|
|
|
|
2018-02-08 22:49:49 -05:00
|
|
|
$html = $MarkdownParser->transform($text);
|
|
|
|
|
2019-12-15 17:50:35 -05:00
|
|
|
DI::profiler()->saveTimestamp($stamp1, "parser", System::callstack());
|
2018-02-08 22:49:49 -05:00
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Callback function to replace a Diaspora style mention in a mention for Friendica
|
2018-03-04 08:31:05 -05:00
|
|
|
*
|
|
|
|
* @param array $match Matching values for the callback
|
2019-01-08 20:55:36 -05:00
|
|
|
* [1] = mention type (@ or !)
|
|
|
|
* [2] = name (optional)
|
|
|
|
* [3] = address
|
2018-03-04 08:31:05 -05:00
|
|
|
* @return string Replaced mention
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-03-04 08:31:05 -05:00
|
|
|
*/
|
|
|
|
private static function diasporaMention2BBCodeCallback($match)
|
|
|
|
{
|
2019-01-08 20:55:36 -05:00
|
|
|
if ($match[3] == '') {
|
2018-03-04 08:31:05 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-08 20:55:36 -05:00
|
|
|
$data = Contact::getDetailsByAddr($match[3]);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
2018-07-30 00:41:20 -04:00
|
|
|
if (empty($data)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-08 20:55:36 -05:00
|
|
|
$name = $match[2];
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
if ($name == '') {
|
|
|
|
$name = $data['name'];
|
|
|
|
}
|
|
|
|
|
2019-01-08 20:55:36 -05:00
|
|
|
return $match[1] . '[url=' . $data['url'] . ']' . $name . '[/url]';
|
2018-03-04 08:31:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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');
|
|
|
|
|
|
|
|
// The parser cannot handle paragraphs correctly
|
|
|
|
$s = str_replace(['</p>', '<p>', '<p dir="ltr">'], ['<br>', '<br>', '<br>'], $s);
|
|
|
|
|
2019-02-03 18:31:11 -05:00
|
|
|
// Escaping hashtags that could be titles
|
|
|
|
$s = preg_replace('/^\#([^\s\#])/im', '\#$1', $s);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
2018-03-04 17:34:59 -05:00
|
|
|
$s = self::convert($s);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
2019-01-08 20:55:36 -05:00
|
|
|
$regexp = "/([@!])\{(?:([^\}]+?); ?)?([^\} ]+)\}/";
|
2018-03-04 08:31:05 -05:00
|
|
|
$s = preg_replace_callback($regexp, ['self', 'diasporaMention2BBCodeCallback'], $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)
|
2020-01-02 20:44:15 -05:00
|
|
|
$s = BBCode::scaleExternalImages($s);
|
2018-03-04 08:31:05 -05:00
|
|
|
|
|
|
|
return $s;
|
|
|
|
}
|
2018-02-08 22:49:49 -05:00
|
|
|
}
|