3 * Block a user from a group action class.
9 * @author Evan Prodromou <evan@status.net>
10 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11 * @link http://status.net/
13 * StatusNet - the distributed open-source microblogging tool
14 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 * Block a user from a group
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41 * @link http://status.net/
43 class GroupblockAction extends RedirectingAction
49 * Take arguments for running
51 * @param array $args $_REQUEST args
53 * @return boolean success flag
55 function prepare($args)
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.'));
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.'));
69 $id = $this->trimmed('blockto');
71 // TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
72 $this->clientError(_('No profile specified.'));
75 $this->profile = Profile::staticGet('id', $id);
76 if (empty($this->profile)) {
77 // TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
78 $this->clientError(_('No profile with that ID.'));
81 $group_id = $this->trimmed('blockgroup');
82 if (empty($group_id)) {
83 // TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
84 $this->clientError(_('No group specified.'));
87 $this->group = User_group::staticGet('id', $group_id);
88 if (empty($this->group)) {
89 // TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
90 $this->clientError(_('No such group.'));
93 $user = common_current_user();
94 if (!$user->isAdmin($this->group)) {
95 // TRANS: Client error displayed trying to block a user from a group while not being an admin user.
96 $this->clientError(_('Only an admin can block group members.'), 401);
99 if (Group_block::isBlocked($this->group, $this->profile)) {
100 // TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
101 $this->clientError(_('User is already blocked from group.'));
104 // XXX: could have proactive blocks, but we don't have UI for it.
105 if (!$this->profile->isMember($this->group)) {
106 // TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
107 $this->clientError(_('User is not a member of group.'));
116 * Shows a page with list of favorite notices
118 * @param array $args $_REQUEST args; handled in prepare()
122 function handle($args)
124 parent::handle($args);
125 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
126 if ($this->arg('no')) {
127 $this->returnToPrevious();
128 } elseif ($this->arg('yes')) {
129 $this->blockProfile();
130 } elseif ($this->arg('blockto')) {
136 function showContent() {
137 $this->areYouSureForm();
141 // TRANS: Title for block user from group page.
142 return _('Block user from group');
145 function showNoticeForm() {
152 * Shows a confirmation form.
156 function areYouSureForm()
158 $id = $this->profile->id;
159 $this->elementStart('form', array('id' => 'block-' . $id,
161 'class' => 'form_settings form_entity_block',
162 'action' => common_local_url('groupblock')));
163 $this->elementStart('fieldset');
164 $this->hidden('token', common_session_token());
165 // TRANS: Fieldset legend for block user from group form.
166 $this->element('legend', _('Block user'));
167 $this->element('p', null,
168 // TRANS: Explanatory text for block user from group form before setting the block.
169 // TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
170 sprintf(_('Are you sure you want to block user "%1$s" from the group "%2$s"? '.
171 'They will be removed from the group, unable to post, and '.
172 'unable to subscribe to the group in the future.'),
173 $this->profile->getBestName(),
174 $this->group->getBestName()));
175 $this->hidden('blockto-' . $this->profile->id,
178 $this->hidden('blockgroup-' . $this->group->id,
181 foreach ($this->args as $k => $v) {
182 if (substr($k, 0, 9) == 'returnto-') {
183 $this->hidden($k, $v);
186 $this->submit('form_action-no',
187 // TRANS: Button label on the form to block a user from a group.
189 'submit form_action-primary',
191 // TRANS: Submit button title for 'No' when blocking a user from a group.
192 _('Do not block this user from this group.'));
193 $this->submit('form_action-yes',
194 // TRANS: Button label on the form to block a user from a group.
196 'submit form_action-secondary',
198 // TRANS: Submit button title for 'Yes' when blocking a user from a group.
199 _('Block this user from this group.'));
200 $this->elementEnd('fieldset');
201 $this->elementEnd('form');
205 * Actually block a user.
209 function blockProfile()
211 $block = Group_block::blockProfile($this->group, $this->profile,
212 common_current_user());
215 // TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
216 $this->serverError(_("Database error blocking user from group."));
220 $this->returnToPrevious();
224 * If we reached this form without returnto arguments, default to
225 * the top of the group's member list.
229 function defaultReturnTo()
231 return common_local_url('groupmembers',
232 array('nickname' => $this->group->nickname));
235 function showScripts()
237 parent::showScripts();
238 $this->autofocus('form_action-yes');