2015-11-17 21:01:11 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugin Markdown.
|
|
|
|
*
|
|
|
|
* Shaare's descriptions are parsed with Markdown.
|
|
|
|
*/
|
|
|
|
|
2016-03-21 18:46:34 +01:00
|
|
|
/*
|
|
|
|
* If this tag is used on a shaare, the description won't be processed by Parsedown.
|
|
|
|
*/
|
2016-05-30 18:51:00 +02:00
|
|
|
define('NO_MD_TAG', 'nomarkdown');
|
2016-03-21 18:46:34 +01:00
|
|
|
|
2015-11-17 21:01:11 +01:00
|
|
|
/**
|
|
|
|
* Parse linklist descriptions.
|
|
|
|
*
|
2017-02-27 19:45:55 +01:00
|
|
|
* @param array $data linklist data.
|
|
|
|
* @param ConfigManager $conf instance.
|
2015-11-17 21:01:11 +01:00
|
|
|
*
|
|
|
|
* @return mixed linklist data parsed in markdown (and converted to HTML).
|
|
|
|
*/
|
2017-02-27 19:45:55 +01:00
|
|
|
function hook_markdown_render_linklist($data, $conf)
|
2015-11-17 21:01:11 +01:00
|
|
|
{
|
|
|
|
foreach ($data['links'] as &$value) {
|
2016-03-21 18:46:34 +01:00
|
|
|
if (!empty($value['tags']) && noMarkdownTag($value['tags'])) {
|
2016-11-13 16:51:21 +01:00
|
|
|
$value = stripNoMarkdownTag($value);
|
2016-03-21 18:46:34 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-05-25 14:52:42 +02:00
|
|
|
$value['description'] = process_markdown(
|
|
|
|
$value['description'],
|
|
|
|
$conf->get('security.markdown_escape', true),
|
|
|
|
$conf->get('security.allowed_protocols')
|
|
|
|
);
|
2015-11-17 21:01:11 +01:00
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2016-03-12 18:39:57 +01:00
|
|
|
/**
|
|
|
|
* Parse feed linklist descriptions.
|
|
|
|
*
|
|
|
|
* @param array $data linklist data.
|
2017-02-27 19:45:55 +01:00
|
|
|
* @param ConfigManager $conf instance.
|
2016-03-12 18:39:57 +01:00
|
|
|
*
|
|
|
|
* @return mixed linklist data parsed in markdown (and converted to HTML).
|
|
|
|
*/
|
2017-02-27 19:45:55 +01:00
|
|
|
function hook_markdown_render_feed($data, $conf)
|
2016-03-12 18:39:57 +01:00
|
|
|
{
|
|
|
|
foreach ($data['links'] as &$value) {
|
|
|
|
if (!empty($value['tags']) && noMarkdownTag($value['tags'])) {
|
2016-11-13 16:51:21 +01:00
|
|
|
$value = stripNoMarkdownTag($value);
|
2016-03-12 18:39:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-05-25 14:52:42 +02:00
|
|
|
$value['description'] = process_markdown(
|
|
|
|
$value['description'],
|
|
|
|
$conf->get('security.markdown_escape', true),
|
|
|
|
$conf->get('security.allowed_protocols')
|
|
|
|
);
|
2016-03-12 18:39:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2015-11-17 21:01:11 +01:00
|
|
|
/**
|
|
|
|
* Parse daily descriptions.
|
|
|
|
*
|
2017-02-27 19:45:55 +01:00
|
|
|
* @param array $data daily data.
|
|
|
|
* @param ConfigManager $conf instance.
|
2015-11-17 21:01:11 +01:00
|
|
|
*
|
|
|
|
* @return mixed daily data parsed in markdown (and converted to HTML).
|
|
|
|
*/
|
2017-02-27 19:45:55 +01:00
|
|
|
function hook_markdown_render_daily($data, $conf)
|
2015-11-17 21:01:11 +01:00
|
|
|
{
|
|
|
|
// Manipulate columns data
|
|
|
|
foreach ($data['cols'] as &$value) {
|
|
|
|
foreach ($value as &$value2) {
|
2016-03-21 18:46:34 +01:00
|
|
|
if (!empty($value2['tags']) && noMarkdownTag($value2['tags'])) {
|
2016-11-13 16:51:21 +01:00
|
|
|
$value2 = stripNoMarkdownTag($value2);
|
2016-03-21 18:46:34 +01:00
|
|
|
continue;
|
|
|
|
}
|
2017-02-27 19:45:55 +01:00
|
|
|
$value2['formatedDescription'] = process_markdown(
|
|
|
|
$value2['formatedDescription'],
|
2017-05-25 14:52:42 +02:00
|
|
|
$conf->get('security.markdown_escape', true),
|
|
|
|
$conf->get('security.allowed_protocols')
|
2017-02-27 19:45:55 +01:00
|
|
|
);
|
2015-11-17 21:01:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2016-03-21 18:46:34 +01:00
|
|
|
/**
|
|
|
|
* Check if noMarkdown is set in tags.
|
|
|
|
*
|
|
|
|
* @param string $tags tag list
|
|
|
|
*
|
|
|
|
* @return bool true if markdown should be disabled on this link.
|
|
|
|
*/
|
|
|
|
function noMarkdownTag($tags)
|
|
|
|
{
|
2016-11-13 16:51:21 +01:00
|
|
|
return preg_match('/(^|\s)'. NO_MD_TAG .'(\s|$)/', $tags);
|
2016-03-21 18:46:34 +01:00
|
|
|
}
|
|
|
|
|
2016-05-30 18:51:00 +02:00
|
|
|
/**
|
|
|
|
* Remove the no-markdown meta tag so it won't be displayed.
|
|
|
|
*
|
2016-11-13 16:51:21 +01:00
|
|
|
* @param array $link Link data.
|
2016-05-30 18:51:00 +02:00
|
|
|
*
|
2016-11-13 16:51:21 +01:00
|
|
|
* @return array Updated link without no markdown tag.
|
2016-05-30 18:51:00 +02:00
|
|
|
*/
|
2016-11-13 16:51:21 +01:00
|
|
|
function stripNoMarkdownTag($link)
|
2016-05-30 18:51:00 +02:00
|
|
|
{
|
2016-11-13 16:51:21 +01:00
|
|
|
if (! empty($link['taglist'])) {
|
|
|
|
$offset = array_search(NO_MD_TAG, $link['taglist']);
|
|
|
|
if ($offset !== false) {
|
|
|
|
unset($link['taglist'][$offset]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($link['tags'])) {
|
|
|
|
str_replace(NO_MD_TAG, '', $link['tags']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $link;
|
2016-05-30 18:51:00 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 21:01:11 +01:00
|
|
|
/**
|
|
|
|
* When link list is displayed, include markdown CSS.
|
|
|
|
*
|
|
|
|
* @param array $data includes data.
|
|
|
|
*
|
|
|
|
* @return mixed - includes data with markdown CSS file added.
|
|
|
|
*/
|
|
|
|
function hook_markdown_render_includes($data)
|
|
|
|
{
|
|
|
|
if ($data['_PAGE_'] == Router::$PAGE_LINKLIST
|
|
|
|
|| $data['_PAGE_'] == Router::$PAGE_DAILY
|
|
|
|
|| $data['_PAGE_'] == Router::$PAGE_EDITLINK
|
|
|
|
) {
|
|
|
|
|
|
|
|
$data['css_files'][] = PluginManager::$PLUGINS_PATH . '/markdown/markdown.css';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hook render_editlink.
|
|
|
|
* Adds an help link to markdown syntax.
|
|
|
|
*
|
|
|
|
* @param array $data data passed to plugin
|
|
|
|
*
|
|
|
|
* @return array altered $data.
|
|
|
|
*/
|
|
|
|
function hook_markdown_render_editlink($data)
|
|
|
|
{
|
|
|
|
// Load help HTML into a string
|
|
|
|
$data['edit_link_plugin'][] = file_get_contents(PluginManager::$PLUGINS_PATH .'/markdown/help.html');
|
2016-03-21 18:46:34 +01:00
|
|
|
|
|
|
|
// Add no markdown 'meta-tag' in tag list if it was never used, for autocompletion.
|
|
|
|
if (! in_array(NO_MD_TAG, $data['tags'])) {
|
|
|
|
$data['tags'][NO_MD_TAG] = 0;
|
|
|
|
}
|
|
|
|
|
2015-11-17 21:01:11 +01:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove HTML links auto generated by Shaarli core system.
|
|
|
|
* Keeps HREF attributes.
|
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
|
|
|
*
|
|
|
|
* @return string $description without HTML links.
|
|
|
|
*/
|
|
|
|
function reverse_text2clickable($description)
|
|
|
|
{
|
2016-05-10 23:18:04 +02:00
|
|
|
$descriptionLines = explode(PHP_EOL, $description);
|
|
|
|
$descriptionOut = '';
|
|
|
|
$codeBlockOn = false;
|
|
|
|
$lineCount = 0;
|
|
|
|
|
|
|
|
foreach ($descriptionLines as $descriptionLine) {
|
2016-10-21 12:38:38 +02:00
|
|
|
// Detect line of code: starting with 4 spaces,
|
|
|
|
// except lists which can start with +/*/- or `2.` after spaces.
|
|
|
|
$codeLineOn = preg_match('/^ +(?=[^\+\*\-])(?=(?!\d\.).)/', $descriptionLine) > 0;
|
2016-05-10 23:18:04 +02:00
|
|
|
// Detect and toggle block of code
|
|
|
|
if (!$codeBlockOn) {
|
|
|
|
$codeBlockOn = preg_match('/^```/', $descriptionLine) > 0;
|
|
|
|
}
|
|
|
|
elseif (preg_match('/^```/', $descriptionLine) > 0) {
|
|
|
|
$codeBlockOn = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$hashtagTitle = ' title="Hashtag [^"]+"';
|
|
|
|
// Reverse `inline code` hashtags.
|
|
|
|
$descriptionLine = preg_replace(
|
|
|
|
'!(`[^`\n]*)<a href="[^ ]*"'. $hashtagTitle .'>([^<]+)</a>([^`\n]*`)!m',
|
|
|
|
'$1$2$3',
|
|
|
|
$descriptionLine
|
|
|
|
);
|
|
|
|
|
2016-10-21 12:38:38 +02:00
|
|
|
// Reverse all links in code blocks, only non hashtag elsewhere.
|
|
|
|
$hashtagFilter = (!$codeBlockOn && !$codeLineOn) ? '(?!'. $hashtagTitle .')': '(?:'. $hashtagTitle .')?';
|
2016-05-10 23:18:04 +02:00
|
|
|
$descriptionLine = preg_replace(
|
2016-10-21 12:38:38 +02:00
|
|
|
'#<a href="[^ ]*"'. $hashtagFilter .'>([^<]+)</a>#m',
|
2016-05-10 23:18:04 +02:00
|
|
|
'$1',
|
|
|
|
$descriptionLine
|
|
|
|
);
|
|
|
|
|
|
|
|
$descriptionOut .= $descriptionLine;
|
|
|
|
if ($lineCount++ < count($descriptionLines) - 1) {
|
|
|
|
$descriptionOut .= PHP_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $descriptionOut;
|
2015-11-17 21:01:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove <br> tag to let markdown handle it.
|
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
|
|
|
*
|
|
|
|
* @return string $description without <br> tags.
|
|
|
|
*/
|
|
|
|
function reverse_nl2br($description)
|
|
|
|
{
|
|
|
|
return preg_replace('!<br */?>!im', '', $description);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove HTML spaces ' ' auto generated by Shaarli core system.
|
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
|
|
|
*
|
|
|
|
* @return string $description without HTML links.
|
|
|
|
*/
|
|
|
|
function reverse_space2nbsp($description)
|
|
|
|
{
|
|
|
|
return preg_replace('/(^| ) /m', '$1 ', $description);
|
|
|
|
}
|
|
|
|
|
2017-05-25 14:52:42 +02:00
|
|
|
/**
|
|
|
|
* Replace not whitelisted protocols with http:// in given description.
|
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
|
|
|
* @param array $allowedProtocols list of allowed protocols.
|
|
|
|
*
|
|
|
|
* @return string $description without malicious link.
|
|
|
|
*/
|
|
|
|
function filter_protocols($description, $allowedProtocols)
|
|
|
|
{
|
|
|
|
return preg_replace_callback(
|
|
|
|
'#]\((.*?)\)#is',
|
|
|
|
function ($match) use ($allowedProtocols) {
|
|
|
|
return ']('. whitelist_protocols($match[1], $allowedProtocols) .')';
|
|
|
|
},
|
|
|
|
$description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-11-17 21:01:11 +01:00
|
|
|
/**
|
2016-02-19 19:37:13 +01:00
|
|
|
* Remove dangerous HTML tags (tags, iframe, etc.).
|
|
|
|
* Doesn't affect <code> content (already escaped by Parsedown).
|
2015-11-17 21:01:11 +01:00
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
|
|
|
*
|
2016-02-19 19:37:13 +01:00
|
|
|
* @return string given string escaped.
|
2015-11-17 21:01:11 +01:00
|
|
|
*/
|
2016-02-19 19:37:13 +01:00
|
|
|
function sanitize_html($description)
|
2015-11-17 21:01:11 +01:00
|
|
|
{
|
2016-02-19 19:37:13 +01:00
|
|
|
$escapeTags = array(
|
|
|
|
'script',
|
|
|
|
'style',
|
|
|
|
'link',
|
|
|
|
'iframe',
|
|
|
|
'frameset',
|
|
|
|
'frame',
|
|
|
|
);
|
|
|
|
foreach ($escapeTags as $tag) {
|
|
|
|
$description = preg_replace_callback(
|
|
|
|
'#<\s*'. $tag .'[^>]*>(.*</\s*'. $tag .'[^>]*>)?#is',
|
|
|
|
function ($match) { return escape($match[0]); },
|
|
|
|
$description);
|
|
|
|
}
|
|
|
|
$description = preg_replace(
|
2017-02-27 19:45:55 +01:00
|
|
|
'#(<[^>]+)on[a-z]*="?[^ "]*"?#is',
|
2016-02-19 19:37:13 +01:00
|
|
|
'$1',
|
|
|
|
$description);
|
|
|
|
return $description;
|
2015-11-17 21:01:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render shaare contents through Markdown parser.
|
|
|
|
* 1. Remove HTML generated by Shaarli core.
|
2016-02-19 19:37:13 +01:00
|
|
|
* 2. Reverse the escape function.
|
|
|
|
* 3. Generate markdown descriptions.
|
|
|
|
* 4. Sanitize sensible HTML tags for security.
|
|
|
|
* 5. Wrap description in 'markdown' CSS class.
|
2015-11-17 21:01:11 +01:00
|
|
|
*
|
|
|
|
* @param string $description input description text.
|
2017-02-27 19:45:55 +01:00
|
|
|
* @param bool $escape escape HTML entities
|
2015-11-17 21:01:11 +01:00
|
|
|
*
|
|
|
|
* @return string HTML processed $description.
|
|
|
|
*/
|
2017-05-25 14:52:42 +02:00
|
|
|
function process_markdown($description, $escape = true, $allowedProtocols = [])
|
2015-11-17 21:01:11 +01:00
|
|
|
{
|
|
|
|
$parsedown = new Parsedown();
|
|
|
|
|
|
|
|
$processedDescription = $description;
|
|
|
|
$processedDescription = reverse_nl2br($processedDescription);
|
|
|
|
$processedDescription = reverse_space2nbsp($processedDescription);
|
2016-05-10 23:18:04 +02:00
|
|
|
$processedDescription = reverse_text2clickable($processedDescription);
|
2017-05-25 14:52:42 +02:00
|
|
|
$processedDescription = filter_protocols($processedDescription, $allowedProtocols);
|
2016-02-19 19:37:13 +01:00
|
|
|
$processedDescription = unescape($processedDescription);
|
2015-11-17 21:01:11 +01:00
|
|
|
$processedDescription = $parsedown
|
2017-02-27 19:45:55 +01:00
|
|
|
->setMarkupEscaped($escape)
|
2015-11-17 21:01:11 +01:00
|
|
|
->setBreaksEnabled(true)
|
|
|
|
->text($processedDescription);
|
2016-02-19 19:37:13 +01:00
|
|
|
$processedDescription = sanitize_html($processedDescription);
|
2016-02-28 18:24:30 +01:00
|
|
|
|
|
|
|
if(!empty($processedDescription)){
|
|
|
|
$processedDescription = '<div class="markdown">'. $processedDescription . '</div>';
|
|
|
|
}
|
2015-11-17 21:01:11 +01:00
|
|
|
|
|
|
|
return $processedDescription;
|
|
|
|
}
|