]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileaction.php
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 1.0.x
[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         if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
109             $this->element('h2', null, _('Subscriptions'));
110
111             $cnt = 0;
112
113             if (!empty($profile)) {
114                 $pml = new ProfileMiniList($profile, $this);
115                 $cnt = $pml->show();
116                 if ($cnt == 0) {
117                     $this->element('p', null, _('(None)'));
118                 }
119             }
120
121             if ($cnt > PROFILES_PER_MINILIST) {
122                 $this->elementStart('p');
123                 $this->element('a', array('href' => common_local_url('subscriptions',
124                                                                      array('nickname' => $this->profile->nickname)),
125                                           'class' => 'more'),
126                                _('All subscriptions'));
127                 $this->elementEnd('p');
128             }
129
130             Event::handle('EndShowSubscriptionsMiniList', array($this));
131         }
132         $this->elementEnd('div');
133     }
134
135     function showSubscribers()
136     {
137         $profile = $this->user->getSubscribers(0, PROFILES_PER_MINILIST + 1);
138
139         $this->elementStart('div', array('id' => 'entity_subscribers',
140                                          'class' => 'section'));
141
142         $this->element('h2', null, _('Subscribers'));
143
144         $cnt = 0;
145
146         if (!empty($profile)) {
147             $pml = new ProfileMiniList($profile, $this);
148             $cnt = $pml->show();
149             if ($cnt == 0) {
150                 $this->element('p', null, _('(None)'));
151             }
152         }
153
154         if ($cnt > PROFILES_PER_MINILIST) {
155             $this->elementStart('p');
156             $this->element('a', array('href' => common_local_url('subscribers',
157                                                                  array('nickname' => $this->profile->nickname)),
158                                       'class' => 'more'),
159                            _('All subscribers'));
160             $this->elementEnd('p');
161         }
162
163         $this->elementEnd('div');
164     }
165
166     function showStatistics()
167     {
168         $subs_count   = $this->profile->subscriptionCount();
169         $subbed_count = $this->profile->subscriberCount();
170         $notice_count = $this->profile->noticeCount();
171         $group_count  = $this->user->getGroups()->N;
172         $age_days     = (time() - strtotime($this->profile->created)) / 86400;
173         if ($age_days < 1) {
174             // Rather than extrapolating out to a bajillion...
175             $age_days = 1;
176         }
177         $daily_count = round($notice_count / $age_days);
178
179         $this->elementStart('div', array('id' => 'entity_statistics',
180                                          'class' => 'section'));
181
182         $this->element('h2', null, _('Statistics'));
183
184         // Other stats...?
185         $this->elementStart('dl', 'entity_user-id');
186         $this->element('dt', null, _('User ID'));
187         $this->element('dd', null, $this->profile->id);
188         $this->elementEnd('dl');
189
190         $this->elementStart('dl', 'entity_member-since');
191         $this->element('dt', null, _('Member since'));
192         $this->element('dd', null, date('j M Y',
193                                         strtotime($this->profile->created)));
194         $this->elementEnd('dl');
195
196         $this->elementStart('dl', 'entity_subscriptions');
197         $this->elementStart('dt');
198         $this->element('a', array('href' => common_local_url('subscriptions',
199                                                              array('nickname' => $this->profile->nickname))),
200                        _('Subscriptions'));
201         $this->elementEnd('dt');
202         $this->element('dd', null, $subs_count);
203         $this->elementEnd('dl');
204
205         $this->elementStart('dl', 'entity_subscribers');
206         $this->elementStart('dt');
207         $this->element('a', array('href' => common_local_url('subscribers',
208                                                              array('nickname' => $this->profile->nickname))),
209                        _('Subscribers'));
210         $this->elementEnd('dt');
211         $this->element('dd', 'subscribers', $subbed_count);
212         $this->elementEnd('dl');
213
214         $this->elementStart('dl', 'entity_groups');
215         $this->elementStart('dt');
216         $this->element('a', array('href' => common_local_url('usergroups',
217                                                              array('nickname' => $this->profile->nickname))),
218                        _('Groups'));
219         $this->elementEnd('dt');
220         $this->element('dd', 'groups', $group_count);
221         $this->elementEnd('dl');
222
223         $this->elementStart('dl', 'entity_notices');
224         $this->element('dt', null, _('Notices'));
225         $this->element('dd', null, $notice_count);
226         $this->elementEnd('dl');
227
228         $this->elementStart('dl', 'entity_daily_notices');
229         // TRANS: Average count of posts made per day since account registration
230         $this->element('dt', null, _('Daily average'));
231         $this->element('dd', null, $daily_count);
232         $this->elementEnd('dl');
233
234         $this->elementEnd('div');
235     }
236
237     function showGroups()
238     {
239         $groups = $this->user->getGroups(0, GROUPS_PER_MINILIST + 1);
240
241         $this->elementStart('div', array('id' => 'entity_groups',
242                                          'class' => 'section'));
243         if (Event::handle('StartShowGroupsMiniList', array($this))) {
244             $this->element('h2', null, _('Groups'));
245
246             if ($groups) {
247                 $gml = new GroupMiniList($groups, $this->user, $this);
248                 $cnt = $gml->show();
249                 if ($cnt == 0) {
250                     $this->element('p', null, _('(None)'));
251                 }
252             }
253
254             if ($cnt > GROUPS_PER_MINILIST) {
255                 $this->elementStart('p');
256                 $this->element('a', array('href' => common_local_url('usergroups',
257                                                                      array('nickname' => $this->profile->nickname)),
258                                           'class' => 'more'),
259                                _('All groups'));
260                 $this->elementEnd('p');
261             }
262
263             Event::handle('EndShowGroupsMiniList', array($this));
264         }
265             $this->elementEnd('div');
266     }
267 }
268