3 * Laconica, 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@controlyourself.ca>
25 * @copyright 2008-2009 Control Yourself, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://laconi.ca/
30 if (!defined('LACONICA')) {
34 require_once(INSTALLDIR.'/lib/profilelist.php');
35 require_once INSTALLDIR.'/lib/publicgroupnav.php';
38 * List of group members
42 * @author Evan Prodromou <evan@controlyourself.ca>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://laconi.ca/
47 class GroupmembersAction extends GroupDesignAction
51 function isReadOnly($args)
56 function prepare($args)
58 parent::prepare($args);
59 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
61 $nickname_arg = $this->arg('nickname');
62 $nickname = common_canonical_nickname($nickname_arg);
64 // Permanent redirect on non-canonical nickname
66 if ($nickname_arg != $nickname) {
67 $args = array('nickname' => $nickname);
68 if ($this->page != 1) {
69 $args['page'] = $this->page;
71 common_redirect(common_local_url('groupmembers', $args), 301);
76 $this->clientError(_('No nickname'), 404);
80 $this->group = User_group::staticGet('nickname', $nickname);
83 $this->clientError(_('No such group'), 404);
92 if ($this->page == 1) {
93 return sprintf(_('%s group members'),
94 $this->group->nickname);
96 return sprintf(_('%s group members, page %d'),
97 $this->group->nickname,
102 function handle($args)
104 parent::handle($args);
108 function showPageNotice()
110 $this->element('p', 'instructions',
111 _('A list of the users in this group.'));
114 function showLocalNav()
116 $nav = new GroupNav($this, $this->group);
120 function showContent()
122 $offset = ($this->page-1) * PROFILES_PER_PAGE;
123 $limit = PROFILES_PER_PAGE + 1;
127 $members = $this->group->getMembers($offset, $limit);
130 $member_list = new GroupMemberList($members, $this->group, $this);
131 $cnt = $member_list->show();
136 $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
137 $this->page, 'groupmembers',
138 array('nickname' => $this->group->nickname));
142 class GroupMemberList extends ProfileList
146 function __construct($profile, $group, $action)
148 parent::__construct($profile, $action);
150 $this->group = $group;
153 function newListItem($profile)
155 return new GroupMemberListItem($profile, $this->group, $this->action);
159 class GroupMemberListItem extends ProfileListItem
163 function __construct($profile, $group, $action)
165 parent::__construct($profile, $action);
167 $this->group = $group;
170 function showFullName()
172 parent::showFullName();
173 if ($this->profile->isAdmin($this->group)) {
174 $this->out->text(' ');
175 $this->out->element('span', 'role', _('Admin'));
179 function showActions()
181 $this->startActions();
182 $this->showSubscribeButton();
183 $this->showMakeAdminForm();
184 $this->showGroupBlockForm();
188 function showMakeAdminForm()
190 $user = common_current_user();
192 if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group) &&
193 !$this->profile->isAdmin($this->group)) {
194 $this->out->elementStart('li', 'entity_make_admin');
195 $maf = new MakeAdminForm($this->out, $this->profile, $this->group,
196 array('action' => 'groupmembers',
197 'nickname' => $this->group->nickname));
199 $this->out->elementEnd('li');
203 function showGroupBlockForm()
205 $user = common_current_user();
207 if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group)) {
208 $this->out->elementStart('li', 'entity_block');
209 $bf = new GroupBlockForm($this->out, $this->profile, $this->group,
210 array('action' => 'groupmembers',
211 'nickname' => $this->group->nickname));
213 $this->out->elementEnd('li');
220 * Form for blocking a user from a group
224 * @author Evan Prodromou <evan@controlyourself.ca>
225 * @author Sarven Capadisli <csarven@controlyourself.ca>
226 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
227 * @link http://laconi.ca/
232 class GroupBlockForm extends Form
235 * Profile of user to block
241 * Group to block the user from
255 * @param HTMLOutputter $out output channel
256 * @param Profile $profile profile of user to block
257 * @param User_group $group group to block user from
258 * @param array $args return-to args
261 function __construct($out=null, $profile=null, $group=null, $args=null)
263 parent::__construct($out);
265 $this->profile = $profile;
266 $this->group = $group;
273 * @return int ID of the form
278 // This should be unique for the page.
279 return 'block-' . $this->profile->id;
285 * @return string class of the form
290 return 'form_group_block';
296 * @return string URL of the action
301 return common_local_url('groupblock');
309 function formLegend()
311 $this->out->element('legend', null, _('Block user from group'));
315 * Data elements of the form
322 $this->out->hidden('blockto-' . $this->profile->id,
325 $this->out->hidden('blockgroup-' . $this->group->id,
329 foreach ($this->args as $k => $v) {
330 $this->out->hidden('returnto-' . $k, $v);
341 function formActions()
343 $this->out->submit('submit', _('Block'), 'submit', null, _('Block this user'));
348 * Form for making a user an admin for a group
352 * @author Evan Prodromou <evan@controlyourself.ca>
353 * @author Sarven Capadisli <csarven@controlyourself.ca>
354 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
355 * @link http://laconi.ca/
358 class MakeAdminForm extends Form
361 * Profile of user to block
367 * Group to block the user from
381 * @param HTMLOutputter $out output channel
382 * @param Profile $profile profile of user to block
383 * @param User_group $group group to block user from
384 * @param array $args return-to args
387 function __construct($out=null, $profile=null, $group=null, $args=null)
389 parent::__construct($out);
391 $this->profile = $profile;
392 $this->group = $group;
399 * @return int ID of the form
404 // This should be unique for the page.
405 return 'makeadmin-' . $this->profile->id;
411 * @return string class of the form
416 return 'form_make_admin';
422 * @return string URL of the action
427 return common_local_url('makeadmin', array('nickname' => $this->group->nickname));
436 function formLegend()
438 $this->out->element('legend', null, _('Make user an admin of the group'));
442 * Data elements of the form
449 $this->out->hidden('profileid-' . $this->profile->id,
452 $this->out->hidden('groupid-' . $this->group->id,
456 foreach ($this->args as $k => $v) {
457 $this->out->hidden('returnto-' . $k, $v);
468 function formActions()
470 $this->out->submit('submit', _('Make Admin'), 'submit', null, _('Make this user an admin'));