]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Friendica/Activity.php
Merge pull request #12818 from HankG/mastodon-instance-v2-implementation
[friendica.git] / src / Module / Api / Friendica / Activity.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Api\Friendica;
23
24 use Friendica\DI;
25 use Friendica\Model\Item;
26 use Friendica\Model\Post;
27 use Friendica\Module\BaseApi;
28 use Friendica\Network\HTTPException\BadRequestException;
29
30 /**
31  * API endpoints:
32  * - /api/friendica/activity/like
33  * - /api/friendica/activity/dislike
34  * - /api/friendica/activity/attendyes
35  * - /api/friendica/activity/attendno
36  * - /api/friendica/activity/attendmaybe
37  * - /api/friendica/activity/unlike
38  * - /api/friendica/activity/undislike
39  * - /api/friendica/activity/unattendyes
40  * - /api/friendica/activity/unattendno
41  * - /api/friendica/activity/unattendmaybe
42  */
43 class Activity extends BaseApi
44 {
45         protected function post(array $request = [])
46         {
47                 self::checkAllowedScope(self::SCOPE_WRITE);
48                 $uid = self::getCurrentUserID();
49
50                 $request = $this->getRequest([
51                         'id' => 0, // Id of the post
52                 ], $request);
53
54                 $post = Post::selectFirst(['id'], ['uri-id' => $request['id'], 'uid' => [0, $uid]], ['order' => ['uid' => true]]);
55                 if (empty($post['id'])) {
56                         throw new BadRequestException('Item id not found');
57                 }
58
59                 $res = Item::performActivity($post['id'], $this->parameters['verb'], $uid);
60
61                 if ($res) {
62                         $status_info = DI::twitterStatus()->createFromUriId($request['id'], $uid)->toArray();
63                         $this->response->exit('status', ['status' => $status_info], $this->parameters['extension'] ?? null);
64                 } else {
65                         $this->response->error(500, 'Error adding activity', '', $this->parameters['extension'] ?? null);
66                 }
67         }
68 }