X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FFeed.php;h=f4a671c055b1a2120e11e7da1578d624a282e5f4;hb=c18bda9397d0ea9d68ea7a81e6292459317fdbf5;hp=58140d835b33e74a558b673f2dd6e9e56caef11b;hpb=03038e7a3bb74bdab497d26b7f829a5c3036d1c2;p=friendica.git diff --git a/src/Module/Feed.php b/src/Module/Feed.php index 58140d835b..f4a671c055 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -1,10 +1,29 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; use Friendica\DI; -use Friendica\Protocol\OStatus; +use Friendica\Protocol\Feed as ProtocolFeed; /** * Provides public Atom feeds @@ -18,28 +37,21 @@ use Friendica\Protocol\OStatus; * * The nocache GET parameter is provided mainly for debug purposes, requires auth * - * @brief Provides public Atom feeds - * * @author Hypolite Petovan */ 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) { @@ -55,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 OStatus::feed($nickname, $last_update, 10, $type, $nocache, true); + echo ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true); exit(); } }