]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/avatarbynickname.php
Remove more contractions
[quix0rs-gnu-social.git] / actions / avatarbynickname.php
1 <?php
2 /**
3  * Retrieve user avatar by nickname action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Retrieve user avatar by nickname action class.
37  *
38  * @category Action
39  * @package  StatusNet
40  * @author   Evan Prodromou <evan@status.net>
41  * @author   Robin Millette <millette@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43  * @link     http://status.net/
44  */
45 class AvatarbynicknameAction extends Action
46 {
47     /**
48      * Class handler.
49      *
50      * @param array $args query arguments
51      * 
52      * @return boolean false if nickname or user is not found
53      */
54     function handle($args)
55     {
56         parent::handle($args);
57         $nickname = $this->trimmed('nickname');
58         if (!$nickname) {
59             $this->clientError(_('No nickname.'));
60             return;
61         }
62         $size = $this->trimmed('size');
63         if (!$size) {
64             $this->clientError(_('No size.'));
65             return;
66         }
67         $size = strtolower($size);
68         if (!in_array($size, array('original', '96', '48', '24'))) {
69             $this->clientError(_('Invalid size.'));
70             return;
71         }
72
73         $user = User::staticGet('nickname', $nickname);
74         if (!$user) {
75             $this->clientError(_('No such user.'));
76             return;
77         }
78         $profile = $user->getProfile();
79         if (!$profile) {
80             $this->clientError(_('User has no profile.'));
81             return;
82         }
83         if ($size == 'original') {
84             $avatar = $profile->getOriginal();
85         } else {
86             $avatar = $profile->getAvatar($size+0);
87         }
88
89         if ($avatar) {
90             $url = $avatar->url;
91         } else {
92             if ($size == 'original') {
93                 $url = Avatar::defaultImage(AVATAR_PROFILE_SIZE);
94             } else {
95                 $url = Avatar::defaultImage($size+0);
96             }
97         }
98         common_redirect($url, 302);
99     }
100
101     function isReadOnly($args)
102     {
103         return true;
104     }
105 }
106