X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapimediaupload.php;h=c2b4a47b9a277d799acd799d5d1e2c4a597f22fb;hb=e2d85a39e7f82ceef2cb2fe66a3a9a62ac9a363e;hp=54d7fda68fac0c471fadd8f36b724531a477eea4;hpb=8aa9c271dffe6ec6766b94486c0635c9db588db7;p=quix0rs-gnu-social.git diff --git a/actions/apimediaupload.php b/actions/apimediaupload.php index 54d7fda68f..c2b4a47b9a 100644 --- a/actions/apimediaupload.php +++ b/actions/apimediaupload.php @@ -26,16 +26,11 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { - exit(1); -} - -require_once INSTALLDIR . '/lib/apiauth.php'; -require_once INSTALLDIR . '/lib/mediafile.php'; +if (!defined('GNUSOCIAL')) { exit(1); } /** * Upload an image via the API. Returns a shortened URL for the image - * to the user. + * to the user. Apparently modelled after a former Twitpic API. * * @category API * @package StatusNet @@ -43,33 +38,21 @@ require_once INSTALLDIR . '/lib/mediafile.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class ApiMediaUploadAction extends ApiAuthAction { + protected $needPost = true; + /** * Handle the request * * Grab the file from the 'media' param, then store, and shorten * * @todo Upload throttle! - * - * @param array $args $_REQUEST data (unused) - * * @return void */ - - function handle($args) + protected function handle() { - parent::handle($args); - - if ($_SERVER['REQUEST_METHOD'] != 'POST') { - $this->clientError( - // TRANS: Client error. POST is a HTTP command. It should not be translated. - _('This method requires a POST.'), - 400, $this->format - ); - return; - } + parent::handle(); // Workaround for PHP returning empty $_POST and $_FILES when POST // length > post_max_size in php.ini @@ -78,44 +61,41 @@ class ApiMediaUploadAction extends ApiAuthAction && empty($_POST) && ($_SERVER['CONTENT_LENGTH'] > 0) ) { - $msg = _('The server was unable to handle that much POST ' . - 'data (%s bytes) due to its current configuration.'); - + // TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. + // TRANS: %s is the number of bytes of the CONTENT_LENGTH. + $msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.', + 'The server was unable to handle that much POST data (%s bytes) due to its current configuration.', + intval($_SERVER['CONTENT_LENGTH'])); $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); - return; } - $upload = null; - - try { - $upload = MediaFile::fromUpload('media', $this->auth_user); - } catch (Exception $e) { - $this->clientError($e->getMessage(), $e->getCode()); - return; - } + // we could catch "NoUploadedMediaException" as "no media uploaded", but here we _always_ want an upload + $upload = MediaFile::fromUpload('media', $this->scoped); + + // Thumbnails will be generated/cached on demand when accessed (such as with /attachment/:id/thumbnail) - if (isset($upload)) { - $this->showResponse($upload); - } else { - $this->clientError(_('Upload failed.')); - return; - } + $this->showResponse($upload); } /** * Show a Twitpic-like response with the ID of the media file * and a (hopefully) shortened URL for it. * - * @param File $upload the uploaded file + * @param MediaFile $upload the uploaded file * * @return void */ - function showResponse($upload) + function showResponse(MediaFile $upload) { $this->initDocument(); - $this->elementStart('rsp', array('stat' => 'ok')); + $this->elementStart('rsp', array('stat' => 'ok', 'xmlns:atom'=>Activity::ATOM)); $this->element('mediaid', null, $upload->fileRecord->id); $this->element('mediaurl', null, $upload->shortUrl()); + + $enclosure = $upload->fileRecord->getEnclosure(); + $this->element('atom:link', array('rel' => 'enclosure', + 'href' => $enclosure->url, + 'type' => $enclosure->mimetype)); $this->elementEnd('rsp'); $this->endDocument(); } @@ -124,9 +104,8 @@ class ApiMediaUploadAction extends ApiAuthAction * Overrided clientError to show a more Twitpic-like error * * @param String $msg an error message - * */ - function clientError($msg) + function clientError($msg, $code=400, $format=null) { $this->initDocument(); $this->elementStart('rsp', array('stat' => 'fail')); @@ -137,6 +116,6 @@ class ApiMediaUploadAction extends ApiAuthAction $this->element('err', $errAttr, null); $this->elementEnd('rsp'); $this->endDocument(); + exit; } - }