2018-02-09 03:49:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
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
|
|
|
|
*
|
2018-09-15 23:28:38 +00:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-09 03:49:49 +00:00
|
|
|
*/
|
|
|
|
class Feed extends BaseModule
|
|
|
|
{
|
2019-11-05 20:22:54 +00:00
|
|
|
public static function content($parameters)
|
2018-02-09 03:49:49 +00:00
|
|
|
{
|
|
|
|
$a = self::getApp();
|
|
|
|
|
2019-10-15 13:20:32 +00:00
|
|
|
$last_update = $_GET['last_update'] ?? '';
|
2018-11-30 14:06:22 +00:00
|
|
|
$nocache = !empty($_GET['nocache']) && local_user();
|
2018-02-09 03:49:49 +00:00
|
|
|
|
2019-05-01 19:29:04 +00:00
|
|
|
// @TODO: Replace with parameter from router
|
2018-02-09 03:49:49 +00:00
|
|
|
if ($a->argc < 2) {
|
2019-05-02 03:16:10 +00:00
|
|
|
throw new \Friendica\Network\HTTPException\BadRequestException();
|
2018-02-09 03:49:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$type = null;
|
2019-05-01 19:29:04 +00:00
|
|
|
// @TODO: Replace with parameter from router
|
2018-02-09 03:49:49 +00:00
|
|
|
if ($a->argc > 2) {
|
|
|
|
$type = $a->argv[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'posts':
|
|
|
|
case 'comments':
|
|
|
|
case 'activity':
|
2018-12-17 03:58:43 +00:00
|
|
|
// Correct type names, no change needed
|
2018-02-09 03:49:49 +00:00
|
|
|
break;
|
|
|
|
case 'replies':
|
|
|
|
$type = 'comments';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$type = 'posts';
|
|
|
|
}
|
|
|
|
|
2019-05-01 19:29:04 +00:00
|
|
|
// @TODO: Replace with parameter from router
|
2018-02-09 03:49:49 +00:00
|
|
|
$nickname = $a->argv[1];
|
2018-12-17 03:58:43 +00:00
|
|
|
header("Content-type: application/atom+xml; charset=utf-8");
|
2018-11-15 13:21:58 +00:00
|
|
|
echo OStatus::feed($nickname, $last_update, 10, $type, $nocache, true);
|
2018-12-17 03:58:43 +00:00
|
|
|
exit();
|
2018-02-09 03:49:49 +00:00
|
|
|
}
|
|
|
|
}
|