| 
									
										
										
										
											2008-07-11 02:00:45 -04:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Retrieve user avatar by nickname action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2008-07-11 02:00:45 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2008-07-11 02:00:45 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Retrieve user avatar by nickname action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2013-10-15 00:20:36 +02:00
										 |  |  |  * @package  GNUsocial | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |  * @author   Mikael Nordfeldth <mmn@hethane.se> | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |  * @link     http://www.gnu.org/software/social/ | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class AvatarbynicknameAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Class handler. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args query arguments | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2009-01-22 05:28:09 +00:00
										 |  |  |      * @return boolean false if nickname or user isn't found | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2008-07-11 02:00:45 -04:00
										 |  |  |         $nickname = $this->trimmed('nickname'); | 
					
						
							|  |  |  |         if (!$nickname) { | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |             // TRANS: Client error displayed trying to get an avatar without providing a nickname.
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->clientError(_('No nickname.')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |         $size = $this->trimmed('size') ?: 'original'; | 
					
						
							| 
									
										
										
										
											2008-07-13 01:37:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         $user = User::getKV('nickname', $nickname); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if (!$user) { | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |             // TRANS: Client error displayed trying to get an avatar for a non-existing user.
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->clientError(_('No such user.')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |         $profile = $user->getProfile(); | 
					
						
							|  |  |  |         if (!$profile) { | 
					
						
							| 
									
										
										
										
											2011-04-25 14:48:19 +02:00
										 |  |  |             // TRANS: Error message displayed when referring to a user without a profile.
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->clientError(_('User has no profile.')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-13 01:37:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |         if ($size === 'original') { | 
					
						
							|  |  |  |             try { | 
					
						
							| 
									
										
										
										
											2013-10-02 15:01:11 +02:00
										 |  |  |                 $avatar = Avatar::getUploaded($profile); | 
					
						
							| 
									
										
										
										
											2013-10-02 14:37:10 +02:00
										 |  |  |                 $url = $avatar->displayUrl(); | 
					
						
							| 
									
										
										
										
											2013-10-06 15:54:06 +02:00
										 |  |  |             } catch (NoAvatarException $e) { | 
					
						
							| 
									
										
										
										
											2009-02-06 03:13:08 -05:00
										 |  |  |                 $url = Avatar::defaultImage(AVATAR_PROFILE_SIZE); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $url = $profile->avatarUrl($size); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-01 11:37:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         common_redirect($url, 302); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-23 09:15:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-13 15:49:26 -04:00
										 |  |  |     function isReadOnly($args) | 
					
						
							| 
									
										
										
										
											2009-01-23 09:15:15 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-07-11 02:00:45 -04:00
										 |  |  | } |