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