]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileaction.php
Merge branch 'master' of git@gitorious.org:statusnet/mainline
[quix0rs-gnu-social.git] / lib / profileaction.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Common parent of Personal and Profile actions
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/profileminilist.php';
36 require_once INSTALLDIR.'/lib/groupminilist.php';
37
38 /**
39  * Profile action common superclass
40  *
41  * Abstracts out common code from profile and personal tabs
42  *
43  * @category Personal
44  * @package  StatusNet
45  * @author   Evan Prodromou <evan@status.net>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://status.net/
48  */
49
50 class ProfileAction extends OwnerDesignAction
51 {
52     var $page    = null;
53     var $profile = null;
54     var $tag     = null;
55
56     function prepare($args)
57     {
58         parent::prepare($args);
59
60         $nickname_arg = $this->arg('nickname');
61         $nickname     = common_canonical_nickname($nickname_arg);
62
63         // Permanent redirect on non-canonical nickname
64
65         if ($nickname_arg != $nickname) {
66             $args = array('nickname' => $nickname);
67             if ($this->arg('page') && $this->arg('page') != 1) {
68                 $args['page'] = $this->arg['page'];
69             }
70             common_redirect(common_local_url($this->trimmed('action'), $args), 301);
71             return false;
72         }
73
74         $this->user = User::staticGet('nickname', $nickname);
75
76         if (!$this->user) {
77             $this->clientError(_('No such user.'), 404);
78             return false;
79         }
80
81         $this->profile = $this->user->getProfile();
82
83         if (!$this->profile) {
84             $this->serverError(_('User has no profile.'));
85             return false;
86         }
87
88         $this->tag = $this->trimmed('tag');
89         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
90         common_set_returnto($this->selfUrl());
91         return true;
92     }
93
94     function showSections()
95     {
96         $this->showSubscriptions();
97         $this->showSubscribers();
98         $this->showGroups();
99         $this->showStatistics();
100     }
101
102     function showSubscriptions()
103     {
104         $profile = $this->user->getSubscriptions(0, PROFILES_PER_MINILIST + 1);
105
106         $this->elementStart('div', array('id' => 'entity_subscriptions',
107                                          'class' => 'section'));
108
109         if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
110             $this->element('h2', null, _('Subscriptions'));
111
112             $cnt = 0;
113
114             if (!empty($profile)) {
115                 $pml = new ProfileMiniList($profile, $this);
116                 $cnt = $pml->show();
117                 if ($cnt == 0) {
118                     $this->element('p', null, _('(None)'));
119                 }
120             }
121
122             if ($cnt > PROFILES_PER_MINILIST) {
123                 $this->elementStart('p');
124                 $this->element('a', array('href' => common_local_url('subscriptions',
125                                                                      array('nickname' => $this->profile->nickname)),
126                                           'class' => 'more'),
127                                _('All subscriptions'));
128                 $this->elementEnd('p');
129             }
130
131             Event::handle('EndShowSubscriptionsMiniList', array($this));
132         }
133         $this->elementEnd('div');
134     }
135
136     function showSubscribers()
137     {
138         $profile = $this->user->getSubscribers(0, PROFILES_PER_MINILIST + 1);
139
140         $this->elementStart('div', array('id' => 'entity_subscribers',
141                                          'class' => 'section'));
142
143         $this->element('h2', null, _('Subscribers'));
144
145         $cnt = 0;
146
147         if (!empty($profile)) {
148             $pml = new ProfileMiniList($profile, $this);
149             $cnt = $pml->show();
150             if ($cnt == 0) {
151                 $this->element('p', null, _('(None)'));
152             }
153         }
154
155         if ($cnt > PROFILES_PER_MINILIST) {
156             $this->elementStart('p');
157             $this->element('a', array('href' => common_local_url('subscribers',
158                                                                  array('nickname' => $this->profile->nickname)),
159                                       'class' => 'more'),
160                            _('All subscribers'));
161             $this->elementEnd('p');
162         }
163
164         $this->elementEnd('div');
165     }
166
167     function showStatistics()
168     {
169         $subs_count   = $this->profile->subscriptionCount();
170         $subbed_count = $this->profile->subscriberCount();
171         $notice_count = $this->profile->noticeCount();
172         $group_count  = $this->user->getGroups()->N;
173
174         $this->elementStart('div', array('id' => 'entity_statistics',
175                                          'class' => 'section'));
176
177         $this->element('h2', null, _('Statistics'));
178
179         // Other stats...?
180         $this->elementStart('dl', 'entity_user-id');
181         $this->element('dt', null, _('User ID'));
182         $this->element('dd', null, $this->profile->id);
183         $this->elementEnd('dl');
184
185         $this->elementStart('dl', 'entity_member-since');
186         $this->element('dt', null, _('Member since'));
187         $this->element('dd', null, date('j M Y',
188                                         strtotime($this->profile->created)));
189         $this->elementEnd('dl');
190
191         $this->elementStart('dl', 'entity_subscriptions');
192         $this->elementStart('dt');
193         $this->element('a', array('href' => common_local_url('subscriptions',
194                                                              array('nickname' => $this->profile->nickname))),
195                        _('Subscriptions'));
196         $this->elementEnd('dt');
197         $this->element('dd', null, $subs_count);
198         $this->elementEnd('dl');
199
200         $this->elementStart('dl', 'entity_subscribers');
201         $this->elementStart('dt');
202         $this->element('a', array('href' => common_local_url('subscribers',
203                                                              array('nickname' => $this->profile->nickname))),
204                        _('Subscribers'));
205         $this->elementEnd('dt');
206         $this->element('dd', 'subscribers', $subbed_count);
207         $this->elementEnd('dl');
208
209         $this->elementStart('dl', 'entity_groups');
210         $this->elementStart('dt');
211         $this->element('a', array('href' => common_local_url('usergroups',
212                                                              array('nickname' => $this->profile->nickname))),
213                        _('Groups'));
214         $this->elementEnd('dt');
215         $this->element('dd', 'groups', $group_count);
216         $this->elementEnd('dl');
217
218         $this->elementStart('dl', 'entity_notices');
219         $this->element('dt', null, _('Notices'));
220         $this->element('dd', null, $notice_count);
221         $this->elementEnd('dl');
222
223         $this->elementEnd('div');
224     }
225
226     function showGroups()
227     {
228         $groups = $this->user->getGroups(0, GROUPS_PER_MINILIST + 1);
229
230         $this->elementStart('div', array('id' => 'entity_groups',
231                                          'class' => 'section'));
232
233         $this->element('h2', null, _('Groups'));
234
235         if ($groups) {
236             $gml = new GroupMiniList($groups, $this->user, $this);
237             $cnt = $gml->show();
238             if ($cnt == 0) {
239                 $this->element('p', null, _('(None)'));
240             }
241         }
242
243         if ($cnt > GROUPS_PER_MINILIST) {
244             $this->elementStart('p');
245             $this->element('a', array('href' => common_local_url('usergroups',
246                                                                  array('nickname' => $this->profile->nickname)),
247                                       'class' => 'more'),
248                            _('All groups'));
249             $this->elementEnd('p');
250         }
251
252         $this->elementEnd('div');
253     }
254 }
255