93 lines
2.9 KiB
PHP
93 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Retrieve user avatar by nickname action class.
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category Action
|
|
* @package StatusNet
|
|
* @author Evan Prodromou <evan@status.net>
|
|
* @author Robin Millette <millette@status.net>
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
* @link http://status.net/
|
|
*
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
/**
|
|
* Retrieve user avatar by nickname action class.
|
|
*
|
|
* @category Action
|
|
* @package GNUsocial
|
|
* @author Evan Prodromou <evan@status.net>
|
|
* @author Robin Millette <millette@status.net>
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
* @link http://www.gnu.org/software/social/
|
|
*/
|
|
class AvatarbynicknameAction extends Action
|
|
{
|
|
/**
|
|
* Class handler.
|
|
*
|
|
* @param array $args query arguments
|
|
*
|
|
* @return boolean false if nickname or user isn't found
|
|
*/
|
|
protected function handle()
|
|
{
|
|
parent::handle();
|
|
$nickname = $this->trimmed('nickname');
|
|
if (!$nickname) {
|
|
// TRANS: Client error displayed trying to get an avatar without providing a nickname.
|
|
$this->clientError(_('No nickname.'));
|
|
}
|
|
$size = $this->trimmed('size') ?: 'original';
|
|
|
|
$user = User::getKV('nickname', $nickname);
|
|
if (!$user) {
|
|
// TRANS: Client error displayed trying to get an avatar for a non-existing user.
|
|
$this->clientError(_('No such user.'));
|
|
}
|
|
$profile = $user->getProfile();
|
|
if (!$profile) {
|
|
// TRANS: Error message displayed when referring to a user without a profile.
|
|
$this->clientError(_('User has no profile.'));
|
|
}
|
|
|
|
if ($size === 'original') {
|
|
try {
|
|
$avatar = Avatar::getUploaded($profile);
|
|
$url = $avatar->displayUrl();
|
|
} catch (NoAvatarException $e) {
|
|
$url = Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
|
}
|
|
} else {
|
|
$url = $profile->avatarUrl($size);
|
|
}
|
|
|
|
common_redirect($url, 302);
|
|
}
|
|
|
|
function isReadOnly($args)
|
|
{
|
|
return true;
|
|
}
|
|
}
|