]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/approvegroup.php
XSS vulnerability when remote-subscribing
[quix0rs-gnu-social.git] / actions / approvegroup.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Leave 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  * Leave a group
36  *
37  * This is the action for leaving 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 ApprovegroupAction 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 leave a group while not logged in.
59             $this->clientError(_('You must be logged in to leave 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 leave 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 leave 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 leave a non-existing group.
91             $this->clientError(_('No such group.'), 404);
92         }
93
94         $cur = common_current_user();
95         if (empty($cur)) {
96             // TRANS: Client error displayed trying to approve group membership while not logged in.
97             $this->clientError(_('Must be logged in.'), 403);
98         }
99         if ($this->arg('profile_id')) {
100             if ($cur->isAdmin($this->group)) {
101                 $this->profile = Profile::getKV('id', $this->arg('profile_id'));
102             } else {
103                 // TRANS: Client error displayed trying to approve group membership while not a group administrator.
104                 $this->clientError(_('Only group admin can approve or cancel join requests.'), 403);
105             }
106         } else {
107             // TRANS: Client error displayed trying to approve group membership without specifying a profile to approve.
108             $this->clientError(_('Must specify a profile.'));
109         }
110
111         $this->request = Group_join_queue::pkeyGet(array('profile_id' => $this->profile->id,
112                                                          'group_id' => $this->group->id));
113
114         if (empty($this->request)) {
115             // TRANS: Client error displayed trying to approve group membership for a non-existing request.
116             // TRANS: %s is a nickname.
117             $this->clientError(sprintf(_('%s is not in the moderation queue for this group.'), $this->profile->nickname), 403);
118         }
119
120         $this->approve = (bool)$this->arg('approve');
121         $this->cancel = (bool)$this->arg('cancel');
122         if (!$this->approve && !$this->cancel) {
123             // TRANS: Client error displayed trying to approve/deny group membership.
124             $this->clientError(_('Internal error: received neither cancel nor abort.'));
125         }
126         if ($this->approve && $this->cancel) {
127             // TRANS: Client error displayed trying to approve/deny group membership.
128             $this->clientError(_('Internal error: received both cancel and abort.'));
129         }
130         return true;
131     }
132
133     /**
134      * Handle the request
135      *
136      * On POST, add the current user to the group
137      *
138      * @param array $args unused
139      *
140      * @return void
141      */
142     function handle($args)
143     {
144         parent::handle($args);
145
146         try {
147             if ($this->approve) {
148                 $this->request->complete();
149             } elseif ($this->cancel) {
150                 $this->request->abort();
151             }
152         } catch (Exception $e) {
153             common_log(LOG_ERR, "Exception canceling group sub: " . $e->getMessage());
154             // TRANS: Server error displayed when cancelling a queued group join request fails.
155             // TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
156             $this->serverError(sprintf(_('Could not cancel request for user %1$s to join group %2$s.'),
157                                        $this->profile->nickname, $this->group->nickname));
158             return;
159         }
160
161         if ($this->boolean('ajax')) {
162             $this->startHTML('text/xml;charset=utf-8');
163             $this->elementStart('head');
164             // TRANS: Title for leave group page after group join request is approved/disapproved.
165             // TRANS: %1$s is the user nickname, %2$s is the group nickname.
166             $this->element('title', null, sprintf(_m('TITLE','%1$s\'s request for %2$s'),
167                                                   $this->profile->nickname,
168                                                   $this->group->nickname));
169             $this->elementEnd('head');
170             $this->elementStart('body');
171             if ($this->approve) {
172                 // TRANS: Message on page for group admin after approving a join request.
173                 $this->element('p', 'success', _('Join request approved.'));
174             } elseif ($this->cancel) {
175                 // TRANS: Message on page for group admin after rejecting a join request.
176                 $this->element('p', 'success', _('Join request canceled.'));
177             }
178             $this->elementEnd('body');
179             $this->endHTML();
180         } else {
181             common_redirect(common_local_url('groupmembers', array('nickname' => $this->group->nickname)), 303);
182         }
183     }
184 }