. * * @category API * @package StatusNet * @author Craig Andrews * @author Evan Prodromou * @author Jeffery To * @author Zach Copley * @copyright 2009 StatusNet, Inc. * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org * @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); } /** * Make a new group. Sets the authenticated user as the administrator of the group. * * @category API * @package StatusNet * @author Craig Andrews * @author Evan Prodromou * @author Jeffery To * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class ApiGroupCreateAction extends ApiAuthAction { protected $needPost = true; var $group = null; var $nickname = null; var $fullname = null; var $homepage = null; var $description = null; var $location = null; var $aliasstring = null; var $aliases = null; /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag */ protected function prepare(array $args=array()) { parent::prepare($args); $this->nickname = Nickname::normalize($this->arg('nickname'), true); $this->fullname = $this->arg('full_name'); $this->homepage = $this->arg('homepage'); $this->description = $this->arg('description'); $this->location = $this->arg('location'); $this->aliasstring = $this->arg('aliases'); return true; } /** * Handle the request * * Save the new group * * @return void */ protected function handle() { parent::handle(); if (empty($this->user)) { // TRANS: Client error given when a user was not found (404). $this->clientError(_('No such user.'), 404); } if ($this->validateParams() == false) { return; } $group = User_group::register(array('nickname' => $this->nickname, 'fullname' => $this->fullname, 'homepage' => $this->homepage, 'description' => $this->description, 'location' => $this->location, 'aliases' => $this->aliases, 'userid' => $this->user->id, 'local' => true)); switch($this->format) { case 'xml': $this->showSingleXmlGroup($group); break; case 'json': $this->showSingleJsonGroup($group); break; default: // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); } } /** * Validate params for the new group * * @return void */ function validateParams() { if (!is_null($this->homepage) && strlen($this->homepage) > 0 && !common_valid_http_url($this->homepage)) { // TRANS: Client error in form for group creation. $this->clientError(_('Homepage is not a valid URL.'), 403); } elseif (!is_null($this->fullname) && mb_strlen($this->fullname) > 255) { // TRANS: Client error in form for group creation. $this->clientError(_('Full name is too long (maximum 255 characters).'), 403); } elseif (User_group::descriptionTooLong($this->description)) { // TRANS: Client error shown when providing too long a description during group creation. // TRANS: %d is the maximum number of allowed characters. $this->clientError(sprintf(_m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', User_group::maxDescription()), User_group::maxDescription()), 403); } elseif (!is_null($this->location) && mb_strlen($this->location) > 255) { // TRANS: Client error shown when providing too long a location during group creation. $this->clientError(_('Location is too long (maximum 255 characters).'), 403); } if (!empty($this->aliasstring)) { $this->aliases = array_map( array('Nickname', 'normalize'), // static call to Nickname::normalize array_unique(preg_split('/[\s,]+/', $this->aliasstring)) ); } else { $this->aliases = array(); } if (count($this->aliases) > common_config('group', 'maxaliases')) { $this->clientError(sprintf( // TRANS: Client error shown when providing too many aliases during group creation. // TRANS: %d is the maximum number of allowed aliases. _m('Too many aliases! Maximum %d allowed.', 'Too many aliases! Maximum %d allowed.', common_config('group', 'maxaliases')), common_config('group', 'maxaliases')), 403); } // Everything looks OK return true; } }