3 * StatusNet, the distributed open-source microblogging tool
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
38 * This is the form for adding a new group
42 * @author Evan Prodromou <evan@status.net>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
46 class NewgroupAction extends Action
52 // TRANS: Title for form to create a group.
53 return _('New group');
59 function prepare($args)
61 parent::prepare($args);
63 if (!common_logged_in()) {
64 // TRANS: Client error displayed trying to create a group while not logged in.
65 $this->clientError(_('You must be logged in to create a group.'));
69 $user = common_current_user();
70 $profile = $user->getProfile();
71 if (!$profile->hasRight(Right::CREATEGROUP)) {
72 // TRANS: Client exception thrown when a user tries to create a group while banned.
73 throw new ClientException(_('You are not allowed to create groups on this site.'), 403);
82 * On GET, show the form. On POST, try to save the group.
84 * @param array $args unused
88 function handle($args)
90 parent::handle($args);
91 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
98 function showForm($msg=null)
104 function showContent()
106 $form = new GroupEditForm($this);
110 function showPageNotice()
113 $this->element('p', 'error', $this->msg);
115 $this->element('p', 'instructions',
116 // TRANS: Form instructions for group create form.
117 _('Use this form to create a new group.'));
123 if (Event::handle('StartGroupSaveForm', array($this))) {
125 $nickname = Nickname::normalize($this->trimmed('nickname'));
126 } catch (NicknameException $e) {
127 $this->showForm($e->getMessage());
129 $fullname = $this->trimmed('fullname');
130 $homepage = $this->trimmed('homepage');
131 $description = $this->trimmed('description');
132 $location = $this->trimmed('location');
133 $private = $this->boolean('private');
134 $aliasstring = $this->trimmed('aliases');
136 if ($this->nicknameExists($nickname)) {
137 // TRANS: Group create form validation error.
138 $this->showForm(_('Nickname already in use. Try another one.'));
140 } else if (!User_group::allowedNickname($nickname)) {
141 // TRANS: Group create form validation error.
142 $this->showForm(_('Not a valid nickname.'));
144 } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
145 !Validate::uri($homepage,
146 array('allowed_schemes' =>
147 array('http', 'https')))) {
148 // TRANS: Group create form validation error.
149 $this->showForm(_('Homepage is not a valid URL.'));
151 } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
152 // TRANS: Group create form validation error.
153 $this->showForm(_('Full name is too long (maximum 255 characters).'));
155 } else if (User_group::descriptionTooLong($description)) {
156 // TRANS: Group create form validation error.
157 // TRANS: %d is the maximum number of allowed characters.
158 $this->showForm(sprintf(_m('Description is too long (maximum %d character).',
159 'Description is too long (maximum %d characters).',
160 User_group::maxDescription()),
161 User_group::maxDescription()));
163 } else if (!is_null($location) && mb_strlen($location) > 255) {
164 // TRANS: Group create form validation error.
165 $this->showForm(_('Location is too long (maximum 255 characters).'));
169 if (!empty($aliasstring)) {
170 $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
175 if (count($aliases) > common_config('group', 'maxaliases')) {
176 // TRANS: Group create form validation error.
177 // TRANS: %d is the maximum number of allowed aliases.
178 $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
179 'Too many aliases! Maximum %d allowed.',
180 common_config('group', 'maxaliases')),
181 common_config('group', 'maxaliases')));
185 foreach ($aliases as $alias) {
186 if (!Nickname::isValid($alias)) {
187 // TRANS: Group create form validation error.
188 // TRANS: %s is the invalid alias.
189 $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
192 if ($this->nicknameExists($alias)) {
193 // TRANS: Group create form validation error. %s is the already used alias.
194 $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
198 // XXX assumes alphanum nicknames
199 if (strcmp($alias, $nickname) == 0) {
200 // TRANS: Group create form validation error.
201 $this->showForm(_('Alias cannot be the same as nickname.'));
208 $join_policy = User_group::JOIN_POLICY_MODERATE;
211 $join_policy = User_group::JOIN_POLICY_OPEN;
214 $cur = common_current_user();
216 // Checked in prepare() above
218 assert(!is_null($cur));
220 $group = User_group::register(array('nickname' => $nickname,
221 'fullname' => $fullname,
222 'homepage' => $homepage,
223 'description' => $description,
224 'location' => $location,
225 'aliases' => $aliases,
226 'userid' => $cur->id,
227 'join_policy' => $join_policy,
228 'force_scope' => $force_scope,
231 $this->group = $group;
233 Event::handle('EndGroupSaveForm', array($this));
235 common_redirect($group->homeUrl(), 303);
239 function nicknameExists($nickname)
241 $local = Local_group::staticGet('nickname', $nickname);
243 if (!empty($local)) {
247 $alias = Group_alias::staticGet('alias', $nickname);
249 if (!empty($alias)) {