]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Twitter/Statuses/Retweet.php
Reenable Twitter/Statuses tests
[friendica.git] / src / Module / Api / Twitter / Statuses / Retweet.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\Api\Twitter\Statuses;
23
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Core\Protocol;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Item;
29 use Friendica\Model\Post;
30 use Friendica\Module\BaseApi;
31 use Friendica\Network\HTTPException\BadRequestException;
32 use Friendica\Network\HTTPException\ForbiddenException;
33 use Friendica\Network\HTTPException\InternalServerErrorException;
34 use Friendica\Protocol\Diaspora;
35
36 /**
37  * Repeats a status.
38  *
39  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-retweet-id
40  */
41 class Retweet extends BaseApi
42 {
43         protected function post(array $request = [])
44         {
45                 self::checkAllowedScope(self::SCOPE_WRITE);
46                 $uid = self::getCurrentUserID();
47
48                 $id = $request['id'] ?? 0;
49
50                 if (empty($id)) {
51                         throw new BadRequestException('Item id not specified');
52                 }
53
54                 $fields = ['uri-id', 'network', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
55                 $item   = Post::selectFirst($fields, ['id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
56
57                 if (DBA::isResult($item) && !empty($item['body'])) {
58                         if (in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::TWITTER])) {
59                                 if (!Item::performActivity($id, 'announce', $uid)) {
60                                         throw new InternalServerErrorException();
61                                 }
62
63                                 $item_id = $id;
64                         } else {
65                                 $item_id = Diaspora::performReshare($item['uri-id'], $uid);
66                         }
67                 } else {
68                         throw new ForbiddenException();
69                 }
70
71                 $status_info = DI::twitterStatus()->createFromItemId($item_id, $uid)->toArray();
72
73                 DI::apiResponse()->exit('status', ['status' => $status_info], $this->parameters['extension'] ?? null);
74         }
75 }