]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/newgroup.php
Merge branch 'master' into 0.9.x
[quix0rs-gnu-social.git] / actions / newgroup.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Add a new group
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Group
23  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Add a new group
37  *
38  * This is the form for adding a new group
39  *
40  * @category Group
41  * @package  StatusNet
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/
45  */
46 class NewgroupAction extends Action
47 {
48     var $msg;
49
50     function title()
51     {
52         // TRANS: Title for form to create a group.
53         return _('New group');
54     }
55
56     /**
57      * Prepare to run
58      */
59     function prepare($args)
60     {
61         parent::prepare($args);
62
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.'));
66             return false;
67         }
68
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);
74         }
75
76         return true;
77     }
78
79     /**
80      * Handle the request
81      *
82      * On GET, show the form. On POST, try to save the group.
83      *
84      * @param array $args unused
85      *
86      * @return void
87      */
88     function handle($args)
89     {
90         parent::handle($args);
91         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
92             $this->trySave();
93         } else {
94             $this->showForm();
95         }
96     }
97
98     function showForm($msg=null)
99     {
100         $this->msg = $msg;
101         $this->showPage();
102     }
103
104     function showContent()
105     {
106         $form = new GroupEditForm($this);
107         $form->show();
108     }
109
110     function showPageNotice()
111     {
112         if ($this->msg) {
113             $this->element('p', 'error', $this->msg);
114         } else {
115             $this->element('p', 'instructions',
116                            // TRANS: Form instructions for group create form.
117                            _('Use this form to create a new group.'));
118         }
119     }
120
121     function trySave()
122     {
123         try {
124             $nickname = Nickname::normalize($this->trimmed('nickname'));
125         } catch (NicknameException $e) {
126             $this->showForm($e->getMessage());
127         }
128         $fullname    = $this->trimmed('fullname');
129         $homepage    = $this->trimmed('homepage');
130         $description = $this->trimmed('description');
131         $location    = $this->trimmed('location');
132         $aliasstring = $this->trimmed('aliases');
133
134         if ($this->nicknameExists($nickname)) {
135             // TRANS: Group create form validation error.
136             $this->showForm(_('Nickname already in use. Try another one.'));
137             return;
138         } else if (!User_group::allowedNickname($nickname)) {
139             // TRANS: Group create form validation error.
140             $this->showForm(_('Not a valid nickname.'));
141             return;
142         } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
143                    !Validate::uri($homepage,
144                                   array('allowed_schemes' =>
145                                         array('http', 'https')))) {
146             // TRANS: Group create form validation error.
147             $this->showForm(_('Homepage is not a valid URL.'));
148             return;
149         } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
150             // TRANS: Group create form validation error.
151             $this->showForm(_('Full name is too long (maximum 255 characters).'));
152             return;
153         } else if (User_group::descriptionTooLong($description)) {
154             // TRANS: Group create form validation error.
155             // TRANS: %d is the maximum number of allowed characters.
156             $this->showForm(sprintf(_m('Description is too long (maximum %d character).',
157                                        'Description is too long (maximum %d characters).',
158                                        User_group::maxDescription()),
159                                     User_group::maxDescription()));
160             return;
161         } else if (!is_null($location) && mb_strlen($location) > 255) {
162             // TRANS: Group create form validation error.
163             $this->showForm(_('Location is too long (maximum 255 characters).'));
164             return;
165         }
166
167         if (!empty($aliasstring)) {
168             $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
169         } else {
170             $aliases = array();
171         }
172
173         if (count($aliases) > common_config('group', 'maxaliases')) {
174             // TRANS: Group create form validation error.
175             // TRANS: %d is the maximum number of allowed aliases.
176             $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
177                                        'Too many aliases! Maximum %d allowed.',
178                                        common_config('group', 'maxaliases')),
179                                     common_config('group', 'maxaliases')));
180             return;
181         }
182
183         foreach ($aliases as $alias) {
184             if (!Nickname::isValid($alias)) {
185                 // TRANS: Group create form validation error.
186                 $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
187                 return;
188             }
189             if ($this->nicknameExists($alias)) {
190                 // TRANS: Group create form validation error.
191                 $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
192                                         $alias));
193                 return;
194             }
195             // XXX assumes alphanum nicknames
196             if (strcmp($alias, $nickname) == 0) {
197                 // TRANS: Group create form validation error.
198                 $this->showForm(_('Alias can\'t be the same as nickname.'));
199                 return;
200             }
201         }
202
203         $mainpage = common_local_url('showgroup', array('nickname' => $nickname));
204
205         $cur = common_current_user();
206
207         // Checked in prepare() above
208
209         assert(!is_null($cur));
210
211         $group = User_group::register(array('nickname' => $nickname,
212                                             'fullname' => $fullname,
213                                             'homepage' => $homepage,
214                                             'description' => $description,
215                                             'location' => $location,
216                                             'aliases'  => $aliases,
217                                             'userid'   => $cur->id,
218                                             'mainpage' => $mainpage,
219                                             'local'    => true));
220
221         common_redirect($group->homeUrl(), 303);
222     }
223
224     function nicknameExists($nickname)
225     {
226         $local = Local_group::staticGet('nickname', $nickname);
227
228         if (!empty($local)) {
229             return true;
230         }
231
232         $alias = Group_alias::staticGet('alias', $nickname);
233
234         if (!empty($alias)) {
235             return true;
236         }
237
238         return false;
239     }
240 }