3 * StatusNet, the distributed open-source microblogging tool
5 * User groups information
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 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/grouplist.php';
40 * Show the groups a user belongs to
44 * @author Evan Prodromou <evan@status.net>
45 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
46 * @link http://status.net/
49 class UsergroupsAction extends OwnerDesignAction
54 function isReadOnly($args)
61 if ($this->page == 1) {
62 return sprintf(_("%s groups"), $this->user->nickname);
64 return sprintf(_("%s groups, page %d"),
65 $this->user->nickname,
70 function prepare($args)
72 parent::prepare($args);
74 $nickname_arg = $this->arg('nickname');
75 $nickname = common_canonical_nickname($nickname_arg);
77 // Permanent redirect on non-canonical nickname
79 if ($nickname_arg != $nickname) {
80 $args = array('nickname' => $nickname);
81 if ($this->arg('page') && $this->arg('page') != 1) {
82 $args['page'] = $this->arg['page'];
84 common_redirect(common_local_url('usergroups', $args), 301);
88 $this->user = User::staticGet('nickname', $nickname);
91 $this->clientError(_('No such user.'), 404);
95 $this->profile = $this->user->getProfile();
97 if (!$this->profile) {
98 $this->serverError(_('User has no profile.'));
102 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
107 function handle($args)
109 parent::handle($args);
113 function showLocalNav()
115 $nav = new SubGroupNav($this, $this->user);
119 function showContent()
121 $this->elementStart('p', array('id' => 'new_group'));
122 $this->element('a', array('href' => common_local_url('newgroup'),
124 _('Create a new group'));
125 $this->elementEnd('p');
127 $this->elementStart('p', array('id' => 'group_search'));
128 $this->element('a', array('href' => common_local_url('groupsearch'),
130 _('Search for more groups'));
131 $this->elementEnd('p');
133 $offset = ($this->page-1) * GROUPS_PER_PAGE;
134 $limit = GROUPS_PER_PAGE + 1;
136 $groups = $this->user->getGroups($offset, $limit);
139 $gl = new GroupList($groups, $this->user, $this);
142 $this->showEmptyListMessage();
146 $this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE,
147 $this->page, 'usergroups',
148 array('nickname' => $this->user->nickname));
151 function showEmptyListMessage()
153 $message = sprintf(_('%s is not a member of any group.'), $this->user->nickname) . ' ';
155 if (common_logged_in()) {
156 $current_user = common_current_user();
157 if ($this->user->id === $current_user->id) {
158 $message .= _('Try [searching for groups](%%action.groupsearch%%) and joining them.');
161 $this->elementStart('div', 'guide');
162 $this->raw(common_markup_to_html($message));
163 $this->elementEnd('div');