3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/stream.php');
24 define('SUBSCRIPTIONS_PER_ROW', 4);
25 define('SUBSCRIPTIONS', 80);
27 class ShowstreamAction extends StreamAction {
29 function handle($args) {
31 parent::handle($args);
33 $nickname = common_canonical_nickname($this->arg('nickname'));
34 $user = User::staticGet('nickname', $nickname);
37 $this->no_such_user();
41 $profile = $user->getProfile();
44 common_server_error(_t('User record exists without profile.'));
48 # Looks like we're good; start output
50 # For YADIS discovery, we also have a <meta> tag
52 header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' =>
55 common_show_header($profile->nickname,
56 array($this, 'show_header'), $user,
57 array($this, 'show_top'));
59 $this->show_profile($profile);
61 $this->show_notices($profile);
66 function show_top($user) {
68 $cur = common_current_user();
70 if ($cur && $cur->id == $user->id) {
71 common_notice_form('showstream');
77 function show_header($user) {
78 common_element('link', array('rel' => 'alternate',
79 'href' => common_local_url('userrss', array('nickname' =>
81 'type' => 'application/rss+xml',
82 'title' => _t('Notice feed for ') . $user->nickname));
83 common_element('link', array('rel' => 'meta',
84 'href' => common_local_url('foaf', array('nickname' =>
86 'type' => 'application/rdf+xml',
88 # for remote subscriptions etc.
89 common_element('meta', array('http-equiv' => 'X-XRDS-Location',
90 'content' => common_local_url('xrds', array('nickname' =>
94 function no_such_user() {
95 common_user_error('No such user');
98 function show_profile($profile) {
100 common_element_start('div', array('id' => 'profile'));
102 $this->show_personal($profile);
104 $this->show_last_notice($profile);
106 $cur = common_current_user();
108 $this->show_subscriptions($profile);
110 common_element_end('div');
113 function show_personal($profile) {
115 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
116 common_element_start('div', array('id' => 'profile_avatar'));
117 common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_PROFILE_SIZE),
118 'class' => 'avatar profile',
119 'width' => AVATAR_PROFILE_SIZE,
120 'height' => AVATAR_PROFILE_SIZE,
121 'alt' => $profile->nickname));
122 $cur = common_current_user();
124 if ($cur->id != $profile->id) {
125 if ($cur->isSubscribed($profile)) {
126 $this->show_unsubscribe_form($profile);
128 $this->show_subscribe_form($profile);
132 $this->show_remote_subscribe_form($profile);
134 common_element_end('div');
136 common_element_start('div', array('id' => 'profile_information'));
138 if ($profile->fullname) {
139 common_element('h1', NULL, $profile->fullname);
141 if ($profile->location) {
142 common_element('p', 'location', $profile->location);
145 common_element('p', 'description', htmlspecialchars($profile->bio));
147 if ($profile->homepage) {
148 common_element_start('p', 'website');
149 common_element('a', array('href' => $profile->homepage),
151 common_element_end('p');
154 $this->show_statistics($profile);
156 common_element_end('div');
159 function show_subscribe_form($profile) {
160 common_element_start('form', array('id' => 'subscribe', 'method' => 'POST',
161 'action' => common_local_url('subscribe')));
162 common_element('input', array('id' => 'subscribeto',
163 'name' => 'subscribeto',
165 'value' => $profile->nickname));
166 common_element('input', array('type' => 'submit',
168 'value' => _t('Subscribe')));
169 common_element_end('form');
172 function show_remote_subscribe_form($profile) {
173 common_element_start('form', array('id' => 'remotesubscribe',
175 'action' => common_local_url('remotesubscribe')));
176 common_hidden('nickname', $profile->nickname);
177 common_element('input', array('name' => 'profile_url',
179 'id' => 'profile_url',
181 common_element('input', array('type' => 'submit',
184 'value' => _t('Subscribe'),
185 'class' => 'submit'));
186 common_element_end('form');
189 function show_unsubscribe_form($profile) {
190 common_element_start('form', array('id' => 'unsubscribe', 'method' => 'POST',
191 'action' => common_local_url('unsubscribe')));
192 common_element('input', array('id' => 'unsubscribeto',
193 'name' => 'unsubscribeto',
195 'value' => $profile->nickname));
196 common_element('input', array('type' => 'submit',
198 'value' => _t('Unsubscribe')));
199 common_element_end('form');
202 function show_subscriptions($profile) {
205 $subs = DB_DataObject::factory('subscription');
206 $subs->subscriber = $profile->id;
207 $subs->orderBy('created DESC');
209 # We ask for an extra one to know if we need to do another page
211 $subs->limit(0, SUBSCRIPTIONS + 1);
213 $subs_count = $subs->find();
215 common_element_start('div', array('id' => 'subscriptions'));
217 common_element('h2', NULL, _t('Subscriptions'));
219 if ($subs_count > 0) {
221 common_element_start('ul', array('id' => 'subscriptions_avatars'));
223 for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
225 if (!$subs->fetch()) {
226 common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
230 $other = Profile::staticGet($subs->subscribed);
232 common_element_start('li');
233 common_element_start('a', array('title' => ($other->fullname) ?
236 'href' => $other->profileurl,
237 'class' => 'subscription'));
238 $avatar = $other->getAvatar(AVATAR_MINI_SIZE);
239 common_element('img', array('src' => (($avatar) ? $avatar->url : common_default_avatar(AVATAR_MINI_SIZE)),
240 'width' => AVATAR_MINI_SIZE,
241 'height' => AVATAR_MINI_SIZE,
242 'class' => 'avatar mini',
243 'alt' => ($other->fullname) ?
246 common_element_end('a');
247 common_element_end('li');
250 common_element_end('ul');
253 if ($subs_count > SUBSCRIPTIONS) {
254 common_element_start('p', array('id' => 'subscriptions_viewall'));
256 common_element('a', array('href' => common_local_url('subscriptions',
257 array('nickname' => $profile->nickname)),
258 'class' => 'moresubscriptions'),
259 _t('All subscriptions'));
260 common_element_end('p');
263 common_element_end('div');
266 function show_statistics($profile) {
268 // XXX: WORM cache this
269 $subs = DB_DataObject::factory('subscription');
270 $subs->subscriber = $profile->id;
271 $subs_count = (int) $subs->count();
273 $subbed = DB_DataObject::factory('subscription');
274 $subbed->subscribed = $profile->id;
275 $subbed_count = (int) $subbed->count();
277 $notices = DB_DataObject::factory('notice');
278 $notices->profile_id = $profile->id;
279 $notice_count = (int) $notices->count();
281 common_element_start('div', 'statistics');
282 common_element('h2', 'statistics', _t('Statistics'));
285 common_element_start('dl', 'statistics');
286 common_element_start('dt', 'subscriptions');
287 common_element('a', array('href' => common_local_url('subscriptions',
288 array('nickname' => $profile->nickname))),
289 _t('Subscriptions'));
290 common_element_end('dt');
291 common_element('dd', 'subscriptions', $subs_count);
292 common_element_start('dt', 'subscribers');
293 common_element('a', array('href' => common_local_url('subscribers',
294 array('nickname' => $profile->nickname))),
296 common_element_end('dt');
297 common_element('dd', 'subscribers', $subbed_count);
298 common_element('dt', 'notices', _t('Notices'));
299 common_element('dd', 'notices', $notice_count);
300 common_element_end('dl');
302 common_element_end('div');
305 function show_notices($profile) {
307 $notice = DB_DataObject::factory('notice');
308 $notice->profile_id = $profile->id;
310 $notice->orderBy('created DESC');
312 $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
314 $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
316 $cnt = $notice->find();
319 common_element_start('ul', array('id' => 'notices'));
321 for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
322 if ($notice->fetch()) {
323 $this->show_notice($notice);
330 common_element_end('ul');
332 common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
333 'showstream', array('nickname' => $profile->nickname));
336 function show_last_notice($profile) {
338 common_element('h2', NULL, _t('Currently'));
340 $notice = DB_DataObject::factory('notice');
341 $notice->profile_id = $profile->id;
342 $notice->orderBy('created DESC');
343 $notice->limit(0, 1);
345 if ($notice->find(true)) {
346 # FIXME: URL, image, video, audio
347 common_element_start('p', array('class' => 'notice_current'));
348 common_raw(common_render_content($notice->content, $notice));
349 common_element_end('p');
353 function show_notice($notice) {
354 $profile = $notice->getProfile();
356 common_element_start('li', array('class' => 'notice_single',
357 'id' => 'notice-' . $notice->id));
358 $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
359 # FIXME: URL, image, video, audio
360 common_element_start('p');
361 common_raw(common_render_content($notice->content, $notice));
362 common_element_end('p');
363 common_element_start('p', array('class' => 'time'));
364 common_element('a', array('class' => 'notice',
365 'href' => $noticeurl),
366 common_date_string($notice->created));
367 common_element_end('p');
368 common_element_end('li');