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