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