]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/joingroup.php
c533ebdedb7d3dc2e7b8762a4910520d24553e89
[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 class JoingroupAction extends Action
47 {
48     var $group = null;
49
50     /**
51      * Prepare to run
52      */
53     function prepare($args)
54     {
55         parent::prepare($args);
56
57         if (!common_logged_in()) {
58             // TRANS: Client error displayed when trying to join a group while not logged in.
59             $this->clientError(_('You must be logged in to join a group.'));
60         }
61
62         $nickname_arg = $this->trimmed('nickname');
63         $id = intval($this->arg('id'));
64         if ($id) {
65             $this->group = User_group::getKV('id', $id);
66         } else if ($nickname_arg) {
67             $nickname = common_canonical_nickname($nickname_arg);
68
69             // Permanent redirect on non-canonical nickname
70
71             if ($nickname_arg != $nickname) {
72                 $args = array('nickname' => $nickname);
73                 common_redirect(common_local_url('leavegroup', $args), 301);
74             }
75
76             $local = Local_group::getKV('nickname', $nickname);
77
78             if (!$local) {
79                 // TRANS: Client error displayed when trying to join a non-local group.
80                 $this->clientError(_('No such group.'), 404);
81             }
82
83             $this->group = User_group::getKV('id', $local->group_id);
84         } else {
85             // TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
86             $this->clientError(_('No nickname or ID.'), 404);
87         }
88
89         if (!$this->group) {
90             // TRANS: Client error displayed when trying to join a non-existing group.
91             $this->clientError(_('No such group.'), 404);
92         }
93
94         $cur = common_current_user();
95
96         if ($cur->isMember($this->group)) {
97             // TRANS: Client error displayed when trying to join a group while already a member.
98             $this->clientError(_('You are already a member of that group.'), 403);
99         }
100
101         if (Group_block::isBlocked($this->group, $cur->getProfile())) {
102             // TRANS: Client error displayed when trying to join a group while being blocked form joining it.
103             $this->clientError(_('You have been blocked from that group by the admin.'), 403);
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     function handle($args)
119     {
120         parent::handle($args);
121
122         $cur = common_current_user();
123
124         try {
125             $result = $cur->joinGroup($this->group);
126         } catch (Exception $e) {
127                 common_log(LOG_ERR, sprintf("Couldn't join user %s to group %s: '%s'",
128                                                                         $cur->nickname,
129                                                                         $this->group->nickname,
130                                                                         $e->getMessage()));
131             // TRANS: Server error displayed when joining a group failed in the database.
132             // TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
133             $this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'),
134                                        $cur->nickname, $this->group->nickname));
135             return;
136         }
137
138         if ($this->boolean('ajax')) {
139             $this->startHTML('text/xml;charset=utf-8');
140             $this->elementStart('head');
141             // TRANS: Title for join group page after joining.
142             $this->element('title', null, sprintf(_m('TITLE','%1$s joined group %2$s'),
143                                                   $cur->nickname,
144                                                   $this->group->nickname));
145             $this->elementEnd('head');
146             $this->elementStart('body');
147
148             if ($result instanceof Group_member) {
149                 $form = new LeaveForm($this, $this->group);
150             } else if ($result instanceof Group_join_queue) {
151                 $form = new CancelGroupForm($this, $this->group);
152             } else {
153                 // wtf?
154                 // TRANS: Exception thrown when there is an unknown error joining a group.
155                 throw new Exception(_("Unknown error joining group."));
156             }
157             $form->show();
158             $this->elementEnd('body');
159             $this->endHTML();
160         } else {
161             common_redirect(common_local_url('groupmembers', array('nickname' => $this->group->nickname)), 303);
162         }
163     }
164 }