2018-02-09 04:49:49 +01:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2020-07-17 06:40:20 +02:00
|
|
|
use Friendica\Protocol\Feed as ProtocolFeed;
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*
|
2018-09-16 01:28:38 +02:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-02-09 04:49:49 +01:00
|
|
|
*/
|
|
|
|
class Feed extends BaseModule
|
|
|
|
{
|
2021-11-20 15:38:03 +01:00
|
|
|
protected function content(array $request = []): string
|
2018-02-09 04:49:49 +01:00
|
|
|
{
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = DI::app();
|
2018-02-09 04:49:49 +01:00
|
|
|
|
2019-10-15 15:20:32 +02:00
|
|
|
$last_update = $_GET['last_update'] ?? '';
|
2018-11-30 15:06:22 +01:00
|
|
|
$nocache = !empty($_GET['nocache']) && local_user();
|
2018-02-09 04:49:49 +01:00
|
|
|
|
|
|
|
$type = null;
|
2019-05-01 21:29:04 +02:00
|
|
|
// @TODO: Replace with parameter from router
|
2021-07-25 17:23:37 +02:00
|
|
|
if (DI::args()->getArgc() > 2) {
|
|
|
|
$type = DI::args()->getArgv()[2];
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'posts':
|
|
|
|
case 'comments':
|
|
|
|
case 'activity':
|
2018-12-17 04:58:43 +01:00
|
|
|
// Correct type names, no change needed
|
2018-02-09 04:49:49 +01:00
|
|
|
break;
|
|
|
|
case 'replies':
|
|
|
|
$type = 'comments';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$type = 'posts';
|
|
|
|
}
|
|
|
|
|
2018-12-17 04:58:43 +01:00
|
|
|
header("Content-type: application/atom+xml; charset=utf-8");
|
2021-11-14 23:19:25 +01:00
|
|
|
echo ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true);
|
2018-12-17 04:58:43 +01:00
|
|
|
exit();
|
2018-02-09 04:49:49 +01:00
|
|
|
}
|
|
|
|
}
|