]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/groupunblock.php
Merge branch 'master' into testing
[quix0rs-gnu-social.git] / actions / groupunblock.php
1 <?php
2 /**
3  * Block a user from a group action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2008, 2009, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Unblock a user from a group
36  *
37  * @category Action
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  */
43 class GroupunblockAction extends Action
44 {
45     var $profile = null;
46     var $group = null;
47
48     /**
49      * Take arguments for running
50      *
51      * @param array $args $_REQUEST args
52      *
53      * @return boolean success flag
54      */
55     function prepare($args)
56     {
57         parent::prepare($args);
58         if (!common_logged_in()) {
59             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
60             $this->clientError(_('Not logged in.'));
61             return false;
62         }
63         $token = $this->trimmed('token');
64         if (empty($token) || $token != common_session_token()) {
65             // TRANS: Client error displayed when the session token does not match or is not given.
66             $this->clientError(_('There was a problem with your session token. Try again, please.'));
67             return;
68         }
69         $id = $this->trimmed('unblockto');
70         if (empty($id)) {
71             // TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
72             $this->clientError(_('No profile specified.'));
73             return false;
74         }
75         $this->profile = Profile::staticGet('id', $id);
76         if (empty($this->profile)) {
77             // TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
78             $this->clientError(_('No profile with that ID.'));
79             return false;
80         }
81         $group_id = $this->trimmed('unblockgroup');
82         if (empty($group_id)) {
83             // TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
84             $this->clientError(_('No group specified.'));
85             return false;
86         }
87         $this->group = User_group::staticGet('id', $group_id);
88         if (empty($this->group)) {
89             // TRANS: Client error displayed when trying to unblock a user from a non-existing group.
90             $this->clientError(_('No such group.'));
91             return false;
92         }
93         $user = common_current_user();
94         if (!$user->isAdmin($this->group)) {
95             // TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
96             $this->clientError(_('Only an admin can unblock group members.'), 401);
97             return false;
98         }
99         if (!Group_block::isBlocked($this->group, $this->profile)) {
100             // TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
101             $this->clientError(_('User is not blocked from group.'));
102             return false;
103         }
104         return true;
105     }
106
107     /**
108      * Handle request
109      *
110      * @param array $args $_REQUEST args; handled in prepare()
111      *
112      * @return void
113      */
114     function handle($args)
115     {
116         parent::handle($args);
117         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
118             $this->unblockProfile();
119         }
120     }
121
122     /**
123      * Unblock a user.
124      *
125      * @return void
126      */
127     function unblockProfile()
128     {
129         $result = Group_block::unblockProfile($this->group, $this->profile);
130
131         if (!$result) {
132             // TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
133             $this->serverError(_('Error removing the block.'));
134             return;
135         }
136
137         foreach ($this->args as $k => $v) {
138             if ($k == 'returnto-action') {
139                 $action = $v;
140             } else if (substr($k, 0, 9) == 'returnto-') {
141                 $args[substr($k, 9)] = $v;
142             }
143         }
144
145         if ($action) {
146             common_redirect(common_local_url($action, $args), 303);
147         } else {
148             common_redirect(common_local_url('blockedfromgroup',
149                                              array('nickname' => $this->group->nickname)),
150                             303);
151         }
152     }
153 }