2009-11-05 05:00:26 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Update the authenticating user's profile image
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the authenticating user's profile image. Note that this API method
|
|
|
|
* expects raw multipart data, not a URL to an image.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class ApiAccountUpdateProfileImageAction extends ApiAuthAction
|
|
|
|
{
|
2013-10-15 01:54:10 +01:00
|
|
|
protected $needPost = true;
|
2009-11-05 05:00:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* Check whether the credentials are valid and output the result
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2013-10-15 01:54:10 +01:00
|
|
|
protected function handle()
|
2009-11-05 05:00:26 +00:00
|
|
|
{
|
2013-10-15 01:54:10 +01:00
|
|
|
parent::handle();
|
2009-11-05 05:00:26 +00:00
|
|
|
|
2009-11-07 01:21:08 +00:00
|
|
|
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
|
|
|
// length > post_max_size in php.ini
|
|
|
|
|
|
|
|
if (empty($_FILES)
|
|
|
|
&& empty($_POST)
|
|
|
|
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
|
|
|
) {
|
2010-10-21 12:20:21 +01:00
|
|
|
// 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']));
|
2009-11-07 01:21:08 +00:00
|
|
|
$this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
2009-11-05 05:00:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 01:21:08 +00:00
|
|
|
if (empty($this->user)) {
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Client error displayed updating profile image without having a user object.
|
2013-10-15 01:54:10 +01:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2009-11-05 05:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$imagefile = ImageFile::fromUpload('image');
|
|
|
|
} catch (Exception $e) {
|
2013-10-15 01:54:10 +01:00
|
|
|
$this->clientError($e->getMessage());
|
2009-11-05 05:00:26 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 20:22:47 +00:00
|
|
|
$type = $imagefile->preferredType();
|
2009-11-05 05:00:26 +00:00
|
|
|
$filename = Avatar::filename(
|
|
|
|
$user->id,
|
2011-01-24 20:22:47 +00:00
|
|
|
image_type_to_extension($type),
|
2009-11-05 05:00:26 +00:00
|
|
|
null,
|
|
|
|
'tmp'.common_timestamp()
|
|
|
|
);
|
|
|
|
|
|
|
|
$filepath = Avatar::path($filename);
|
|
|
|
|
2011-01-24 20:22:47 +00:00
|
|
|
$imagefile->copyTo($filepath);
|
2009-11-05 05:00:26 +00:00
|
|
|
|
|
|
|
$profile = $this->user->getProfile();
|
|
|
|
$profile->setOriginal($filename);
|
|
|
|
|
2009-11-10 07:56:02 +00:00
|
|
|
$twitter_user = $this->twitterUserArray($profile, true);
|
2009-11-05 05:00:26 +00:00
|
|
|
|
|
|
|
if ($this->format == 'xml') {
|
|
|
|
$this->initDocument('xml');
|
2011-01-24 20:41:30 +00:00
|
|
|
$this->showTwitterXmlUser($twitter_user, 'user', true);
|
2009-11-05 05:00:26 +00:00
|
|
|
$this->endDocument('xml');
|
|
|
|
} elseif ($this->format == 'json') {
|
|
|
|
$this->initDocument('json');
|
|
|
|
$this->showJsonObjects($twitter_user);
|
|
|
|
$this->endDocument('json');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|