]> git.mxchange.org Git - friendica.git/blob - src/Module/Item/Activity.php
Make PHP-CS happy
[friendica.git] / src / Module / Item / Activity.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\Protocol;
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 use Friendica\Protocol\Diaspora;
32
33 /**
34  * Performs an activity (like, dislike, announce, attendyes, attendno, attendmaybe)
35  * and optionally redirects to a return path
36  */
37 class Activity extends BaseModule
38 {
39         protected function rawContent(array $request = [])
40         {
41                 if (!DI::userSession()->isAuthenticated()) {
42                         throw new HTTPException\ForbiddenException();
43                 }
44
45                 if (empty($this->parameters['id']) || empty($this->parameters['verb'])) {
46                         throw new HTTPException\BadRequestException();
47                 }
48
49                 $verb = $this->parameters['verb'];
50                 $itemId =  $this->parameters['id'];
51
52                 if (in_array($verb, ['announce', 'unannounce'])) {
53                         $item = Post::selectFirst(['network', 'uri-id'], ['id' => $itemId, 'uid' => [DI::userSession()->getLocalUserId(), 0]]);
54                         if ($item['network'] == Protocol::DIASPORA) {
55                                 Diaspora::performReshare($item['uri-id'], DI::userSession()->getLocalUserId());
56                         }
57                 }
58
59                 if (!Item::performActivity($itemId, $verb, DI::userSession()->getLocalUserId())) {
60                         throw new HTTPException\BadRequestException();
61                 }
62
63                 // See if we've been passed a return path to redirect to
64                 $return_path = $_REQUEST['return'] ?? '';
65                 if (!empty($return_path)) {
66                         $rand = '_=' . time();
67                         if (strpos($return_path, '?')) {
68                                 $rand = "&$rand";
69                         } else {
70                                 $rand = "?$rand";
71                         }
72
73                         DI::baseUrl()->redirect($return_path . $rand);
74                 }
75
76                 $return = [
77                         'status' => 'ok',
78                         'item_id' => $itemId,
79                         'verb' => $verb,
80                         'state' => 1,
81                 ];
82
83                 System::jsonExit($return);
84         }
85 }