3 * StatusNet, the distributed open-source microblogging tool
5 * List of group members
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.
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.
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/>.
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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 * List of profiles blocked from this group
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
43 class BlockedfromgroupAction extends GroupAction
47 function isReadOnly($args)
52 protected function prepare(array $args=array())
54 parent::prepare($args);
55 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
57 $nickname_arg = $this->arg('nickname');
58 $nickname = common_canonical_nickname($nickname_arg);
60 // Permanent redirect on non-canonical nickname
62 if ($nickname_arg != $nickname) {
63 $args = array('nickname' => $nickname);
64 if ($this->page != 1) {
65 $args['page'] = $this->page;
67 common_redirect(common_local_url('blockedfromgroup', $args), 301);
71 // TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
72 $this->clientError(_('No nickname.'), 404);
75 $local = Local_group::getKV('nickname', $nickname);
78 // TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
79 $this->clientError(_('No such group.'), 404);
82 $this->group = User_group::getKV('id', $local->group_id);
85 // TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
86 $this->clientError(_('No such group.'), 404);
94 if ($this->page == 1) {
95 // TRANS: Title for first page with list of users blocked from a group.
96 // TRANS: %s is a group nickname.
97 return sprintf(_('%s blocked profiles'),
98 $this->group->nickname);
100 // TRANS: Title for any but the first page with list of users blocked from a group.
101 // TRANS: %1$s is a group nickname, %2$d is a page number.
102 return sprintf(_('%1$s blocked profiles, page %2$d'),
103 $this->group->nickname,
108 protected function handle()
114 function showPageNotice()
116 $this->element('p', 'instructions',
117 // TRANS: Instructions for list of users blocked from a group.
118 _('A list of the users blocked from joining this group.'));
121 function showContent()
123 $offset = ($this->page-1) * PROFILES_PER_PAGE;
124 $limit = PROFILES_PER_PAGE + 1;
128 $blocked = $this->group->getBlocked($offset, $limit);
131 $blocked_list = new GroupBlockList($blocked, $this->group, $this);
132 $cnt = $blocked_list->show();
137 $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
138 $this->page, 'blockedfromgroup',
139 array('nickname' => $this->group->nickname));
143 class GroupBlockList extends ProfileList
147 function __construct($profile, $group, $action)
149 parent::__construct($profile, $action);
151 $this->group = $group;
154 function newListItem($profile)
156 return new GroupBlockListItem($profile, $this->group, $this->action);
160 class GroupBlockListItem extends ProfileListItem
164 function __construct($profile, $group, $action)
166 parent::__construct($profile, $action);
168 $this->group = $group;
171 function showActions()
173 $this->startActions();
174 $this->showGroupUnblockForm();
178 function showGroupUnblockForm()
180 $user = common_current_user();
182 if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group)) {
183 $this->out->elementStart('li', 'entity_block');
184 $bf = new GroupUnblockForm($this->out, $this->profile, $this->group,
185 array('action' => 'blockedfromgroup',
186 'nickname' => $this->group->nickname));
188 $this->out->elementEnd('li');
194 * Form for unblocking a user from a group
198 * @author Evan Prodromou <evan@status.net>
199 * @author Sarven Capadisli <csarven@status.net>
200 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
201 * @link http://status.net/
205 class GroupUnblockForm extends Form
208 * Profile of user to block
214 * Group to block the user from
228 * @param HTMLOutputter $out output channel
229 * @param Profile $profile profile of user to block
230 * @param User_group $group group to block user from
231 * @param array $args return-to args
233 function __construct($out=null, $profile=null, $group=null, $args=null)
235 parent::__construct($out);
237 $this->profile = $profile;
238 $this->group = $group;
245 * @return int ID of the form
249 // This should be unique for the page.
250 return 'unblock-' . $this->profile->id;
256 * @return string class of the form
260 return 'form_group_unblock';
266 * @return string URL of the action
270 return common_local_url('groupunblock');
278 function formLegend()
280 // TRANS: Form legend for unblocking a user from a group.
281 $this->out->element('legend', null, _('Unblock user from group'));
285 * Data elements of the form
291 $this->out->hidden('unblockto-' . $this->profile->id,
294 $this->out->hidden('unblockgroup-' . $this->group->id,
298 foreach ($this->args as $k => $v) {
299 $this->out->hidden('returnto-' . $k, $v);
309 function formActions()
311 $this->out->submit('submit',
312 // TRANS: Button text for unblocking a user from a group.
313 _m('BUTTON','Unblock'),
316 // TRANS: Tooltip for button for unblocking a user from a group.
317 _('Unblock this user'));