]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Statuses.php
Merge pull request #11292 from annando/api-visibility
[friendica.git] / src / Module / Api / Mastodon / Statuses.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\Api\Mastodon;
23
24 use Friendica\Content\Text\Markdown;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Model\Group;
31 use Friendica\Model\Item;
32 use Friendica\Model\Photo;
33 use Friendica\Model\Post;
34 use Friendica\Model\User;
35 use Friendica\Module\BaseApi;
36 use Friendica\Protocol\Activity;
37 use Friendica\Util\Images;
38
39 /**
40  * @see https://docs.joinmastodon.org/methods/statuses/
41  */
42 class Statuses extends BaseApi
43 {
44         protected function post(array $request = [])
45         {
46                 self::checkAllowedScope(self::SCOPE_WRITE);
47                 $uid = self::getCurrentUserID();
48
49                 $request = $this->getRequest([
50                         'status'         => '',    // Text content of the status. If media_ids is provided, this becomes optional. Attaching a poll is optional while status is provided.
51                         'media_ids'      => [],    // Array of Attachment ids to be attached as media. If provided, status becomes optional, and poll cannot be used.
52                         'poll'           => [],    // Poll data. If provided, media_ids cannot be used, and poll[expires_in] must be provided.
53                         'in_reply_to_id' => 0,     // ID of the status being replied to, if status is a reply
54                         'sensitive'      => false, // Mark status and attached media as sensitive?
55                         'spoiler_text'   => '',    // Text to be shown as a warning or subject before the actual content. Statuses are generally collapsed behind this field.
56                         'visibility'     => '',    // Visibility of the posted status. One of: "public", "unlisted", "private" or "direct".
57                         'scheduled_at'   => '',    // ISO 8601 Datetime at which to schedule a status. Providing this paramter will cause ScheduledStatus to be returned instead of Status. Must be at least 5 minutes in the future.
58                         'language'       => '',    // ISO 639 language code for this status.
59                 ], $request);
60
61                 $owner = User::getOwnerDataById($uid);
62
63                 // The imput is defined as text. So we can use Markdown for some enhancements
64                 $body = Markdown::toBBCode($request['status']);
65
66                 $item               = [];
67                 $item['network']    = Protocol::DFRN;
68                 $item['uid']        = $uid;
69                 $item['verb']       = Activity::POST;
70                 $item['contact-id'] = $owner['id'];
71                 $item['author-id']  = $item['owner-id'] = Contact::getPublicIdByUserId($uid);
72                 $item['title']      = $request['spoiler_text'];
73                 $item['body']       = $body;
74
75                 if (!empty(self::getCurrentApplication()['name'])) {
76                         $item['app'] = self::getCurrentApplication()['name'];
77                 }
78
79                 if (empty($item['app'])) {
80                         $item['app'] = 'API';
81                 }
82
83                 switch ($request['visibility']) {
84                         case 'public':
85                                 $item['allow_cid'] = '';
86                                 $item['allow_gid'] = '';
87                                 $item['deny_cid']  = '';
88                                 $item['deny_gid']  = '';
89                                 $item['private']   = Item::PUBLIC;
90                                 break;
91                         case 'unlisted':
92                                 $item['allow_cid'] = '';
93                                 $item['allow_gid'] = '';
94                                 $item['deny_cid']  = '';
95                                 $item['deny_gid']  = '';
96                                 $item['private']   = Item::UNLISTED;
97                                 break;
98                         case 'private':
99                                 if (!empty($owner['allow_cid'] . $owner['allow_gid'] . $owner['deny_cid'] . $owner['deny_gid'])) {
100                                         $item['allow_cid'] = $owner['allow_cid'];
101                                         $item['allow_gid'] = $owner['allow_gid'];
102                                         $item['deny_cid']  = $owner['deny_cid'];
103                                         $item['deny_gid']  = $owner['deny_gid'];
104                                 } else {
105                                         $item['allow_cid'] = '';
106                                         $item['allow_gid'] = '<' . Group::FOLLOWERS . '>';
107                                         $item['deny_cid']  = '';
108                                         $item['deny_gid']  = '';
109                                 }
110                                 $item['private'] = Item::PRIVATE;
111                                 break;
112                         case 'direct':
113                                 // Direct messages are currently unsupported
114                                 DI::mstdnError()->InternalError('Direct messages are currently unsupported');
115                                 break;
116                         default:
117                                 if (is_numeric($request['visibility']) && Group::exists($request['visibility'], $uid)) {
118                                         $item['allow_cid'] = '';
119                                         $item['allow_gid'] = '<' . $request['visibility'] . '>';
120                                         $item['deny_cid']  = '';
121                                         $item['deny_gid']  = '';
122                                 } else {
123                                         $item['allow_cid'] = $owner['allow_cid'];
124                                         $item['allow_gid'] = $owner['allow_gid'];
125                                         $item['deny_cid']  = $owner['deny_cid'];
126                                         $item['deny_gid']  = $owner['deny_gid'];
127                                 }
128
129                                 if (!empty($item['allow_cid'] . $item['allow_gid'] . $item['deny_cid'] . $item['deny_gid'])) {
130                                         $item['private'] = Item::PRIVATE;
131                                 } elseif (DI::pConfig()->get($uid, 'system', 'unlisted')) {
132                                         $item['private'] = Item::UNLISTED;
133                                 } else {
134                                         $item['private'] = Item::PUBLIC;
135                                 }
136                                 break;
137                 }
138
139                 if (!empty($request['language'])) {
140                         $item['language'] = json_encode([$request['language'] => 1]);
141                 }
142
143                 if ($request['in_reply_to_id']) {
144                         $parent = Post::selectFirst(['uri'], ['uri-id' => $request['in_reply_to_id'], 'uid' => [0, $uid]]);
145                         $item['thr-parent']  = $parent['uri'];
146                         $item['gravity']     = GRAVITY_COMMENT;
147                         $item['object-type'] = Activity\ObjectType::COMMENT;
148                 } else {
149                         self::checkThrottleLimit();
150
151                         $item['gravity']     = GRAVITY_PARENT;
152                         $item['object-type'] = Activity\ObjectType::NOTE;
153                 }
154
155                 $item = DI::contentItem()->expandTags($item);
156
157                 if (!empty($request['media_ids'])) {
158                         $item['object-type'] = Activity\ObjectType::IMAGE;
159                         $item['post-type']   = Item::PT_IMAGE;
160                         $item['attachments'] = [];
161
162                         foreach ($request['media_ids'] as $id) {
163                                 $media = DBA::toArray(DBA::p("SELECT `resource-id`, `scale`, `type`, `desc`, `filename`, `datasize`, `width`, `height` FROM `photo`
164                                                 WHERE `resource-id` IN (SELECT `resource-id` FROM `photo` WHERE `id` = ?) AND `photo`.`uid` = ?
165                                                 ORDER BY `photo`.`width` DESC LIMIT 2", $id, $uid));
166
167                                 if (empty($media)) {
168                                         continue;
169                                 }
170
171                                 Photo::setPermissionForRessource($media[0]['resource-id'], $uid, $item['allow_cid'], $item['allow_gid'], $item['deny_cid'], $item['deny_gid']);
172
173                                 $ressources[] = $media[0]['resource-id'];
174                                 $phototypes = Images::supportedTypes();
175                                 $ext = $phototypes[$media[0]['type']];
176
177                                 $attachment = ['type' => Post\Media::IMAGE, 'mimetype' => $media[0]['type'],
178                                         'url' => DI::baseUrl() . '/photo/' . $media[0]['resource-id'] . '-' . $media[0]['scale'] . '.' . $ext,
179                                         'size' => $media[0]['datasize'],
180                                         'name' => $media[0]['filename'] ?: $media[0]['resource-id'],
181                                         'description' => $media[0]['desc'] ?? '',
182                                         'width' => $media[0]['width'],
183                                         'height' => $media[0]['height']];
184
185                                 if (count($media) > 1) {
186                                         $attachment['preview'] = DI::baseUrl() . '/photo/' . $media[1]['resource-id'] . '-' . $media[1]['scale'] . '.' . $ext;
187                                         $attachment['preview-width'] = $media[1]['width'];
188                                         $attachment['preview-height'] = $media[1]['height'];
189                                 }
190                                 $item['attachments'][] = $attachment;
191                         }
192                 }
193
194                 if (!empty($request['scheduled_at'])) {
195                         $item['guid'] = Item::guid($item, true);
196                         $item['uri'] = Item::newURI($item['uid'], $item['guid']);
197                         $id = Post\Delayed::add($item['uri'], $item, PRIORITY_HIGH, Post\Delayed::PREPARED, $request['scheduled_at']);
198                         if (empty($id)) {
199                                 DI::mstdnError()->InternalError();
200                         }
201                         System::jsonExit(DI::mstdnScheduledStatus()->createFromDelayedPostId($id, $uid)->toArray());
202                 }
203
204                 $id = Item::insert($item, true);
205                 if (!empty($id)) {
206                         $item = Post::selectFirst(['uri-id'], ['id' => $id]);
207                         if (!empty($item['uri-id'])) {
208                                 System::jsonExit(DI::mstdnStatus()->createFromUriId($item['uri-id'], $uid));
209                         }
210                 }
211
212                 DI::mstdnError()->InternalError();
213         }
214
215         protected function delete(array $request = [])
216         {
217                 self::checkAllowedScope(self::SCOPE_READ);
218                 $uid = self::getCurrentUserID();
219
220                 if (empty($this->parameters['id'])) {
221                         DI::mstdnError()->UnprocessableEntity();
222                 }
223
224                 $item = Post::selectFirstForUser($uid, ['id'], ['uri-id' => $this->parameters['id'], 'uid' => $uid]);
225                 if (empty($item['id'])) {
226                         DI::mstdnError()->RecordNotFound();
227                 }
228
229                 if (!Item::markForDeletionById($item['id'])) {
230                         DI::mstdnError()->RecordNotFound();
231                 }
232
233                 System::jsonExit([]);
234         }
235
236         /**
237          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
238          */
239         protected function rawContent(array $request = [])
240         {
241                 $uid = self::getCurrentUserID();
242
243                 if (empty($this->parameters['id'])) {
244                         DI::mstdnError()->UnprocessableEntity();
245                 }
246
247                 System::jsonExit(DI::mstdnStatus()->createFromUriId($this->parameters['id'], $uid));
248         }
249 }