1de3f186d7
- Adding Friendica\DI class for getting dynamic classes - Replacing BaseObject::getApp() with this class
65 lines
1.4 KiB
PHP
65 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Module;
|
|
|
|
use Friendica\BaseModule;
|
|
use Friendica\DI;
|
|
use Friendica\Protocol\OStatus;
|
|
|
|
/**
|
|
* Provides public Atom feeds
|
|
*
|
|
* Currently supported:
|
|
* - /feed/[nickname]/ => posts
|
|
* - /feed/[nickname]/posts => posts
|
|
* - /feed/[nickname]/comments => comments
|
|
* - /feed/[nickname]/replies => comments
|
|
* - /feed/[nickname]/activity => activity
|
|
*
|
|
* The nocache GET parameter is provided mainly for debug purposes, requires auth
|
|
*
|
|
* @brief Provides public Atom feeds
|
|
*
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
|
*/
|
|
class Feed extends BaseModule
|
|
{
|
|
public static function content(array $parameters = [])
|
|
{
|
|
$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];
|
|
}
|
|
|
|
switch ($type) {
|
|
case 'posts':
|
|
case 'comments':
|
|
case 'activity':
|
|
// Correct type names, no change needed
|
|
break;
|
|
case 'replies':
|
|
$type = 'comments';
|
|
break;
|
|
default:
|
|
$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);
|
|
exit();
|
|
}
|
|
}
|