]> git.mxchange.org Git - friendica.git/blobdiff - mod/poco.php
Merge pull request #12001 from tobiasd/20221016-docsmysql
[friendica.git] / mod / poco.php
index f084361dc4f731368cf6a66df2c498375eb42cf9..b4d0f343a2115ea1700ac9c8d3e8285ed6e0c354 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -24,18 +24,17 @@ use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
-use Friendica\Core\Renderer;
+use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
-use Friendica\Util\Strings;
-use Friendica\Util\XML;
+use Friendica\Util\DateTimeFormat;
 
 function poco_init(App $a) {
        if (intval(DI::config()->get('system', 'block_public')) || (DI::config()->get('system', 'block_local_dir'))) {
                throw new \Friendica\Network\HTTPException\ForbiddenException();
        }
 
-       if ($a->argc > 1) {
+       if (DI::args()->getArgc() > 1) {
                // Only the system mode is supported 
                throw new \Friendica\Network\HTTPException\NotFoundException();
        }
@@ -121,10 +120,12 @@ function poco_init(App $a) {
                        if (isset($contact['account-type'])) {
                                $contact['contact-type'] = $contact['account-type'];
                        }
-                       $about = DI::cache()->get("about:" . $contact['updated'] . ":" . $contact['nurl']);
+
+                       $cacheKey = 'about:' . $contact['nick'] . ':' . DateTimeFormat::utc($contact['updated'], DateTimeFormat::ATOM);
+                       $about = DI::cache()->get($cacheKey);
                        if (is_null($about)) {
-                               $about = BBCode::convert($contact['about'], false);
-                               DI::cache()->set("about:" . $contact['updated'] . ":" . $contact['nurl'], $about);
+                               $about = BBCode::convertForUriId($contact['uri-id'], $contact['about']);
+                               DI::cache()->set($cacheKey, $about);
                        }
 
                        // Non connected persons can only see the keywords of a Diaspora account
@@ -225,16 +226,9 @@ function poco_init(App $a) {
 
        Logger::info("End of poco");
 
-       if ($format === 'xml') {
-               header('Content-type: text/xml');
-               echo Renderer::replaceMacros(Renderer::getMarkupTemplate('poco_xml.tpl'), XML::arrayEscape(['$response' => $ret]));
-               exit();
-       }
        if ($format === 'json') {
-               header('Content-type: application/json');
-               echo json_encode($ret);
-               exit();
+               System::jsonExit($ret);
        } else {
-               throw new \Friendica\Network\HTTPException\InternalServerErrorException();
+               throw new \Friendica\Network\HTTPException\UnsupportedMediaTypeException();
        }
 }