]> git.mxchange.org Git - friendica.git/blob - src/Module/Item/Follow.php
Merge pull request #9901 from annando/post-thread-user
[friendica.git] / src / Module / Item / Follow.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\Item;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Session;
26 use Friendica\Core\System;
27 use Friendica\DI;
28 use Friendica\Model\Item;
29 use Friendica\Model\Post;
30 use Friendica\Network\HTTPException;
31
32 /**
33  * Module for following threads
34  */
35 class Follow extends BaseModule
36 {
37         public static function rawContent(array $parameters = [])
38         {
39                 $l10n = DI::l10n();
40
41                 if (!Session::isAuthenticated()) {
42                         throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
43                 }
44
45                 if (empty($parameters['id'])) {
46                         throw new HTTPException\BadRequestException();
47                 }
48
49                 $itemId = intval($parameters['id']);
50
51                 if (!Item::performActivity($itemId, 'follow', local_user())) {
52                         throw new HTTPException\BadRequestException($l10n->t('Unable to follow this item.'));
53                 }
54
55                 // See if we've been passed a return path to redirect to
56                 $return_path = $_REQUEST['return'] ?? '';
57                 if (!empty($return_path)) {
58                         $rand = '_=' . time();
59                         if (strpos($return_path, '?')) {
60                                 $rand = "&$rand";
61                         } else {
62                                 $rand = "?$rand";
63                         }
64
65                         DI::baseUrl()->redirect($return_path . $rand);
66                 }
67
68                 $return = [
69                         'status' => 'ok',
70                         'item_id' => $itemId,
71                         'verb' => 'follow',
72                         'state' => 1
73                 ];
74
75                 System::jsonExit($return);
76         }
77 }