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