]> git.mxchange.org Git - friendica.git/blobdiff - mod/babel.php
Add new INI config files
[friendica.git] / mod / babel.php
index e8ea11c94e904305d6d89985c5ab730e6cfcabb6..3352366bd5a78279c3e21d2b069c48c89e796c61 100644 (file)
 <?php
+/**
+ * @file mod/babel.php
+ */
 
-require_once('include/bbcode.php');
-require_once('library/markdown.php');
-require_once('include/bb2diaspora.php');
-require_once('include/html2bbcode.php');
+use Friendica\Content\Text;
+use Friendica\Core\L10n;
 
-function visible_lf($s) {
-       return str_replace("\n",'<br />', $s);
+function visible_lf($s)
+{
+       return str_replace("\n", '<br />', $s);
 }
 
-function babel_content(App $a) {
-
-       $o .= '<h1>Babel Diagnostic</h1>';
-
-       $o .= '<form action="babel" method="post">';
-       $o .= t('Source (bbcode) text:') . EOL . '<textarea name="text" >' . htmlspecialchars($_REQUEST['text']) .'</textarea>' . EOL;
-       $o .= '<input type="submit" name="submit" value="Submit" /></form>';
-
-       $o .= '<br /><br />';
-
-       $o .= '<form action="babel" method="post">';
-       $o .= t('Source (Diaspora) text to convert to BBcode:') . EOL . '<textarea name="d2bbtext" >' . htmlspecialchars($_REQUEST['d2bbtext']) .'</textarea>' . EOL;
-       $o .= '<input type="submit" name="submit" value="Submit" /></form>';
-
-       $o .= '<br /><br />';
-
-       if(x($_REQUEST,'text')) {
-
-               $text = trim($_REQUEST['text']);
-               $o .= "<h2>" . t("Source input: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($text) . EOL. EOL;
-
-               $html = bbcode($text);
-               $o .= "<h2>" . t("bb2html (raw HTML): ") . "</h2>" . EOL. EOL;
-               $o .= htmlspecialchars($html). EOL. EOL;
-
-               //$html = bbcode($text);
-               $o .= "<h2>" . t("bb2html: ") . "</h2>" . EOL. EOL;
-               $o .= $html. EOL. EOL;
-
-               $bbcode = html2bbcode($html);
-               $o .= "<h2>" . t("bb2html2bb: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($bbcode) . EOL. EOL;
-
-               $diaspora = bb2diaspora($text);
-               $o .= "<h2>" . t("bb2md: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($diaspora) . EOL. EOL;
-
-               $html = Markdown($diaspora);
-               $o .= "<h2>" . t("bb2md2html: ") . "</h2>" . EOL. EOL;
-               $o .= $html. EOL. EOL;
-
-               $bbcode = diaspora2bb($diaspora);
-               $o .= "<h2>" . t("bb2dia2bb: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($bbcode) . EOL. EOL;
-
-               $bbcode = html2bbcode($html);
-               $o .= "<h2>" . t("bb2md2html2bb: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($bbcode) . EOL. EOL;
-
-
-
+function babel_content()
+{
+       $results = [];
+       if (!empty($_REQUEST['text'])) {
+               switch (defaults($_REQUEST, 'type', 'bbcode')) {
+                       case 'bbcode':
+                               $bbcode = trim($_REQUEST['text']);
+                               $results[] = [
+                                       'title' => L10n::t('Source input'),
+                                       'content' => visible_lf($bbcode)
+                               ];
+
+                               $plain = Text\BBCode::toPlaintext($bbcode, false);
+                               $results[] = [
+                                       'title' => L10n::t('BBCode::toPlaintext'),
+                                       'content' => visible_lf($plain)
+                               ];
+
+                               $html = Text\BBCode::convert($bbcode);
+                               $results[] = [
+                                       'title' => L10n::t("BBCode::convert \x28raw HTML\x29"),
+                                       'content' => 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_lf($bbcode2)
+                               ];
+
+                               $markdown = Text\BBCode::toMarkdown($bbcode);
+                               $results[] = [
+                                       'title' => L10n::t('BBCode::toMarkdown'),
+                                       'content' => visible_lf($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_lf($bbcode3)
+                               ];
+
+                               $bbcode4 = Text\HTML::toBBCode($html2);
+                               $results[] = [
+                                       'title' => L10n::t('BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode'),
+                                       'content' => visible_lf($bbcode4)
+                               ];
+                               break;
+                       case 'markdown':
+                               $markdown = trim($_REQUEST['text']);
+                               $results[] = [
+                                       'title' => L10n::t('Source input \x28Diaspora format\x29'),
+                                       'content' => '<pre>' . $markdown . '</pre>'
+                               ];
+
+                               $bbcode = Text\Markdown::toBBCode($markdown);
+                               $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_lf($bbcode)
+                               ];
+
+                               $text = Text\HTML::toPlaintext($html);
+                               $results[] = [
+                                       'title' => L10n::t('HTML::toPlaintext'),
+                                       'content' => '<pre>' . $text . '</pre>'
+                               ];
+               }
        }
 
-       if(x($_REQUEST,'d2bbtext')) {
-
-               $d2bbtext = trim($_REQUEST['d2bbtext']);
-               $o .= "<h2>" . t("Source input (Diaspora format): ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($d2bbtext) . EOL. EOL;
-
-
-               $bb = diaspora2bb($d2bbtext);
-               $o .= "<h2>" . t("diaspora2bb: ") . "</h2>" . EOL. EOL;
-               $o .= visible_lf($bb) . EOL. EOL;
-       }
+       $tpl = get_markup_template('babel.tpl');
+       $o = replace_macros($tpl, [
+               '$text'          => ['text', L10n::t('Source text'), defaults($_REQUEST, 'text', ''), ''],
+               '$type_bbcode'   => ['type', L10n::t('BBCode'), 'bbcode', '', defaults($_REQUEST, 'type', 'bbcode') == 'bbcode'],
+               '$type_markdown' => ['type', L10n::t('Markdown'), 'markdown', '', defaults($_REQUEST, 'type', 'bbcode') == 'markdown'],
+               '$type_html'     => ['type', L10n::t('HTML'), 'html', '', defaults($_REQUEST, 'type', 'bbcode') == 'html'],
+               '$results'       => $results
+       ]);
 
        return $o;
 }