]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileaction.php
Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.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
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         $this->elementEnd('div');
131     }
132
133     function showSubscribers()
134     {
135         $profile = $this->user->getSubscribers(0, PROFILES_PER_MINILIST + 1);
136
137         $this->elementStart('div', array('id' => 'entity_subscribers',
138                                          'class' => 'section'));
139
140         $this->element('h2', null, _('Subscribers'));
141
142         $cnt = 0;
143
144         if (!empty($profile)) {
145             $pml = new ProfileMiniList($profile, $this);
146             $cnt = $pml->show();
147             if ($cnt == 0) {
148                 $this->element('p', null, _('(None)'));
149             }
150         }
151
152         if ($cnt > PROFILES_PER_MINILIST) {
153             $this->elementStart('p');
154             $this->element('a', array('href' => common_local_url('subscribers',
155                                                                  array('nickname' => $this->profile->nickname)),
156                                       'class' => 'more'),
157                            _('All subscribers'));
158             $this->elementEnd('p');
159         }
160
161         $this->elementEnd('div');
162     }
163
164     function showStatistics()
165     {
166         $subs_count   = $this->profile->subscriptionCount();
167         $subbed_count = $this->profile->subscriberCount();
168         $notice_count = $this->profile->noticeCount();
169         $group_count  = $this->user->getGroups()->N;
170
171         $this->elementStart('div', array('id' => 'entity_statistics',
172                                          'class' => 'section'));
173
174         $this->element('h2', null, _('Statistics'));
175
176         // Other stats...?
177         $this->elementStart('dl', 'entity_user-id');
178         $this->element('dt', null, _('User ID'));
179         $this->element('dd', null, $this->profile->id);
180         $this->elementEnd('dl');
181
182         $this->elementStart('dl', 'entity_member-since');
183         $this->element('dt', null, _('Member since'));
184         $this->element('dd', null, date('j M Y',
185                                         strtotime($this->profile->created)));
186         $this->elementEnd('dl');
187
188         $this->elementStart('dl', 'entity_subscriptions');
189         $this->elementStart('dt');
190         $this->element('a', array('href' => common_local_url('subscriptions',
191                                                              array('nickname' => $this->profile->nickname))),
192                        _('Subscriptions'));
193         $this->elementEnd('dt');
194         $this->element('dd', null, $subs_count);
195         $this->elementEnd('dl');
196
197         $this->elementStart('dl', 'entity_subscribers');
198         $this->elementStart('dt');
199         $this->element('a', array('href' => common_local_url('subscribers',
200                                                              array('nickname' => $this->profile->nickname))),
201                        _('Subscribers'));
202         $this->elementEnd('dt');
203         $this->element('dd', 'subscribers', $subbed_count);
204         $this->elementEnd('dl');
205
206         $this->elementStart('dl', 'entity_groups');
207         $this->elementStart('dt');
208         $this->element('a', array('href' => common_local_url('usergroups',
209                                                              array('nickname' => $this->profile->nickname))),
210                        _('Groups'));
211         $this->elementEnd('dt');
212         $this->element('dd', 'groups', $group_count);
213         $this->elementEnd('dl');
214
215         $this->elementStart('dl', 'entity_notices');
216         $this->element('dt', null, _('Notices'));
217         $this->element('dd', null, $notice_count);
218         $this->elementEnd('dl');
219
220         $this->elementEnd('div');
221     }
222
223     function showGroups()
224     {
225         $groups = $this->user->getGroups(0, GROUPS_PER_MINILIST + 1);
226
227         $this->elementStart('div', array('id' => 'entity_groups',
228                                          'class' => 'section'));
229
230         $this->element('h2', null, _('Groups'));
231
232         if ($groups) {
233             $gml = new GroupMiniList($groups, $this->user, $this);
234             $cnt = $gml->show();
235             if ($cnt == 0) {
236                 $this->element('p', null, _('(None)'));
237             }
238         }
239
240         if ($cnt > GROUPS_PER_MINILIST) {
241             $this->elementStart('p');
242             $this->element('a', array('href' => common_local_url('usergroups',
243                                                                  array('nickname' => $this->profile->nickname)),
244                                       'class' => 'more'),
245                            _('All groups'));
246             $this->elementEnd('p');
247         }
248
249         $this->elementEnd('div');
250     }
251 }
252