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/
44 class BlockedfromgroupAction extends GroupDesignAction
48 function isReadOnly($args)
53 function prepare($args)
55 parent::prepare($args);
56 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
58 $nickname_arg = $this->arg('nickname');
59 $nickname = common_canonical_nickname($nickname_arg);
61 // Permanent redirect on non-canonical nickname
63 if ($nickname_arg != $nickname) {
64 $args = array('nickname' => $nickname);
65 if ($this->page != 1) {
66 $args['page'] = $this->page;
68 common_redirect(common_local_url('blockedfromgroup', $args), 301);
73 $this->clientError(_('No nickname'), 404);
77 $this->group = User_group::staticGet('nickname', $nickname);
80 $this->clientError(_('No such group'), 404);
89 if ($this->page == 1) {
90 return sprintf(_('%s blocked profiles'),
91 $this->group->nickname);
93 return sprintf(_('%s blocked profiles, page %d'),
94 $this->group->nickname,
99 function handle($args)
101 parent::handle($args);
105 function showPageNotice()
107 $this->element('p', 'instructions',
108 _('A list of the users blocked from joining this group.'));
111 function showLocalNav()
113 $nav = new GroupNav($this, $this->group);
117 function showContent()
119 $offset = ($this->page-1) * PROFILES_PER_PAGE;
120 $limit = PROFILES_PER_PAGE + 1;
124 $blocked = $this->group->getBlocked($offset, $limit);
127 $blocked_list = new GroupBlockList($blocked, $this->group, $this);
128 $cnt = $blocked_list->show();
133 $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
134 $this->page, 'blockedfromgroup',
135 array('nickname' => $this->group->nickname));
139 class GroupBlockList extends ProfileList
143 function __construct($profile, $group, $action)
145 parent::__construct($profile, $action);
147 $this->group = $group;
150 function newListItem($profile)
152 return new GroupBlockListItem($profile, $this->group, $this->action);
156 class GroupBlockListItem extends ProfileListItem
160 function __construct($profile, $group, $action)
162 parent::__construct($profile, $action);
164 $this->group = $group;
167 function showActions()
169 $this->startActions();
170 $this->showGroupUnblockForm();
174 function showGroupUnblockForm()
176 $user = common_current_user();
178 if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group)) {
179 $this->out->elementStart('li', 'entity_block');
180 $bf = new GroupUnblockForm($this->out, $this->profile, $this->group,
181 array('action' => 'blockedfromgroup',
182 'nickname' => $this->group->nickname));
184 $this->out->elementEnd('li');
190 * Form for unblocking a user from a group
194 * @author Evan Prodromou <evan@status.net>
195 * @author Sarven Capadisli <csarven@status.net>
196 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
197 * @link http://status.net/
202 class GroupUnblockForm extends Form
205 * Profile of user to block
211 * Group to block the user from
225 * @param HTMLOutputter $out output channel
226 * @param Profile $profile profile of user to block
227 * @param User_group $group group to block user from
228 * @param array $args return-to args
231 function __construct($out=null, $profile=null, $group=null, $args=null)
233 parent::__construct($out);
235 $this->profile = $profile;
236 $this->group = $group;
243 * @return int ID of the form
248 // This should be unique for the page.
249 return 'unblock-' . $this->profile->id;
255 * @return string class of the form
260 return 'form_group_unblock';
266 * @return string URL of the action
271 return common_local_url('groupunblock');
279 function formLegend()
281 $this->out->element('legend', null, _('Unblock user from group'));
285 * Data elements of the form
292 $this->out->hidden('unblockto-' . $this->profile->id,
295 $this->out->hidden('unblockgroup-' . $this->group->id,
299 foreach ($this->args as $k => $v) {
300 $this->out->hidden('returnto-' . $k, $v);
311 function formActions()
313 $this->out->submit('submit', _('Unblock'), 'submit', null, _('Unblock this user'));