3 * StatusNet, the distributed open-source microblogging tool
5 * Update the authenticating user's profile image
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Zach Copley <zach@status.net>
25 * @copyright 2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
35 * Updates the authenticating user's profile image. Note that this API method
36 * expects raw multipart data, not a URL to an image.
40 * @author Zach Copley <zach@status.net>
41 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
42 * @link http://status.net/
44 class ApiAccountUpdateProfileImageAction extends ApiAuthAction
46 protected $needPost = true;
51 * Check whether the credentials are valid and output the result
55 protected function handle()
59 // Workaround for PHP returning empty $_POST and $_FILES when POST
60 // length > post_max_size in php.ini
64 && ($_SERVER['CONTENT_LENGTH'] > 0)
66 // TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
67 // TRANS: %s is the number of bytes of the CONTENT_LENGTH.
68 $msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.',
69 'The server was unable to handle that much POST data (%s bytes) due to its current configuration.',
70 intval($_SERVER['CONTENT_LENGTH']));
71 $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
74 if (empty($this->user)) {
75 // TRANS: Client error displayed updating profile image without having a user object.
76 $this->clientError(_('No such user.'), 404);
80 $imagefile = ImageFile::fromUpload('image');
81 } catch (Exception $e) {
82 $this->clientError($e->getMessage());
85 $type = $imagefile->preferredType();
86 $filename = Avatar::filename(
88 image_type_to_extension($type),
90 'tmp'.common_timestamp()
93 $filepath = Avatar::path($filename);
95 $imagefile->copyTo($filepath);
97 $profile = $this->user->getProfile();
98 $profile->setOriginal($filename);
100 $twitter_user = $this->twitterUserArray($profile, true);
102 if ($this->format == 'xml') {
103 $this->initDocument('xml');
104 $this->showTwitterXmlUser($twitter_user, 'user', true);
105 $this->endDocument('xml');
106 } elseif ($this->format == 'json') {
107 $this->initDocument('json');
108 $this->showJsonObjects($twitter_user);
109 $this->endDocument('json');