X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapistatusesupdate.php;h=09663ac7c2595b2220783fa14135d9c612332e36;hb=2c5cba28b6a8e13a58fe7584835340aa9779b146;hp=6b876c8f117a045b33f70d1a910443c63d5a1a91;hpb=8b585ff64771f823d12696947784f0b5bd693795;p=quix0rs-gnu-social.git diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 6b876c8f11..09663ac7c2 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -152,6 +152,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction var $in_reply_to_status_id = null; var $lat = null; var $lon = null; + var $media_ids = array(); // file_id in the keys /** * Take arguments for running @@ -167,6 +168,19 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->status = $this->trimmed('status'); $this->lat = $this->trimmed('lat'); $this->lon = $this->trimmed('long'); + $matches = array(); + common_debug(get_called_class().': media_ids=='._ve($this->trimmed('media_ids'))); + if (preg_match_all('/\d+/', $this->trimmed('media_ids'), $matches) !== false) { + foreach (array_unique($matches[0]) as $match) { + try { + $this->media_ids[$match] = File::getByID($match); + } catch (EmptyIdException $e) { + // got a zero from the client, at least Twidere does this on occasion + } catch (NoResultException $e) { + // File ID was not found. Do we abort and report to the client? + } + } + } $this->in_reply_to_status_id = intval($this->trimmed('in_reply_to_status_id')); @@ -211,7 +225,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->clientError(_('No such user.'), 404); } - /* Do not call shortenlinks until the whole notice has been build */ + /* Do not call shortenLinks until the whole notice has been build */ // Check for commands @@ -244,17 +258,24 @@ class ApiStatusesUpdateAction extends ApiAuthAction } } + foreach(array_keys($this->media_ids) as $media_id) { + // FIXME: Validation on this... Worst case is that if someone sends bad media_ids then + // we'll fill the notice with non-working links, so no real harm, done, but let's fix. + // The File objects are in the array, so we could get URLs from them directly. + $this->status .= ' ' . common_local_url('attachment', array('attachment' => $media_id)); + } + $upload = null; try { $upload = MediaFile::fromUpload('media', $this->scoped); $this->status .= ' ' . $upload->shortUrl(); - /* Do not call shortenlinks until the whole notice has been build */ + /* Do not call shortenLinks until the whole notice has been build */ } catch (NoUploadedMediaException $e) { // There was no uploaded media for us today. } /* Do call shortenlinks here & check notice length since notice is about to be saved & sent */ - $status_shortened = $this->auth_user->shortenlinks($this->status); + $status_shortened = $this->auth_user->shortenLinks($this->status); if (Notice::contentTooLong($status_shortened)) { if ($upload instanceof MediaFile) {