2019-04-21 13:17:04 +00:00
|
|
|
<?php
|
|
|
|
|
2019-05-19 01:02:58 +00:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-04-21 13:17:04 +00:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Text;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Model\Item;
|
2019-05-19 12:45:54 +00:00
|
|
|
use Friendica\Util\XML;
|
2019-04-21 13:17:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translates input text into different formats (HTML, BBCode, Markdown)
|
|
|
|
*/
|
|
|
|
class Babel extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function content(array $parameters = [])
|
2019-04-21 13:17:04 +00:00
|
|
|
{
|
|
|
|
function visible_whitespace($s)
|
|
|
|
{
|
|
|
|
$s = str_replace(' ', ' ', $s);
|
|
|
|
|
|
|
|
return str_replace(["\r\n", "\n", "\r"], '<br />', $s);
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = [];
|
|
|
|
if (!empty($_REQUEST['text'])) {
|
2019-10-15 13:20:32 +00:00
|
|
|
switch (($_REQUEST['type'] ?? '') ?: 'bbcode') {
|
2019-04-21 13:17:04 +00:00
|
|
|
case 'bbcode':
|
|
|
|
$bbcode = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Source input'),
|
|
|
|
'content' => visible_whitespace($bbcode)
|
|
|
|
];
|
|
|
|
|
|
|
|
$plain = Text\BBCode::toPlaintext($bbcode, false);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toPlaintext'),
|
|
|
|
'content' => visible_whitespace($plain)
|
|
|
|
];
|
|
|
|
|
|
|
|
$html = Text\BBCode::convert($bbcode);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::convert (raw HTML)'),
|
|
|
|
'content' => visible_whitespace(htmlspecialchars($html))
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::convert'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode2 = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::convert => HTML::toBBCode'),
|
|
|
|
'content' => visible_whitespace($bbcode2)
|
|
|
|
];
|
|
|
|
|
|
|
|
$markdown = Text\BBCode::toMarkdown($bbcode);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown'),
|
|
|
|
'content' => visible_whitespace($markdown)
|
|
|
|
];
|
|
|
|
|
|
|
|
$html2 = Text\Markdown::convert($markdown);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown => Markdown::convert'),
|
|
|
|
'content' => $html2
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode3 = Text\Markdown::toBBCode($markdown);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown => Markdown::toBBCode'),
|
|
|
|
'content' => visible_whitespace($bbcode3)
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode4 = Text\HTML::toBBCode($html2);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'),
|
|
|
|
'content' => visible_whitespace($bbcode4)
|
|
|
|
];
|
|
|
|
|
|
|
|
$item = [
|
|
|
|
'body' => $bbcode,
|
|
|
|
'tag' => '',
|
|
|
|
];
|
|
|
|
|
|
|
|
Item::setHashtags($item);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Item Body'),
|
|
|
|
'content' => visible_whitespace($item['body'])
|
|
|
|
];
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Item Tags'),
|
|
|
|
'content' => $item['tag']
|
|
|
|
];
|
|
|
|
break;
|
|
|
|
case 'markdown':
|
|
|
|
$markdown = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Source input (Diaspora format)'),
|
2019-05-19 12:45:54 +00:00
|
|
|
'content' => '<pre>' . htmlspecialchars($markdown) . '</pre>'
|
2019-04-21 13:17:04 +00:00
|
|
|
];
|
|
|
|
|
2019-05-19 12:45:54 +00:00
|
|
|
$html = Text\Markdown::convert(html_entity_decode($markdown,ENT_COMPAT, 'UTF-8'));
|
2019-04-21 13:17:04 +00:00
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::convert (raw HTML)'),
|
|
|
|
'content' => visible_whitespace(htmlspecialchars($html))
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::convert'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
2019-05-19 12:45:54 +00:00
|
|
|
$bbcode = Text\Markdown::toBBCode(XML::unescape($markdown));
|
2019-04-21 13:17:04 +00:00
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::toBBCode'),
|
|
|
|
'content' => '<pre>' . $bbcode . '</pre>'
|
|
|
|
];
|
|
|
|
break;
|
|
|
|
case 'html' :
|
|
|
|
$html = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Raw HTML input'),
|
|
|
|
'content' => htmlspecialchars($html)
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML Input'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toBBCode'),
|
|
|
|
'content' => visible_whitespace($bbcode)
|
|
|
|
];
|
|
|
|
|
|
|
|
$html2 = Text\BBCode::convert($bbcode);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toBBCode => BBCode::convert'),
|
|
|
|
'content' => $html2
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toBBCode => BBCode::convert (raw HTML)'),
|
|
|
|
'content' => htmlspecialchars($html2)
|
|
|
|
];
|
|
|
|
|
2019-08-04 14:22:49 +00:00
|
|
|
$bbcode2plain = Text\BBCode::toPlaintext($bbcode);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toBBCode => BBCode::toPlaintext'),
|
|
|
|
'content' => '<pre>' . $bbcode2plain . '</pre>'
|
|
|
|
];
|
|
|
|
|
2019-04-21 13:17:04 +00:00
|
|
|
$markdown = Text\HTML::toMarkdown($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toMarkdown'),
|
|
|
|
'content' => visible_whitespace($markdown)
|
|
|
|
];
|
|
|
|
|
2019-08-07 01:23:09 +00:00
|
|
|
$text = Text\HTML::toPlaintext($html, 0);
|
2019-04-21 13:17:04 +00:00
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toPlaintext'),
|
|
|
|
'content' => '<pre>' . $text . '</pre>'
|
|
|
|
];
|
2019-05-27 16:02:28 +00:00
|
|
|
|
|
|
|
$text = Text\HTML::toPlaintext($html, 0, true);
|
|
|
|
$results[] = [
|
2019-08-04 14:22:49 +00:00
|
|
|
'title' => L10n::t('HTML::toPlaintext (compact)'),
|
2019-05-27 16:02:28 +00:00
|
|
|
'content' => '<pre>' . $text . '</pre>'
|
|
|
|
];
|
2019-04-21 13:17:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('babel.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2019-10-15 13:20:32 +00:00
|
|
|
'$text' => ['text', L10n::t('Source text'), $_REQUEST['text'] ?? '', ''],
|
|
|
|
'$type_bbcode' => ['type', L10n::t('BBCode'), 'bbcode', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'bbcode'],
|
|
|
|
'$type_markdown' => ['type', L10n::t('Markdown'), 'markdown', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'markdown'],
|
|
|
|
'$type_html' => ['type', L10n::t('HTML'), 'html', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'html'],
|
2019-04-21 13:17:04 +00:00
|
|
|
'$results' => $results
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|