]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Debug/Babel.php
Merge branch '2023.03-rc' into stable
[friendica.git] / src / Module / Debug / Babel.php
index 80c70f7888b8121e4a8c6cb02c2b02f45d932d7f..560d002a1b85c93791b64f0599315a5a6e5a977e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 namespace Friendica\Module\Debug;
 
 use Friendica\BaseModule;
+use Friendica\Content\PageInfo;
 use Friendica\Content\Text;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 use Friendica\Model\Item;
+use Friendica\Protocol\Activity;
 use Friendica\Util\XML;
 
 /**
@@ -33,7 +35,7 @@ use Friendica\Util\XML;
  */
 class Babel extends BaseModule
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                function visible_whitespace($s)
                {
@@ -44,7 +46,7 @@ class Babel extends BaseModule
                if (!empty($_REQUEST['text'])) {
                        switch (($_REQUEST['type'] ?? '') ?: 'bbcode') {
                                case 'bbcode':
-                                       $bbcode = trim($_REQUEST['text']);
+                                       $bbcode = $_REQUEST['text'];
                                        $results[] = [
                                                'title'   => DI::l10n()->t('Source input'),
                                                'content' => visible_whitespace($bbcode)
@@ -62,6 +64,11 @@ class Babel extends BaseModule
                                                'content' => visible_whitespace($html)
                                        ];
 
+                                       $results[] = [
+                                               'title'   => DI::l10n()->t('BBCode::convert (hex)'),
+                                               'content' => visible_whitespace(bin2hex($html)),
+                                       ];
+
                                        $results[] = [
                                                'title'   => DI::l10n()->t('BBCode::convert'),
                                                'content' => $html
@@ -101,19 +108,31 @@ class Babel extends BaseModule
                                                'content' => visible_whitespace($bbcode4)
                                        ];
 
-                                       $item = [
-                                               'body' => $bbcode,
-                                               'tag'  => '',
-                                       ];
+                                       $tags = Text\BBCode::getTags($bbcode);
 
-                                       Item::setHashtags($item);
+                                       $body = Item::setHashtags($bbcode);
                                        $results[] = [
                                                'title'   => DI::l10n()->t('Item Body'),
-                                               'content' => visible_whitespace($item['body'])
+                                               'content' => visible_whitespace($body)
                                        ];
                                        $results[] = [
                                                'title'   => DI::l10n()->t('Item Tags'),
-                                               'content' => $item['tag']
+                                               'content' => visible_whitespace(var_export($tags, true)),
+                                       ];
+
+                                       $body2 = PageInfo::searchAndAppendToBody($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
                                        ];
                                        break;
                                case 'diaspora':
@@ -125,9 +144,7 @@ class Babel extends BaseModule
 
                                        $markdown = XML::unescape($diaspora);
                                case 'markdown':
-                                       if (!isset($markdown)) {
-                                               $markdown = trim($_REQUEST['text']);
-                                       }
+                                       $markdown = $markdown ?? trim($_REQUEST['text']);
 
                                        $results[] = [
                                                'title'   => DI::l10n()->t('Source input (Markdown)'),
@@ -163,6 +180,23 @@ class Babel extends BaseModule
                                                'content' => $html
                                        ];
 
+                                       $purified = Text\HTML::purify($html);
+
+                                       $results[] = [
+                                               'title'   => DI::l10n()->t('HTML Purified (raw)'),
+                                               'content' => visible_whitespace($purified),
+                                       ];
+
+                                       $results[] = [
+                                               'title'   => DI::l10n()->t('HTML Purified (hex)'),
+                                               'content' => visible_whitespace(bin2hex($purified)),
+                                       ];
+
+                                       $results[] = [
+                                               'title'   => DI::l10n()->t('HTML Purified'),
+                                               'content' => $purified,
+                                       ];
+
                                        $bbcode = Text\HTML::toBBCode($html);
                                        $results[] = [
                                                'title'   => DI::l10n()->t('HTML::toBBCode'),
@@ -203,17 +237,80 @@ class Babel extends BaseModule
                                                'title'   => DI::l10n()->t('HTML::toPlaintext (compact)'),
                                                'content' => visible_whitespace($text),
                                        ];
+                                       break;
+                               case 'twitter':
+                                       $json = trim($_REQUEST['text']);
+
+                                       if (file_exists('addon/twitter/twitter.php')) {
+                                               require_once 'addon/twitter/twitter.php';
+
+                                               if (parse_url($json) !== false) {
+                                                       preg_match('#^https?://(?:mobile\.|www\.)?twitter.com/[^/]+/status/(\d+).*#', $json, $matches);
+                                                       $status = twitter_statuses_show($matches[1]);
+                                               } else {
+                                                       $status = json_decode($json);
+                                               }
+
+                                               $results[] = [
+                                                       'title'   => DI::l10n()->t('Decoded post'),
+                                                       'content' => visible_whitespace(var_export($status, true)),
+                                               ];
+
+                                               $postarray = [];
+                                               $postarray['object-type'] = Activity\ObjectType::NOTE;
+
+                                               if (!empty($status->full_text)) {
+                                                       $postarray['body'] = $status->full_text;
+                                               } else {
+                                                       $postarray['body'] = $status->text;
+                                               }
+
+                                               // When the post contains links then use the correct object type
+                                               if (count($status->entities->urls) > 0) {
+                                                       $postarray['object-type'] = Activity\ObjectType::BOOKMARK;
+                                               }
+
+                                               $picture = \twitter_media_entities($status, $postarray);
+
+                                               $results[] = [
+                                                       'title'   => DI::l10n()->t('Post array before expand entities'),
+                                                       'content' => visible_whitespace(var_export($postarray, true)),
+                                               ];
+
+                                               $converted = \twitter_expand_entities($postarray['body'], $status, $picture);
+
+                                               $results[] = [
+                                                       'title'   => DI::l10n()->t('Post converted'),
+                                                       'content' => visible_whitespace(var_export($converted, true)),
+                                               ];
+
+                                               $results[] = [
+                                                       'title'   => DI::l10n()->t('Converted body'),
+                                                       'content' => visible_whitespace($converted['body']),
+                                               ];
+                                       } else {
+                                               $results[] = [
+                                                       'title'   => DI::l10n()->tt('Error', 'Errors', 1),
+                                                       'content' => DI::l10n()->t('Twitter addon is absent from the addon/ folder.'),
+                                               ];
+                                       }
+
+                                       break;
                        }
                }
 
                $tpl = Renderer::getMarkupTemplate('babel.tpl');
                $o = Renderer::replaceMacros($tpl, [
+                       '$title'         => DI::l10n()->t('Babel Diagnostic'),
                        '$text'          => ['text', DI::l10n()->t('Source text'), $_REQUEST['text'] ?? '', ''],
                        '$type_bbcode'   => ['type', DI::l10n()->t('BBCode'), 'bbcode', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'bbcode'],
                        '$type_diaspora' => ['type', DI::l10n()->t('Diaspora'), 'diaspora', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'diaspora'],
                        '$type_markdown' => ['type', DI::l10n()->t('Markdown'), 'markdown', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'markdown'],
                        '$type_html'     => ['type', DI::l10n()->t('HTML'), 'html', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'html'],
-                       '$results'       => $results
+                       '$flag_twitter'  => file_exists('addon/twitter/twitter.php'),
+                       '$type_twitter'  => ['type', DI::l10n()->t('Twitter Source / Tweet URL (requires API key)'), 'twitter', '', (($_REQUEST['type'] ?? '') ?: 'bbcode') == 'twitter'],
+                       '$results'       => $results,
+                       '$submit'        => DI::l10n()->t('Submit'),
                ]);
 
                return $o;