3 * Laconica, 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@controlyourself.ca>
25 * @author Sarven Capadisli <csarven@controlyourself.ca>
26 * @copyright 2008-2009 Control Yourself, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://laconi.ca/
31 if (!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@controlyourself.ca>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://laconi.ca/
50 class ProfileAction extends OwnerDesignAction
56 function prepare($args)
58 parent::prepare($args);
60 $nickname_arg = $this->arg('nickname');
61 $nickname = common_canonical_nickname($nickname_arg);
63 // Permanent redirect on non-canonical nickname
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'];
70 common_redirect(common_local_url($this->trimmed('action'), $args), 301);
74 $this->user = User::staticGet('nickname', $nickname);
77 $this->clientError(_('No such user.'), 404);
81 $this->profile = $this->user->getProfile();
83 if (!$this->profile) {
84 $this->serverError(_('User has no profile.'));
88 $this->tag = $this->trimmed('tag');
89 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
90 common_set_returnto($this->selfUrl());
94 function showSections()
96 $this->showSubscriptions();
97 $this->showSubscribers();
99 $this->showStatistics();
102 function showSubscriptions()
104 $profile = $this->user->getSubscriptions(0, PROFILES_PER_MINILIST + 1);
106 $this->elementStart('div', array('id' => 'entity_subscriptions',
107 'class' => 'section'));
109 $this->element('h2', null, _('Subscriptions'));
112 $pml = new ProfileMiniList($profile, $this);
115 $this->element('p', null, _('(None)'));
119 if ($cnt > PROFILES_PER_MINILIST) {
120 $this->elementStart('p');
121 $this->element('a', array('href' => common_local_url('subscriptions',
122 array('nickname' => $this->profile->nickname)),
124 _('All subscriptions'));
125 $this->elementEnd('p');
128 $this->elementEnd('div');
131 function showSubscribers()
133 $profile = $this->user->getSubscribers(0, PROFILES_PER_MINILIST + 1);
135 $this->elementStart('div', array('id' => 'entity_subscribers',
136 'class' => 'section'));
138 $this->element('h2', null, _('Subscribers'));
141 $pml = new ProfileMiniList($profile, $this);
144 $this->element('p', null, _('(None)'));
148 if ($cnt > PROFILES_PER_MINILIST) {
149 $this->elementStart('p');
150 $this->element('a', array('href' => common_local_url('subscribers',
151 array('nickname' => $this->profile->nickname)),
153 _('All subscribers'));
154 $this->elementEnd('p');
157 $this->elementEnd('div');
160 function showStatistics()
162 // XXX: WORM cache this
163 $subs = new Subscription();
164 $subs->subscriber = $this->profile->id;
165 $subs_count = (int) $subs->count() - 1;
167 $subbed = new Subscription();
168 $subbed->subscribed = $this->profile->id;
169 $subbed_count = (int) $subbed->count() - 1;
171 $notices = new Notice();
172 $notices->profile_id = $this->profile->id;
173 $notice_count = (int) $notices->count();
175 $this->elementStart('div', array('id' => 'entity_statistics',
176 'class' => 'section'));
178 $this->element('h2', null, _('Statistics'));
181 $this->elementStart('dl', 'entity_user-id');
182 $this->element('dt', null, _('User ID'));
183 $this->element('dd', null, $this->profile->id);
184 $this->elementEnd('dl');
186 $this->elementStart('dl', 'entity_member-since');
187 $this->element('dt', null, _('Member since'));
188 $this->element('dd', null, date('j M Y',
189 strtotime($this->profile->created)));
190 $this->elementEnd('dl');
192 $this->elementStart('dl', 'entity_subscriptions');
193 $this->elementStart('dt');
194 $this->element('a', array('href' => common_local_url('subscriptions',
195 array('nickname' => $this->profile->nickname))),
197 $this->elementEnd('dt');
198 $this->element('dd', null, (is_int($subs_count)) ? $subs_count : '0');
199 $this->elementEnd('dl');
201 $this->elementStart('dl', 'entity_subscribers');
202 $this->elementStart('dt');
203 $this->element('a', array('href' => common_local_url('subscribers',
204 array('nickname' => $this->profile->nickname))),
206 $this->elementEnd('dt');
207 $this->element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
208 $this->elementEnd('dl');
210 $this->elementStart('dl', 'entity_notices');
211 $this->element('dt', null, _('Notices'));
212 $this->element('dd', null, (is_int($notice_count)) ? $notice_count : '0');
213 $this->elementEnd('dl');
215 $this->elementEnd('div');
218 function showGroups()
220 $groups = $this->user->getGroups(0, GROUPS_PER_MINILIST + 1);
222 $this->elementStart('div', array('id' => 'entity_groups',
223 'class' => 'section'));
225 $this->element('h2', null, _('Groups'));
228 $gml = new GroupMiniList($groups, $this->user, $this);
231 $this->element('p', null, _('(None)'));
235 if ($cnt > GROUPS_PER_MINILIST) {
236 $this->elementStart('p');
237 $this->element('a', array('href' => common_local_url('usergroups',
238 array('nickname' => $this->profile->nickname)),
241 $this->elementEnd('p');
244 $this->elementEnd('div');