]> git.mxchange.org Git - friendica.git/commitdiff
API: Description added at picture upload
authorMichael <heluecht@pirati.ca>
Tue, 25 Jul 2023 21:27:12 +0000 (21:27 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 25 Jul 2023 21:27:12 +0000 (21:27 +0000)
src/Module/Api/Mastodon/Media.php

index e26637601fefc7be061bcc34ef577746f33076d6..921ebdaf780dc25f38df24638a0d4bd2225153b6 100644 (file)
@@ -38,13 +38,20 @@ class Media extends BaseApi
                self::checkAllowedScope(self::SCOPE_WRITE);
                $uid = self::getCurrentUserID();
 
+               $request = $this->getRequest([
+                       'file'        => [], // The file to be attached, using multipart form data.
+                       'thumbnail'   => [], // The custom thumbnail of the media to be attached, using multipart form data.
+                       'description' => '', // A plain-text description of the media, for accessibility purposes.
+                       'focus'       => '', // Two floating points (x,y), comma-delimited ranging from -1.0 to 1.0
+               ], $request);
+
                Logger::info('Photo post', ['request' => $request, 'files' => $_FILES]);
 
                if (empty($_FILES['file'])) {
                        DI::mstdnError()->UnprocessableEntity();
                }
 
-               $media = Photo::upload($uid, $_FILES['file']);
+               $media = Photo::upload($uid, $_FILES['file'], '', null, null, '', '', $request['description']);
                if (empty($media)) {
                        DI::mstdnError()->UnprocessableEntity();
                }