| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Update a group's profile | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 2010 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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * API analog to the group edit page | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @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 ApiGroupProfileUpdateAction extends ApiAuthAction | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected $needPost = true; | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-29 10:26:46 +01:00
										 |  |  |     protected function prepare(array $args=array()) | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-04 21:25:14 +01:00
										 |  |  |         $this->nickname    = Nickname::normalize($this->trimmed('nickname')); | 
					
						
							| 
									
										
										
										
											2010-05-07 00:52:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         $this->fullname    = $this->trimmed('fullname'); | 
					
						
							|  |  |  |         $this->homepage    = $this->trimmed('homepage'); | 
					
						
							|  |  |  |         $this->description = $this->trimmed('description'); | 
					
						
							|  |  |  |         $this->location    = $this->trimmed('location'); | 
					
						
							|  |  |  |         $this->aliasstring = $this->trimmed('aliases'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->user  = $this->auth_user; | 
					
						
							|  |  |  |         $this->group = $this->getTargetGroup($this->arg('id')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * See which request params have been set, and update the profile | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!in_array($this->format, array('xml', 'json'))) { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             // TRANS: Client error displayed when coming across a non-supported API method.
 | 
					
						
							|  |  |  |             $this->clientError(_('API method not found.'), 404); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($this->user)) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: Client error displayed when not providing a user or an invalid user.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(_('No such user.'), 404); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($this->group)) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: Client error displayed when not providing a group or an invalid group.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(_('Group not found.'), 404); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$this->user->isAdmin($this->group)) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to edit a group without being an admin.
 | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             $this->clientError(_('You must be an admin to edit the group.'), 403); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->group->query('BEGIN'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $orig = clone($this->group); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-04 21:25:14 +01:00
										 |  |  |             if (common_config('profile', 'changenick') == true && $this->group->nickname !== $this->nickname) { | 
					
						
							| 
									
										
										
										
											2013-10-17 01:16:03 +02:00
										 |  |  |                 try { | 
					
						
							|  |  |  |                     $this->group->nickname = Nickname::normalize($this->nickname, true); | 
					
						
							|  |  |  |                 } catch (NicknameException $e) { | 
					
						
							|  |  |  |                     throw new ApiValidationException($e->getMessage()); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-10-17 01:16:03 +02:00
										 |  |  |                 $this->group->mainpage = common_local_url('showgroup', | 
					
						
							|  |  |  |                                             array('nickname' => $this->group->nickname)); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($this->fullname)) { | 
					
						
							|  |  |  |                 $this->validateFullname(); | 
					
						
							|  |  |  |                 $this->group->fullname = $this->fullname; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($this->homepage)) { | 
					
						
							|  |  |  |                 $this->validateHomepage(); | 
					
						
							| 
									
										
										
										
											2013-10-17 01:16:03 +02:00
										 |  |  |                 $this->group->homepage = $this->homepage; | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($this->description)) { | 
					
						
							|  |  |  |                 $this->validateDescription(); | 
					
						
							|  |  |  |                 $this->group->description = $this->decription; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!empty($this->location)) { | 
					
						
							|  |  |  |                 $this->validateLocation(); | 
					
						
							|  |  |  |                 $this->group->location = $this->location; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         } catch (ApiValidationException $ave) { | 
					
						
							| 
									
										
										
										
											2013-10-17 01:16:03 +02:00
										 |  |  |             $this->clientError($ave->getMessage(), 400); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $result = $this->group->update($orig); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$result) { | 
					
						
							|  |  |  |             common_log_db_error($this->group, 'UPDATE', __FILE__); | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: Server error displayed when group update fails.
 | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             $this->serverError(_('Could not update group.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-07 00:52:54 -07:00
										 |  |  |         $aliases = array(); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         try { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             if (!empty($this->aliasstring)) { | 
					
						
							|  |  |  |                 $aliases = $this->validateAliases(); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |         } catch (ApiValidationException $ave) { | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError($ave->getMessage(), 403); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $result = $this->group->setAliases($aliases); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$result) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: Server error displayed when adding group aliases fails.
 | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             $this->serverError(_('Could not create aliases.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->group->query('COMMIT'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch($this->format) { | 
					
						
							|  |  |  |         case 'xml': | 
					
						
							|  |  |  |             $this->showSingleXmlGroup($this->group); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 'json': | 
					
						
							|  |  |  |             $this->showSingleJsonGroup($this->group); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2011-04-04 00:12:52 +02:00
										 |  |  |             // TRANS: Client error displayed when coming across a non-supported API method.
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:54:10 +02:00
										 |  |  |             $this->clientError(_('API method not found.'), 404); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function validateHomepage() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!is_null($this->homepage) | 
					
						
							| 
									
										
										
										
											2013-10-07 14:46:09 +02:00
										 |  |  |                 && (strlen($this->homepage) > 0) | 
					
						
							|  |  |  |                 && !common_valid_http_url($this->homepage)) { | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             throw new ApiValidationException( | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |                 // TRANS: API validation exception thrown when homepage URL does not validate.
 | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |                 _('Homepage is not a valid URL.') | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function validateFullname() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!is_null($this->fullname) && mb_strlen($this->fullname) > 255) { | 
					
						
							|  |  |  |             throw new ApiValidationException( | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |                 // TRANS: API validation exception thrown when full name does not validate.
 | 
					
						
							|  |  |  |                 _('Full name is too long (maximum 255 characters).') | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function validateDescription() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (User_group::descriptionTooLong($this->description)) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: API validation exception thrown when description does not validate.
 | 
					
						
							|  |  |  |             // TRANS: %d is the maximum description length and used for plural.
 | 
					
						
							|  |  |  |             throw new ApiValidationException(sprintf(_m('Description is too long (maximum %d character).', | 
					
						
							|  |  |  |                                                         'Description is too long (maximum %d characters).', | 
					
						
							|  |  |  |                                                         User_group::maxDescription()), | 
					
						
							|  |  |  |                                                      User_group::maxDescription())); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function validateLocation() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!is_null($this->location) && mb_strlen($this->location) > 255) { | 
					
						
							|  |  |  |             throw new ApiValidationException( | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |                 // TRANS: API validation exception thrown when location does not validate.
 | 
					
						
							|  |  |  |                 _('Location is too long (maximum 255 characters).') | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function validateAliases() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-17 01:16:03 +02:00
										 |  |  |         try { | 
					
						
							|  |  |  |             $aliases = array_map(array('Nickname', 'normalize'), | 
					
						
							|  |  |  |                             array_unique(preg_split('/[\s,]+/', $this->aliasstring))); | 
					
						
							|  |  |  |         } catch (NicknameException $e) { | 
					
						
							|  |  |  |             throw new ApiValidationException(sprintf('Error processing aliases: %s', $e->getMessage())); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (count($aliases) > common_config('group', 'maxaliases')) { | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  |             // TRANS: API validation exception thrown when aliases do not validate.
 | 
					
						
							|  |  |  |             // TRANS: %d is the maximum number of aliases and used for plural.
 | 
					
						
							|  |  |  |             throw new ApiValidationException(sprintf(_m('Too many aliases! Maximum %d allowed.', | 
					
						
							|  |  |  |                                                         'Too many aliases! Maximum %d allowed.', | 
					
						
							|  |  |  |                                                         common_config('group', 'maxaliases')), | 
					
						
							|  |  |  |                                                      common_config('group', 'maxaliases'))); | 
					
						
							| 
									
										
										
										
											2010-04-20 11:29:13 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $aliases; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-05 17:03:12 +01:00
										 |  |  | } |