]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/usergroups.php
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / actions / usergroups.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * User groups information
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Personal
23  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/grouplist.php';
36
37 /**
38  * User groups page
39  *
40  * Show the groups a user belongs to
41  *
42  * @category Personal
43  * @package  StatusNet
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/
47  */
48 class UsergroupsAction extends ProfileAction
49 {
50     var $page = null;
51     var $profile = null;
52
53     function isReadOnly($args)
54     {
55         return true;
56     }
57
58     function title()
59     {
60         if ($this->page == 1) {
61             // TRANS: Page title for first page of groups for a user.
62             // TRANS: %s is a nickname.
63             return sprintf(_('%s groups'), $this->user->nickname);
64         } else {
65             // TRANS: Page title for all but the first page of groups for a user.
66             // TRANS: %1$s is a nickname, %2$d is a page number.
67             return sprintf(_('%1$s groups, page %2$d'),
68                            $this->user->nickname,
69                            $this->page);
70         }
71     }
72
73     function prepare($args)
74     {
75         parent::prepare($args);
76
77         $nickname_arg = $this->arg('nickname');
78         $nickname = common_canonical_nickname($nickname_arg);
79
80         // Permanent redirect on non-canonical nickname
81
82         if ($nickname_arg != $nickname) {
83             $args = array('nickname' => $nickname);
84             if ($this->arg('page') && $this->arg('page') != 1) {
85                 $args['page'] = $this->arg['page'];
86             }
87             common_redirect(common_local_url('usergroups', $args), 301);
88             return false;
89         }
90
91         $this->user = User::staticGet('nickname', $nickname);
92
93         if (!$this->user) {
94             // TRANS: Client error displayed requesting groups for a non-existing user.
95             $this->clientError(_('No such user.'), 404);
96             return false;
97         }
98
99         $this->profile = $this->user->getProfile();
100
101         if (!$this->profile) {
102             // TRANS: Error message displayed when referring to a user without a profile.
103             $this->serverError(_('User has no profile.'));
104             return false;
105         }
106
107         $this->page = $this->trimmed('page', 1);
108
109         return true;
110     }
111
112     function handle($args)
113     {
114         parent::handle($args);
115         $this->showPage();
116     }
117
118     function showContent()
119     {
120         $this->elementStart('p', array('id' => 'new_group'));
121         $this->element('a', array('href' => common_local_url('newgroup'),
122                                   'class' => 'more'),
123                        // TRANS: Link text on group page to create a new group.
124                        _('Create a new group'));
125         $this->elementEnd('p');
126
127         $this->elementStart('p', array('id' => 'group_search'));
128         $this->element('a', array('href' => common_local_url('groupsearch'),
129                                   'class' => 'more'),
130                        // TRANS: Link text on group page to search for groups.
131                        _('Search for more groups'));
132         $this->elementEnd('p');
133
134         if (Event::handle('StartShowUserGroupsContent', array($this))) {
135             $offset = ($this->page-1) * GROUPS_PER_PAGE;
136             $limit =  GROUPS_PER_PAGE + 1;
137
138             $groups = $this->user->getGroups($offset, $limit);
139
140             if ($groups) {
141                 $gl = new GroupList($groups, $this->user, $this);
142                 $cnt = $gl->show();
143                 if (0 == $cnt) {
144                     $this->showEmptyListMessage();
145                 }
146             }
147
148             $this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE,
149                               $this->page, 'usergroups',
150                               array('nickname' => $this->user->nickname));
151
152             Event::handle('EndShowUserGroupsContent', array($this));
153         }
154     }
155
156     function showEmptyListMessage()
157     {
158         // TRANS: Text on group page for a user that is not a member of any group.
159         // TRANS: %s is a user nickname.
160         $message = sprintf(_('%s is not a member of any group.'), $this->user->nickname) . ' ';
161
162         if (common_logged_in()) {
163             $current_user = common_current_user();
164             if ($this->user->id === $current_user->id) {
165                 // TRANS: Text on group page for a user that is not a member of any group. This message contains
166                 // TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed.
167                 $message .= _('Try [searching for groups](%%action.groupsearch%%) and joining them.');
168             }
169         }
170         $this->elementStart('div', 'guide');
171         $this->raw(common_markup_to_html($message));
172         $this->elementEnd('div');
173     }
174
175     function showProfileBlock()
176     {
177         $block = new AccountProfileBlock($this, $this->profile);
178         $block->show();
179     }
180 }