X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FFeed.php;h=0ccffbb96b38bbb7e7ada2f11ea321946fb0f1e9;hb=0031b4e18cff5ded33c5f8599d6d93ea090986ff;hp=15b2026e2c246559668a4e30df495e8a811280d0;hpb=e17db489eee549f47c39c9b5494063476ed4aeb0;p=friendica.git diff --git a/src/Module/Feed.php b/src/Module/Feed.php index 15b2026e2c..0ccffbb96b 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -1,9 +1,29 @@ . + * + */ namespace Friendica\Module; use Friendica\BaseModule; -use Friendica\Protocol\OStatus; +use Friendica\DI; +use Friendica\Protocol\Feed as ProtocolFeed; /** * Provides public Atom feeds @@ -17,17 +37,15 @@ 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() + public static function content(array $parameters = []) { - $a = self::getApp(); + $a = DI::app(); - $last_update = defaults($_GET, 'last_update', ''); + $last_update = $_GET['last_update'] ?? ''; $nocache = !empty($_GET['nocache']) && local_user(); // @TODO: Replace with parameter from router @@ -57,7 +75,7 @@ class Feed extends BaseModule // @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($nickname, $last_update, 10, $type, $nocache, true); exit(); } }