X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FFeed.php;h=ba2153762754c24d9f3e59a8437d87d8c7156c4c;hb=fd706cf9a7a0c4700838a1f00b12d8fd37323b7c;hp=5df68f223ed57b93a365f8f1cc8580e306111d70;hpb=306688057d64a156969eff79fff546c82d8e616a;p=friendica.git diff --git a/src/Module/Feed.php b/src/Module/Feed.php index 5df68f223e..ba21537627 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -3,7 +3,6 @@ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Core\System; use Friendica\Protocol\OStatus; /** @@ -24,18 +23,20 @@ use Friendica\Protocol\OStatus; */ class Feed extends BaseModule { - public static function content() + public static function content(array $parameters = []) { $a = self::getApp(); - $last_update = x($_GET, 'last_update') ? $_GET['last_update'] : ''; - $nocache = x($_GET, 'nocache') && local_user(); + $last_update = $_GET['last_update'] ?? ''; + $nocache = !empty($_GET['nocache']) && local_user(); + // @TODO: Replace with parameter from router if ($a->argc < 2) { - System::httpExit(400); + throw new \Friendica\Network\HTTPException\BadRequestException(); } $type = null; + // @TODO: Replace with parameter from router if ($a->argc > 2) { $type = $a->argv[2]; } @@ -44,6 +45,7 @@ class Feed extends BaseModule case 'posts': case 'comments': case 'activity': + // Correct type names, no change needed break; case 'replies': $type = 'comments'; @@ -52,9 +54,10 @@ class Feed extends BaseModule $type = 'posts'; } + // @TODO: Replace with parameter from router $nickname = $a->argv[1]; - header("Content-type: application/atom+xml"); - echo OStatus::feed($nickname, $last_update, 10, $type, $nocache); - killme(); + header("Content-type: application/atom+xml; charset=utf-8"); + echo OStatus::feed($nickname, $last_update, 10, $type, $nocache, true); + exit(); } }