2019-04-21 09:17:04 -04: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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-04-21 09:17:04 -04:00
|
|
|
|
2019-05-18 21:02:58 -04:00
|
|
|
namespace Friendica\Module\Debug;
|
2019-04-21 09:17:04 -04:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2020-06-17 04:58:13 -04:00
|
|
|
use Friendica\Content\PageInfo;
|
2019-04-21 09:17:04 -04:00
|
|
|
use Friendica\Content\Text;
|
|
|
|
use Friendica\Core\Renderer;
|
2020-01-19 10:29:55 -05:00
|
|
|
use Friendica\DI;
|
2019-04-21 09:17:04 -04:00
|
|
|
use Friendica\Model\Item;
|
2020-05-13 22:35:13 -04:00
|
|
|
use Friendica\Model\Tag;
|
2019-05-19 08:45:54 -04:00
|
|
|
use Friendica\Util\XML;
|
2019-04-21 09:17:04 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Translates input text into different formats (HTML, BBCode, Markdown)
|
|
|
|
*/
|
|
|
|
class Babel extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-04-21 09:17:04 -04:00
|
|
|
{
|
|
|
|
function visible_whitespace($s)
|
|
|
|
{
|
2020-03-11 09:01:17 -04:00
|
|
|
return '<pre>' . htmlspecialchars($s) . '</pre>';
|
2019-04-21 09:17:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$results = [];
|
|
|
|
if (!empty($_REQUEST['text'])) {
|
2019-10-15 09:20:32 -04:00
|
|
|
switch (($_REQUEST['type'] ?? '') ?: 'bbcode') {
|
2019-04-21 09:17:04 -04:00
|
|
|
case 'bbcode':
|
|
|
|
$bbcode = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Source input'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($bbcode)
|
|
|
|
];
|
|
|
|
|
|
|
|
$plain = Text\BBCode::toPlaintext($bbcode, false);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toPlaintext'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($plain)
|
|
|
|
];
|
|
|
|
|
|
|
|
$html = Text\BBCode::convert($bbcode);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::convert (raw HTML)'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($html)
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::convert'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode2 = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::convert => HTML::toBBCode'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($bbcode2)
|
|
|
|
];
|
|
|
|
|
|
|
|
$markdown = Text\BBCode::toMarkdown($bbcode);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toMarkdown'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($markdown)
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$html2 = Text\Markdown::convert($markdown);
|
2019-12-20 23:19:06 -05:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toMarkdown => Markdown::convert (raw HTML)'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($html2)
|
2019-12-20 23:19:06 -05:00
|
|
|
];
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toMarkdown => Markdown::convert'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => $html2
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode3 = Text\Markdown::toBBCode($markdown);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toMarkdown => Markdown::toBBCode'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($bbcode3)
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode4 = Text\HTML::toBBCode($html2);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($bbcode4)
|
|
|
|
];
|
|
|
|
|
2020-05-13 22:35:13 -04:00
|
|
|
$tags = Text\BBCode::getTags($bbcode);
|
2019-04-21 09:17:04 -04:00
|
|
|
|
2020-06-04 20:56:50 -04:00
|
|
|
$body = Item::setHashtags($bbcode);
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Item Body'),
|
2020-06-04 20:56:50 -04:00
|
|
|
'content' => visible_whitespace($body)
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Item Tags'),
|
2020-05-13 22:35:13 -04:00
|
|
|
'content' => visible_whitespace(var_export($tags, true)),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
2020-06-17 04:58:13 -04:00
|
|
|
|
|
|
|
$body2 = PageInfo::appendToBody($bbcode, true);
|
|
|
|
$results[] = [
|
|
|
|
'title' => DI::l10n()->t('PageInfo::appendToBody'),
|
|
|
|
'content' => visible_whitespace($body2)
|
|
|
|
];
|
|
|
|
$html3 = Text\BBCode::convert($body2);
|
|
|
|
$results[] = [
|
|
|
|
'title' => DI::l10n()->t('PageInfo::appendToBody => BBCode::convert (raw HTML)'),
|
|
|
|
'content' => visible_whitespace($html3)
|
|
|
|
];
|
|
|
|
$results[] = [
|
|
|
|
'title' => DI::l10n()->t('PageInfo::appendToBody => BBCode::convert'),
|
|
|
|
'content' => $html3
|
|
|
|
];
|
2019-04-21 09:17:04 -04:00
|
|
|
break;
|
2020-03-11 09:01:17 -04:00
|
|
|
case 'diaspora':
|
|
|
|
$diaspora = trim($_REQUEST['text']);
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Source input (Diaspora format)'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($diaspora),
|
|
|
|
];
|
|
|
|
|
|
|
|
$markdown = XML::unescape($diaspora);
|
|
|
|
case 'markdown':
|
2020-06-04 20:56:50 -04:00
|
|
|
$markdown = $markdown ?? trim($_REQUEST['text']);
|
2020-03-11 09:01:17 -04:00
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => DI::l10n()->t('Source input (Markdown)'),
|
|
|
|
'content' => visible_whitespace($markdown),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
|
2020-03-11 09:01:17 -04:00
|
|
|
$html = Text\Markdown::convert($markdown);
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Markdown::convert (raw HTML)'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($html),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Markdown::convert'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
2020-03-11 09:01:17 -04:00
|
|
|
$bbcode = Text\Markdown::toBBCode($markdown);
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Markdown::toBBCode'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($bbcode),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
break;
|
|
|
|
case 'html' :
|
|
|
|
$html = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('Raw HTML input'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($html),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML Input'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toBBCode'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($bbcode)
|
|
|
|
];
|
|
|
|
|
|
|
|
$html2 = Text\BBCode::convert($bbcode);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toBBCode => BBCode::convert'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => $html2
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toBBCode => BBCode::convert (raw HTML)'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => htmlspecialchars($html2)
|
|
|
|
];
|
|
|
|
|
2019-08-04 10:22:49 -04:00
|
|
|
$bbcode2plain = Text\BBCode::toPlaintext($bbcode);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toBBCode => BBCode::toPlaintext'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($bbcode2plain),
|
2019-08-04 10:22:49 -04:00
|
|
|
];
|
|
|
|
|
2019-04-21 09:17:04 -04:00
|
|
|
$markdown = Text\HTML::toMarkdown($html);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toMarkdown'),
|
2019-04-21 09:17:04 -04:00
|
|
|
'content' => visible_whitespace($markdown)
|
|
|
|
];
|
|
|
|
|
2019-08-06 21:23:09 -04:00
|
|
|
$text = Text\HTML::toPlaintext($html, 0);
|
2019-04-21 09:17:04 -04:00
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toPlaintext'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($text),
|
2019-04-21 09:17:04 -04:00
|
|
|
];
|
2019-05-27 12:02:28 -04:00
|
|
|
|
|
|
|
$text = Text\HTML::toPlaintext($html, 0, true);
|
|
|
|
$results[] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t('HTML::toPlaintext (compact)'),
|
2020-03-11 09:01:17 -04:00
|
|
|
'content' => visible_whitespace($text),
|
2019-05-27 12:02:28 -04:00
|
|
|
];
|
2019-04-21 09:17:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('babel.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$text' => ['text', DI::l10n()->t('Source text'), $_REQUEST['text'] ?? '', ''],
|
|
|
|
'$type_bbcode' => ['type', DI::l10n()->t('BBCode'), 'bbcode', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'bbcode'],
|
2020-03-11 09:01:17 -04:00
|
|
|
'$type_diaspora' => ['type', DI::l10n()->t('Diaspora'), 'diaspora', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'diaspora'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'$type_markdown' => ['type', DI::l10n()->t('Markdown'), 'markdown', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'markdown'],
|
|
|
|
'$type_html' => ['type', DI::l10n()->t('HTML'), 'html', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'html'],
|
2019-04-21 09:17:04 -04:00
|
|
|
'$results' => $results
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
}
|