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