]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/joingroup.php
modify group actions so they use Local_group to look up by nickname
[quix0rs-gnu-social.git] / actions / joingroup.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Join a 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  * @copyright 2008-2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Join a group
36  *
37  * This is the action for joining a group. It works more or less like the subscribe action
38  * for users.
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
47 class JoingroupAction extends Action
48 {
49     var $group = null;
50
51     /**
52      * Prepare to run
53      */
54
55     function prepare($args)
56     {
57         parent::prepare($args);
58
59         if (!common_logged_in()) {
60             $this->clientError(_('You must be logged in to join a group.'));
61             return false;
62         }
63
64         $nickname_arg = $this->trimmed('nickname');
65         $nickname = common_canonical_nickname($nickname_arg);
66
67         // Permanent redirect on non-canonical nickname
68
69         if ($nickname_arg != $nickname) {
70             $args = array('nickname' => $nickname);
71             common_redirect(common_local_url('joingroup', $args), 301);
72             return false;
73         }
74
75         if (!$nickname) {
76             $this->clientError(_('No nickname.'), 404);
77             return false;
78         }
79
80         $local = Local_group::staticGet('nickname', $nickname);
81
82         if (!$local) {
83             $this->clientError(_('No such group.'), 404);
84             return false;
85         }
86
87         $this->group = User_group::staticGet('id', $local->group_id);
88
89         if (!$this->group) {
90             $this->clientError(_('No such group.'), 404);
91             return false;
92         }
93
94         $cur = common_current_user();
95
96         if ($cur->isMember($this->group)) {
97             $this->clientError(_('You are already a member of that group.'), 403);
98             return false;
99         }
100
101         if (Group_block::isBlocked($this->group, $cur->getProfile())) {
102             $this->clientError(_('You have been blocked from that group by the admin.'), 403);
103             return false;
104         }
105
106         return true;
107     }
108
109     /**
110      * Handle the request
111      *
112      * On POST, add the current user to the group
113      *
114      * @param array $args unused
115      *
116      * @return void
117      */
118
119     function handle($args)
120     {
121         parent::handle($args);
122
123         $cur = common_current_user();
124
125         try {
126             if (Event::handle('StartJoinGroup', array($this->group, $cur))) {
127                 Group_member::join($this->group->id, $cur->id);
128                 Event::handle('EndJoinGroup', array($this->group, $cur));
129             }
130         } catch (Exception $e) {
131             $this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'),
132                                        $cur->nickname, $this->group->nickname));
133         }
134
135         if ($this->boolean('ajax')) {
136             $this->startHTML('text/xml;charset=utf-8');
137             $this->elementStart('head');
138             $this->element('title', null, sprintf(_('%1$s joined group %2$s'),
139                                                   $cur->nickname,
140                                                   $this->group->nickname));
141             $this->elementEnd('head');
142             $this->elementStart('body');
143             $lf = new LeaveForm($this, $this->group);
144             $lf->show();
145             $this->elementEnd('body');
146             $this->elementEnd('html');
147         } else {
148             common_redirect(common_local_url('groupmembers', array('nickname' =>
149                                                                    $this->group->nickname)),
150                             303);
151         }
152     }
153 }