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