]> git.mxchange.org Git - friendica.git/blob - src/Module/Item/Star.php
Merge remote-tracking branch 'upstream/develop' into inbox-gsid
[friendica.git] / src / Module / Item / Star.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Item;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Item;
29 use Friendica\Model\Post;
30 use Friendica\Network\HTTPException;
31
32 /**
33  * Toggle starred items
34  */
35 class Star extends BaseModule
36 {
37         protected function rawContent(array $request = [])
38         {
39                 $l10n = DI::l10n();
40
41                 if (!DI::userSession()->isAuthenticated()) {
42                         throw new HttpException\ForbiddenException($l10n->t('Access denied.'));
43                 }
44
45                 if (empty($this->parameters['id'])) {
46                         throw new HTTPException\BadRequestException();
47                 }
48
49                 $itemId = intval($this->parameters['id']);
50
51
52                 $item = Post::selectFirstForUser(DI::userSession()->getLocalUserId(), ['uid', 'uri-id', 'starred'], ['uid' => [0, DI::userSession()->getLocalUserId()], 'id' => $itemId]);
53                 if (empty($item)) {
54                         throw new HTTPException\NotFoundException();
55                 }
56
57                 if ($item['uid'] == 0) {
58                         $stored = Item::storeForUserByUriId($item['uri-id'], DI::userSession()->getLocalUserId(), ['post-reason' => Item::PR_ACTIVITY]);
59                         if (!empty($stored)) {
60                                 $item = Post::selectFirst(['starred'], ['id' => $stored]);
61                                 if (!DBA::isResult($item)) {
62                                         throw new HTTPException\NotFoundException();
63                                 }
64                                 $itemId = $stored;
65                         } else {
66                                 throw new HTTPException\NotFoundException();
67                         }
68                 }
69
70                 $starred = !(bool)$item['starred'];
71
72                 Item::update(['starred' => $starred], ['id' => $itemId]);
73
74                 // See if we've been passed a return path to redirect to
75                 $return_path = $_REQUEST['return'] ?? '';
76                 if (!empty($return_path)) {
77                         $rand = '_=' . time();
78                         if (strpos($return_path, '?')) {
79                                 $rand = "&$rand";
80                         } else {
81                                 $rand = "?$rand";
82                         }
83
84                         DI::baseUrl()->redirect($return_path . $rand);
85                 }
86
87                 $return = [
88                         'status'  => 'ok',
89                         'item_id' => $itemId,
90                         'verb'    => 'star',
91                         'state'   => (int)$starred,
92                 ];
93
94                 System::jsonExit($return);
95         }
96 }