]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Feed.php
Standards
[friendica.git] / src / Module / Feed.php
index 2a3c6de5a7a31f77e00b73f7fee1ceb69ace241f..f4a671c055b1a2120e11e7da1578d624a282e5f4 100644 (file)
@@ -41,22 +41,17 @@ use Friendica\Protocol\Feed as ProtocolFeed;
  */
 class Feed extends BaseModule
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                $a = DI::app();
 
                $last_update = $_GET['last_update'] ?? '';
                $nocache     = !empty($_GET['nocache']) && local_user();
 
-               // @TODO: Replace with parameter from router
-               if ($a->argc < 2) {
-                       throw new \Friendica\Network\HTTPException\BadRequestException();
-               }
-
                $type = null;
                // @TODO: Replace with parameter from router
-               if ($a->argc > 2) {
-                       $type = $a->argv[2];
+               if (DI::args()->getArgc() > 2) {
+                       $type = DI::args()->getArgv()[2];
                }
 
                switch ($type) {
@@ -72,10 +67,8 @@ class Feed extends BaseModule
                                $type = 'posts';
                }
 
-               // @TODO: Replace with parameter from router
-               $nickname = $a->argv[1];
                header("Content-type: application/atom+xml; charset=utf-8");
-               echo ProtocolFeed::atom($nickname, $last_update, 10, $type, $nocache, true);
+               echo ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true);
                exit();
        }
 }