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