]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileaction.php
029c21845d6630088189eb2c2731537c92011e84
[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
173         $this->elementStart('div', array('id' => 'entity_statistics',
174                                          'class' => 'section'));
175
176         $this->element('h2', null, _('Statistics'));
177
178         // Other stats...?
179         $this->elementStart('dl', 'entity_user-id');
180         $this->element('dt', null, _('User ID'));
181         $this->element('dd', null, $this->profile->id);
182         $this->elementEnd('dl');
183
184         $this->elementStart('dl', 'entity_member-since');
185         $this->element('dt', null, _('Member since'));
186         $this->element('dd', null, date('j M Y',
187                                         strtotime($this->profile->created)));
188         $this->elementEnd('dl');
189
190         $this->elementStart('dl', 'entity_subscriptions');
191         $this->elementStart('dt');
192         $this->element('a', array('href' => common_local_url('subscriptions',
193                                                              array('nickname' => $this->profile->nickname))),
194                        _('Subscriptions'));
195         $this->elementEnd('dt');
196         $this->element('dd', null, $subs_count);
197         $this->elementEnd('dl');
198
199         $this->elementStart('dl', 'entity_subscribers');
200         $this->elementStart('dt');
201         $this->element('a', array('href' => common_local_url('subscribers',
202                                                              array('nickname' => $this->profile->nickname))),
203                        _('Subscribers'));
204         $this->elementEnd('dt');
205         $this->element('dd', 'subscribers', $subbed_count);
206         $this->elementEnd('dl');
207
208         $this->elementStart('dl', 'entity_groups');
209         $this->elementStart('dt');
210         $this->element('a', array('href' => common_local_url('usergroups',
211                                                              array('nickname' => $this->profile->nickname))),
212                        _('Groups'));
213         $this->elementEnd('dt');
214         $this->element('dd', 'groups', $group_count);
215         $this->elementEnd('dl');
216
217         $this->elementStart('dl', 'entity_notices');
218         $this->element('dt', null, _('Notices'));
219         $this->element('dd', null, $notice_count);
220         $this->elementEnd('dl');
221
222         $this->elementEnd('div');
223     }
224
225     function showGroups()
226     {
227         $groups = $this->user->getGroups(0, GROUPS_PER_MINILIST + 1);
228
229         $this->elementStart('div', array('id' => 'entity_groups',
230                                          'class' => 'section'));
231         if (Event::handle('StartShowGroupsMiniList', array($this))) {
232             $this->element('h2', null, _('Groups'));
233
234             if ($groups) {
235                 $gml = new GroupMiniList($groups, $this->user, $this);
236                 $cnt = $gml->show();
237                 if ($cnt == 0) {
238                     $this->element('p', null, _('(None)'));
239                 }
240             }
241
242             if ($cnt > GROUPS_PER_MINILIST) {
243                 $this->elementStart('p');
244                 $this->element('a', array('href' => common_local_url('usergroups',
245                                                                      array('nickname' => $this->profile->nickname)),
246                                           'class' => 'more'),
247                                _('All groups'));
248                 $this->elementEnd('p');
249             }
250
251             Event::handle('EndShowGroupsMiniList', array($this));
252         }
253             $this->elementEnd('div');
254     }
255 }
256