]> git.mxchange.org Git - friendica.git/blob - src/Module/Feed.php
1465e10e7196a349ecf999924b20c8a10d2fa001
[friendica.git] / src / Module / Feed.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Session;
26 use Friendica\Core\System;
27 use Friendica\DI;
28 use Friendica\Protocol\Feed as ProtocolFeed;
29 use Friendica\Network\HTTPException;
30
31 /**
32  * Provides public Atom feeds
33  *
34  * Currently supported:
35  * - /feed/[nickname]/ => posts
36  * - /feed/[nickname]/posts => posts
37  * - /feed/[nickname]/comments => comments
38  * - /feed/[nickname]/replies => comments
39  * - /feed/[nickname]/activity => activity
40  *
41  * The nocache GET parameter is provided mainly for debug purposes, requires auth
42  *
43  * @author Hypolite Petovan <hypolite@mrpetovan.com>
44  */
45 class Feed extends BaseModule
46 {
47         protected function rawContent(array $request = [])
48         {
49                 $last_update = $this->getRequestValue($request, 'last_update', '');
50                 $nocache     = !empty($request['nocache']) && Session::getLocalUser();
51
52                 $type = null;
53                 // @TODO: Replace with parameter from router
54                 if (DI::args()->getArgc() > 2) {
55                         $type = DI::args()->getArgv()[2];
56                 }
57
58                 switch ($type) {
59                         case 'posts':
60                         case 'comments':
61                         case 'activity':
62                                 // Correct type names, no change needed
63                                 break;
64                         case 'replies':
65                                 $type = 'comments';
66                                 break;
67                         default:
68                                 $type = 'posts';
69                 }
70
71                 $feed = ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true);
72                 if (empty($feed)) {
73                         throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
74                 }
75
76                 System::httpExit($feed, Response::TYPE_ATOM);
77         }
78 }