2019-12-26 03:14:04 -05:00
< ? php
/**
* Name : Markdown
* Description : Parse Markdown code when creating new items
* Version : 0.1
* Author : Michael Vogel < https :// pirati . ca / profile / heluecht >
*/
use Friendica\App ;
use Friendica\Core\Hook ;
use Friendica\Content\Text\Markdown ;
use Friendica\Core\Renderer ;
2020-01-18 10:50:56 -05:00
use Friendica\DI ;
2019-12-26 03:14:04 -05:00
function markdown_install () {
Hook :: register ( 'post_local_start' , __FILE__ , 'markdown_post_local_start' );
Hook :: register ( 'addon_settings' , __FILE__ , 'markdown_addon_settings' );
Hook :: register ( 'addon_settings_post' , __FILE__ , 'markdown_addon_settings_post' );
}
function markdown_addon_settings ( App $a , & $s )
{
if ( ! local_user ()) {
return ;
}
2020-01-18 10:50:56 -05:00
$enabled = intval ( DI :: pConfig () -> get ( local_user (), 'markdown' , 'enabled' ));
2019-12-26 03:14:04 -05:00
$t = Renderer :: getMarkupTemplate ( 'settings.tpl' , 'addon/markdown/' );
$s .= Renderer :: replaceMacros ( $t , [
2020-01-18 14:52:33 -05:00
'$title' => DI :: l10n () -> t ( 'Markdown' ),
'$enabled' => [ 'enabled' , DI :: l10n () -> t ( 'Enable Markdown parsing' ), $enabled , DI :: l10n () -> t ( 'If enabled, self created items will additionally be parsed via Markdown.' )],
'$submit' => DI :: l10n () -> t ( 'Save Settings' ),
2019-12-26 03:14:04 -05:00
]);
}
function markdown_addon_settings_post ( App $a , & $b )
{
if ( ! local_user () || empty ( $_POST [ 'markdown-submit' ])) {
return ;
}
2020-01-18 10:54:49 -05:00
DI :: pConfig () -> set ( local_user (), 'markdown' , 'enabled' , intval ( $_POST [ 'enabled' ]));
2019-12-26 03:14:04 -05:00
}
function markdown_post_local_start ( App $a , & $request ) {
2020-01-18 10:50:56 -05:00
if ( empty ( $request [ 'body' ]) || ! DI :: pConfig () -> get ( local_user (), 'markdown' , 'enabled' )) {
2019-12-26 03:14:04 -05:00
return ;
}
2020-11-02 11:02:08 -05:00
// Escape elements that shouldn't be parsed
$request [ 'body' ] = \Friendica\Content\Text\BBCode :: performWithEscapedTags (
$request [ 'body' ],
[ 'code' , 'noparse' , 'nobb' , 'pre' , 'share' , 'url' , 'img' , 'bookmark' ,
'audio' , 'video' , 'youtube' , 'vimeo' , 'attachment' , 'iframe' , 'map' , 'mail' ],
function ( $body ) {
// Escape mentions which username can contain Markdown-like characters
// See https://github.com/friendica/friendica/issues/9486
return \Friendica\Util\Strings :: performWithEscapedBlocks ( $body , '/[@!][^@\s]+@[^\s]+\w/' , function ( $text ) {
return Markdown :: toBBCode ( $text );
});
}
);
2019-12-26 03:14:04 -05:00
}