3 * StatusNet, the distributed open-source microblogging tool
5 * Common parent of Personal and Profile actions
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.
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.
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Sarven Capadisli <csarven@status.net>
26 * @copyright 2008-2011 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/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/profileminilist.php';
36 require_once INSTALLDIR.'/lib/groupminilist.php';
39 * Profile action common superclass
41 * Abstracts out common code from profile and personal tabs
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/
49 class ProfileAction extends Action
55 function prepare($args)
57 parent::prepare($args);
59 $nickname_arg = $this->arg('nickname');
60 $nickname = common_canonical_nickname($nickname_arg);
62 // Permanent redirect on non-canonical nickname
64 if ($nickname_arg != $nickname) {
65 $args = array('nickname' => $nickname);
66 if ($this->arg('page') && $this->arg('page') != 1) {
67 $args['page'] = $this->arg['page'];
69 common_redirect(common_local_url($this->trimmed('action'), $args), 301);
73 $this->user = User::staticGet('nickname', $nickname);
76 // TRANS: Client error displayed when calling a profile action without specifying a user.
77 $this->clientError(_('No such user.'), 404);
81 $this->profile = $this->user->getProfile();
83 if (!$this->profile) {
84 // TRANS: Error message displayed when referring to a user without a profile.
85 $this->serverError(_('User has no profile.'));
89 $this->tag = $this->trimmed('tag');
90 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
91 common_set_returnto($this->selfUrl());
95 function showSections()
97 $this->showSubscriptions();
98 $this->showSubscribers();
101 $this->showStatistics();
105 * Convenience function for common pattern of links to subscription/groups sections.
107 * @param string $actionClass
108 * @param string $title
109 * @param string $cssClass
111 private function statsSectionLink($actionClass, $title, $cssClass='')
113 $this->element('a', array('href' => common_local_url($actionClass,
114 array('nickname' => $this->profile->nickname)),
115 'class' => $cssClass),
119 function showSubscriptions()
121 $profile = $this->profile->getSubscriptions(0, PROFILES_PER_MINILIST + 1);
123 $this->elementStart('div', array('id' => 'entity_subscriptions',
124 'class' => 'section'));
125 if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
126 $this->elementStart('h2');
127 // TRANS: H2 text for user subscription statistics.
128 $this->statsSectionLink('subscriptions', _('Following'));
130 $this->text($this->profile->subscriptionCount());
131 $this->elementEnd('h2');
135 if (!empty($profile)) {
136 $pml = new ProfileMiniList($profile, $this);
139 // TRANS: Text for user subscription statistics if the user has no subscriptions.
140 $this->element('p', null, _('(None)'));
144 Event::handle('EndShowSubscriptionsMiniList', array($this));
146 $this->elementEnd('div');
149 function showSubscribers()
151 $profile = $this->profile->getSubscribers(0, PROFILES_PER_MINILIST + 1);
153 $this->elementStart('div', array('id' => 'entity_subscribers',
154 'class' => 'section'));
156 if (Event::handle('StartShowSubscribersMiniList', array($this))) {
158 $this->elementStart('h2');
159 // TRANS: H2 text for user subscriber statistics.
160 $this->statsSectionLink('subscribers', _('Followers'));
162 $this->text($this->profile->subscriberCount());
163 $this->elementEnd('h2');
167 if (!empty($profile)) {
168 $sml = new SubscribersMiniList($profile, $this);
171 // TRANS: Text for user subscriber statistics if user has no subscribers.
172 $this->element('p', null, _('(None)'));
176 Event::handle('EndShowSubscribersMiniList', array($this));
179 $this->elementEnd('div');
182 function showStatistics()
184 $notice_count = $this->profile->noticeCount();
185 $age_days = (time() - strtotime($this->profile->created)) / 86400;
187 // Rather than extrapolating out to a bajillion...
190 $daily_count = round($notice_count / $age_days);
192 $this->elementStart('div', array('id' => 'entity_statistics',
193 'class' => 'section'));
195 // TRANS: H2 text for user statistics.
196 $this->element('h2', null, _('Statistics'));
198 $profile = $this->profile;
199 $actionParams = array('nickname' => $profile->nickname);
203 // TRANS: Label for user statistics.
204 'label' => _('User ID'),
205 'value' => $profile->id,
208 'id' => 'member-since',
209 // TRANS: Label for user statistics.
210 'label' => _('Member since'),
211 'value' => date('j M Y', strtotime($profile->created))
215 // TRANS: Label for user statistics.
216 'label' => _('Notices'),
217 'value' => $notice_count,
220 'id' => 'daily_notices',
221 // TRANS: Label for user statistics.
222 // TRANS: Average count of posts made per day since account registration.
223 'label' => _('Daily average'),
224 'value' => $daily_count
228 // Give plugins a chance to add stats entries
229 Event::handle('ProfileStats', array($profile, &$stats));
231 foreach ($stats as $row) {
232 $this->showStatsRow($row);
234 $this->elementEnd('div');
237 private function showStatsRow($row)
239 $this->elementStart('dl', 'entity_' . $row['id']);
240 $this->elementStart('dt');
241 if (!empty($row['link'])) {
242 $this->element('a', array('href' => $row['link']), $row['label']);
244 $this->text($row['label']);
246 $this->elementEnd('dt');
247 $this->element('dd', null, $row['value']);
248 $this->elementEnd('dl');
251 function showGroups()
253 $groups = $this->profile->getGroups(0, GROUPS_PER_MINILIST + 1);
255 $this->elementStart('div', array('id' => 'entity_groups',
256 'class' => 'section'));
257 if (Event::handle('StartShowGroupsMiniList', array($this))) {
258 $this->elementStart('h2');
259 // TRANS: H2 text for user group membership statistics.
260 $this->statsSectionLink('usergroups', _('Groups'));
262 $this->text($this->profile->getGroups()->N);
263 $this->elementEnd('h2');
266 $gml = new GroupMiniList($groups, $this->profile, $this);
269 // TRANS: Text for user user group membership statistics if user is not a member of any group.
270 $this->element('p', null, _('(None)'));
274 Event::handle('EndShowGroupsMiniList', array($this));
276 $this->elementEnd('div');
281 $cur = common_current_user();
283 $lists = $this->profile->getLists($cur);
286 $this->elementStart('div', array('id' => 'entity_lists',
287 'class' => 'section'));
289 if (Event::handle('StartShowListsMiniList', array($this))) {
291 $url = common_local_url('peopletagsbyuser',
292 array('nickname' => $this->profile->nickname));
294 $this->elementStart('h2');
296 array('href' => $url),
297 // TRANS: H2 text for user list membership statistics.
300 $this->text($lists->N);
301 $this->elementEnd('h2');
303 $this->elementStart('ul');
308 while ($lists->fetch()) {
309 if (!empty($lists->mainpage)) {
310 $url = $lists->mainpage;
312 $url = common_local_url('showprofiletag',
313 array('tagger' => $this->profile->nickname,
314 'tag' => $lists->tag));
322 $this->element('a', array('href' => $url),
326 $this->elementEnd('ul');
328 Event::handle('EndShowListsMiniList', array($this));
330 $this->elementEnd('div');
335 class SubscribersMiniList extends ProfileMiniList
337 function newListItem($profile)
339 return new SubscribersMiniListItem($profile, $this->action);
343 class SubscribersMiniListItem extends ProfileMiniListItem
345 function linkAttributes()
347 $aAttrs = parent::linkAttributes();
348 if (common_config('nofollow', 'subscribers')) {
349 $aAttrs['rel'] .= ' nofollow';