2008-05-08 01:48:07 +09:00
|
|
|
<?php
|
2008-05-18 04:24:47 +09:00
|
|
|
/*
|
2008-05-15 04:26:48 +09:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-18 04:24:47 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-18 04:24:47 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-18 04:24:47 +09:00
|
|
|
*
|
2008-05-15 04:26:48 +09:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-18 00:47:01 +09:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-08 01:48:07 +09:00
|
|
|
|
2008-05-18 04:10:34 +09:00
|
|
|
require_once(INSTALLDIR.'/lib/stream.php');
|
|
|
|
|
2008-05-30 04:21:12 +09:00
|
|
|
define('SUBSCRIPTIONS_PER_ROW', 4);
|
2008-05-09 11:16:04 +09:00
|
|
|
define('SUBSCRIPTIONS', 80);
|
|
|
|
|
|
|
|
class ShowstreamAction extends StreamAction {
|
|
|
|
|
|
|
|
function handle($args) {
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
parent::handle($args);
|
|
|
|
|
2008-05-18 04:14:30 +09:00
|
|
|
$nickname = common_canonical_nickname($this->arg('nickname'));
|
2008-05-14 23:54:36 +09:00
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
if (!$user) {
|
|
|
|
$this->no_such_user();
|
2008-05-18 04:54:49 +09:00
|
|
|
return;
|
2008-05-18 04:24:47 +09:00
|
|
|
}
|
2008-05-14 23:54:36 +09:00
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
2008-07-13 14:37:48 +09:00
|
|
|
common_server_error(_('User has no profile.'));
|
2008-05-19 23:13:51 +09:00
|
|
|
return;
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-31 03:35:28 +09:00
|
|
|
# Looks like we're good; start output
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-31 03:35:28 +09:00
|
|
|
# For YADIS discovery, we also have a <meta> tag
|
|
|
|
|
|
|
|
header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname)));
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-07-01 04:50:32 +09:00
|
|
|
common_show_header($profile->nickname,
|
2008-06-12 03:36:34 +09:00
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
2008-06-12 03:13:34 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
$this->show_profile($profile);
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-21 05:42:59 +09:00
|
|
|
$this->show_notices($profile);
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
common_show_footer();
|
|
|
|
}
|
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
function show_top($user) {
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
$cur = common_current_user();
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
if ($cur && $cur->id == $user->id) {
|
2008-06-20 01:18:14 +09:00
|
|
|
common_notice_form('showstream');
|
2008-06-12 03:36:34 +09:00
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
$this->views_menu();
|
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-05-22 00:24:04 +09:00
|
|
|
function show_header($user) {
|
|
|
|
common_element('link', array('rel' => 'alternate',
|
2008-05-22 20:29:54 +09:00
|
|
|
'href' => common_local_url('userrss', array('nickname' =>
|
2008-05-22 00:24:04 +09:00
|
|
|
$user->nickname)),
|
2008-05-22 00:36:52 +09:00
|
|
|
'type' => 'application/rss+xml',
|
2008-07-08 18:45:31 +09:00
|
|
|
'title' => sprintf(_('Notice feed for %s'), $user->nickname)));
|
2008-06-10 23:44:20 +09:00
|
|
|
common_element('link', array('rel' => 'meta',
|
|
|
|
'href' => common_local_url('foaf', array('nickname' =>
|
|
|
|
$user->nickname)),
|
2008-06-10 23:46:06 +09:00
|
|
|
'type' => 'application/rdf+xml',
|
|
|
|
'title' => 'FOAF'));
|
2008-05-27 20:42:19 +09:00
|
|
|
# for remote subscriptions etc.
|
|
|
|
common_element('meta', array('http-equiv' => 'X-XRDS-Location',
|
|
|
|
'content' => common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname))));
|
2008-07-17 21:47:19 +09:00
|
|
|
$profile = $user->getProfile();
|
|
|
|
if ($profile->bio) {
|
|
|
|
common_element('meta', array('name' => 'description',
|
|
|
|
'content' => $profile->bio));
|
|
|
|
}
|
2008-05-22 00:24:04 +09:00
|
|
|
}
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
function no_such_user() {
|
2008-07-08 19:05:19 +09:00
|
|
|
common_user_error(_('No such user.'));
|
2008-05-21 05:11:20 +09:00
|
|
|
}
|
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
function show_profile($profile) {
|
2008-05-21 05:11:20 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('div', array('id' => 'profile'));
|
2008-05-21 04:36:36 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
$this->show_personal($profile);
|
2008-05-09 01:21:45 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
$this->show_last_notice($profile);
|
2008-05-14 23:54:36 +09:00
|
|
|
|
2008-05-22 03:36:45 +09:00
|
|
|
$cur = common_current_user();
|
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
$this->show_subscriptions($profile);
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-21 04:36:36 +09:00
|
|
|
common_element_end('div');
|
2008-05-09 01:21:45 +09:00
|
|
|
}
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
function show_personal($profile) {
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-05-16 01:28:44 +09:00
|
|
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
|
2008-06-15 10:47:42 +09:00
|
|
|
common_element_start('div', array('id' => 'profile_avatar'));
|
2008-07-04 02:03:47 +09:00
|
|
|
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
|
2008-06-15 10:47:42 +09:00
|
|
|
'class' => 'avatar profile',
|
|
|
|
'width' => AVATAR_PROFILE_SIZE,
|
|
|
|
'height' => AVATAR_PROFILE_SIZE,
|
|
|
|
'alt' => $profile->nickname));
|
|
|
|
$cur = common_current_user();
|
|
|
|
if ($cur) {
|
|
|
|
if ($cur->id != $profile->id) {
|
|
|
|
if ($cur->isSubscribed($profile)) {
|
|
|
|
$this->show_unsubscribe_form($profile);
|
|
|
|
} else {
|
|
|
|
$this->show_subscribe_form($profile);
|
2008-06-11 11:29:00 +09:00
|
|
|
}
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-06-15 10:47:42 +09:00
|
|
|
} else {
|
2008-07-01 04:50:32 +09:00
|
|
|
$this->show_remote_subscribe_link($profile);
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-06-15 10:47:42 +09:00
|
|
|
common_element_end('div');
|
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('div', array('id' => 'profile_information'));
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
if ($profile->fullname) {
|
2008-07-05 15:49:00 +09:00
|
|
|
common_element('h1', NULL, $profile->fullname . ' (' . $profile->nickname . ')');
|
2008-07-05 15:43:03 +09:00
|
|
|
} else {
|
|
|
|
common_element('h1', NULL, $profile->nickname);
|
2008-06-11 11:29:00 +09:00
|
|
|
}
|
2008-07-05 15:43:03 +09:00
|
|
|
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
if ($profile->location) {
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element('p', 'location', $profile->location);
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
|
|
|
if ($profile->bio) {
|
2008-07-07 06:08:09 +09:00
|
|
|
common_element('p', 'description', $profile->bio);
|
2008-06-11 11:29:00 +09:00
|
|
|
}
|
|
|
|
if ($profile->homepage) {
|
2008-06-13 02:44:53 +09:00
|
|
|
common_element_start('p', 'website');
|
2008-07-18 01:32:11 +09:00
|
|
|
common_element('a', array('href' => $profile->homepage,
|
|
|
|
'rel' => 'me'),
|
2008-06-13 02:44:53 +09:00
|
|
|
$profile->homepage);
|
|
|
|
common_element_end('p');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
$this->show_statistics($profile);
|
|
|
|
|
2008-05-21 04:40:08 +09:00
|
|
|
common_element_end('div');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-05-14 23:54:36 +09:00
|
|
|
|
|
|
|
function show_subscribe_form($profile) {
|
2008-07-02 22:15:07 +09:00
|
|
|
common_element_start('form', array('id' => 'subscribe', 'method' => 'post',
|
2008-05-14 23:54:36 +09:00
|
|
|
'action' => common_local_url('subscribe')));
|
|
|
|
common_element('input', array('id' => 'subscribeto',
|
|
|
|
'name' => 'subscribeto',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'value' => $profile->nickname));
|
2008-05-22 03:56:02 +09:00
|
|
|
common_element('input', array('type' => 'submit',
|
2008-06-19 01:35:16 +09:00
|
|
|
'class' => 'submit',
|
2008-07-08 18:45:31 +09:00
|
|
|
'value' => _('Subscribe')));
|
2008-05-18 02:04:30 +09:00
|
|
|
common_element_end('form');
|
2008-05-14 23:54:36 +09:00
|
|
|
}
|
|
|
|
|
2008-07-01 04:50:32 +09:00
|
|
|
function show_remote_subscribe_link($profile) {
|
|
|
|
$url = common_local_url('remotesubscribe',
|
2008-07-01 04:51:39 +09:00
|
|
|
array('nickname' => $profile->nickname));
|
2008-07-02 00:54:42 +09:00
|
|
|
common_element('a', array('href' => $url,
|
2008-07-02 00:56:51 +09:00
|
|
|
'id' => 'remotesubscribe'),
|
2008-07-08 18:45:31 +09:00
|
|
|
_('Subscribe'));
|
2008-05-31 02:43:10 +09:00
|
|
|
}
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-14 23:54:36 +09:00
|
|
|
function show_unsubscribe_form($profile) {
|
2008-07-02 22:15:07 +09:00
|
|
|
common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post',
|
2008-05-14 23:54:36 +09:00
|
|
|
'action' => common_local_url('unsubscribe')));
|
|
|
|
common_element('input', array('id' => 'unsubscribeto',
|
|
|
|
'name' => 'unsubscribeto',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'value' => $profile->nickname));
|
2008-05-22 03:56:02 +09:00
|
|
|
common_element('input', array('type' => 'submit',
|
2008-06-19 01:35:16 +09:00
|
|
|
'class' => 'submit',
|
2008-07-08 18:45:31 +09:00
|
|
|
'value' => _('Unsubscribe')));
|
2008-05-18 02:04:30 +09:00
|
|
|
common_element_end('form');
|
2008-05-14 23:54:36 +09:00
|
|
|
}
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
function show_subscriptions($profile) {
|
2008-05-21 20:57:27 +09:00
|
|
|
global $config;
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-22 04:06:40 +09:00
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-06-19 02:24:44 +09:00
|
|
|
$subs->orderBy('created DESC');
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-05-22 04:06:40 +09:00
|
|
|
# We ask for an extra one to know if we need to do another page
|
|
|
|
|
2008-06-13 04:26:50 +09:00
|
|
|
$subs->limit(0, SUBSCRIPTIONS + 1);
|
2008-05-22 04:06:40 +09:00
|
|
|
|
|
|
|
$subs_count = $subs->find();
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('div', array('id' => 'subscriptions'));
|
|
|
|
|
2008-07-08 18:45:31 +09:00
|
|
|
common_element('h2', NULL, _('Subscriptions'));
|
2008-06-11 11:29:00 +09:00
|
|
|
|
|
|
|
if ($subs_count > 0) {
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('ul', array('id' => 'subscriptions_avatars'));
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-13 04:26:50 +09:00
|
|
|
for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-13 04:26:50 +09:00
|
|
|
if (!$subs->fetch()) {
|
|
|
|
common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
|
|
|
|
break;
|
|
|
|
}
|
2008-06-11 11:29:00 +09:00
|
|
|
|
|
|
|
$other = Profile::staticGet($subs->subscribed);
|
|
|
|
|
|
|
|
common_element_start('li');
|
|
|
|
common_element_start('a', array('title' => ($other->fullname) ?
|
|
|
|
$other->fullname :
|
|
|
|
$other->nickname,
|
|
|
|
'href' => $other->profileurl,
|
|
|
|
'class' => 'subscription'));
|
|
|
|
$avatar = $other->getAvatar(AVATAR_MINI_SIZE);
|
2008-07-04 02:03:47 +09:00
|
|
|
common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
|
2008-06-11 11:29:00 +09:00
|
|
|
'width' => AVATAR_MINI_SIZE,
|
|
|
|
'height' => AVATAR_MINI_SIZE,
|
|
|
|
'class' => 'avatar mini',
|
|
|
|
'alt' => ($other->fullname) ?
|
2008-05-22 04:20:48 +09:00
|
|
|
$other->fullname :
|
2008-06-11 11:29:00 +09:00
|
|
|
$other->nickname));
|
|
|
|
common_element_end('a');
|
|
|
|
common_element_end('li');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_end('ul');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
|
|
|
|
2008-06-13 04:26:50 +09:00
|
|
|
if ($subs_count > SUBSCRIPTIONS) {
|
|
|
|
common_element_start('p', array('id' => 'subscriptions_viewall'));
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-13 04:26:50 +09:00
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname)),
|
|
|
|
'class' => 'moresubscriptions'),
|
2008-07-08 18:45:31 +09:00
|
|
|
_('All subscriptions'));
|
2008-06-13 04:26:50 +09:00
|
|
|
common_element_end('p');
|
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-05-18 02:04:30 +09:00
|
|
|
common_element_end('div');
|
2008-05-09 01:21:45 +09:00
|
|
|
}
|
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
function show_statistics($profile) {
|
2008-05-09 01:21:45 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
// XXX: WORM cache this
|
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-05-22 04:20:48 +09:00
|
|
|
$subs_count = (int) $subs->count();
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
$subbed = DB_DataObject::factory('subscription');
|
|
|
|
$subbed->subscribed = $profile->id;
|
2008-05-22 04:20:48 +09:00
|
|
|
$subbed_count = (int) $subbed->count();
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
$notices = DB_DataObject::factory('notice');
|
2008-05-18 04:21:51 +09:00
|
|
|
$notices->profile_id = $profile->id;
|
2008-05-22 04:20:48 +09:00
|
|
|
$notice_count = (int) $notices->count();
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-19 23:12:19 +09:00
|
|
|
common_element_start('div', 'statistics');
|
2008-07-08 18:45:31 +09:00
|
|
|
common_element('h2', 'statistics', _('Statistics'));
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
# Other stats...?
|
2008-05-18 02:04:30 +09:00
|
|
|
common_element_start('dl', 'statistics');
|
2008-07-08 18:45:31 +09:00
|
|
|
common_element('dt', 'membersince', _('Member since'));
|
|
|
|
common_element('dd', 'membersince', date('j M Y',
|
2008-07-05 15:46:18 +09:00
|
|
|
strtotime($profile->created)));
|
2008-07-08 18:45:31 +09:00
|
|
|
|
2008-06-13 05:04:24 +09:00
|
|
|
common_element_start('dt', 'subscriptions');
|
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname))),
|
2008-07-08 18:45:31 +09:00
|
|
|
_('Subscriptions'));
|
2008-06-13 05:04:24 +09:00
|
|
|
common_element_end('dt');
|
2008-07-13 09:39:32 +09:00
|
|
|
common_element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
|
2008-06-13 05:04:24 +09:00
|
|
|
common_element_start('dt', 'subscribers');
|
2008-06-19 02:16:22 +09:00
|
|
|
common_element('a', array('href' => common_local_url('subscribers',
|
2008-06-13 05:04:24 +09:00
|
|
|
array('nickname' => $profile->nickname))),
|
2008-07-08 18:45:31 +09:00
|
|
|
_('Subscribers'));
|
2008-06-13 05:04:24 +09:00
|
|
|
common_element_end('dt');
|
2008-07-13 09:39:32 +09:00
|
|
|
common_element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
|
2008-07-08 18:45:31 +09:00
|
|
|
common_element('dt', 'notices', _('Notices'));
|
2008-07-13 09:39:32 +09:00
|
|
|
common_element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
|
2008-05-18 02:04:30 +09:00
|
|
|
common_element_end('dl');
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-05-19 23:12:19 +09:00
|
|
|
common_element_end('div');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
function show_notices($profile) {
|
2008-05-08 01:48:07 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
$notice = DB_DataObject::factory('notice');
|
|
|
|
$notice->profile_id = $profile->id;
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-07-13 15:50:09 +09:00
|
|
|
$notice->orderBy('created DESC, notice.id DESC');
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-29 02:34:17 +09:00
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-29 02:31:29 +09:00
|
|
|
$notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-29 02:31:29 +09:00
|
|
|
$cnt = $notice->find();
|
2008-05-09 11:16:04 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
if ($cnt > 0) {
|
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
|
|
|
|
if ($notice->fetch()) {
|
|
|
|
$this->show_notice($notice);
|
|
|
|
} else {
|
|
|
|
// shouldn't happen!
|
|
|
|
break;
|
|
|
|
}
|
2008-05-29 02:31:29 +09:00
|
|
|
}
|
2008-07-01 04:50:32 +09:00
|
|
|
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_end('ul');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-06-11 11:29:00 +09:00
|
|
|
common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
|
|
|
|
'showstream', array('nickname' => $profile->nickname));
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
2008-05-18 04:24:47 +09:00
|
|
|
|
2008-05-09 11:16:04 +09:00
|
|
|
function show_last_notice($profile) {
|
2008-05-19 23:13:51 +09:00
|
|
|
|
2008-07-08 18:45:31 +09:00
|
|
|
common_element('h2', NULL, _('Currently'));
|
2008-05-19 23:12:19 +09:00
|
|
|
|
2008-07-10 05:38:31 +09:00
|
|
|
$notice = $profile->getCurrentNotice();
|
2008-07-10 13:51:26 +09:00
|
|
|
|
2008-07-10 05:38:31 +09:00
|
|
|
if ($notice) {
|
2008-05-09 11:16:04 +09:00
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('p', array('class' => 'notice_current'));
|
2008-07-10 04:52:38 +09:00
|
|
|
if ($notice->rendered) {
|
|
|
|
common_raw($notice->rendered);
|
|
|
|
} else {
|
|
|
|
# XXX: may be some uncooked notices in the DB,
|
|
|
|
# we cook them right now. This can probably disappear in future
|
|
|
|
# versions (>> 0.4.x)
|
|
|
|
common_raw(common_render_content($notice->content, $notice));
|
|
|
|
}
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_end('p');
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
|
|
|
}
|
2008-06-10 23:37:09 +09:00
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
function show_notice($notice) {
|
|
|
|
$profile = $notice->getProfile();
|
|
|
|
# XXX: RDFa
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('li', array('class' => 'notice_single',
|
|
|
|
'id' => 'notice-' . $notice->id));
|
2008-05-21 05:11:20 +09:00
|
|
|
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
|
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_start('p');
|
2008-07-10 05:39:10 +09:00
|
|
|
if ($notice->rendered) {
|
|
|
|
common_raw($notice->rendered);
|
|
|
|
} else {
|
|
|
|
# XXX: may be some uncooked notices in the DB,
|
|
|
|
# we cook them right now. This can probably disappear in future
|
|
|
|
# versions (>> 0.4.x)
|
|
|
|
common_raw(common_render_content($notice->content, $notice));
|
|
|
|
}
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_end('p');
|
|
|
|
common_element_start('p', array('class' => 'time'));
|
2008-07-09 17:01:10 +09:00
|
|
|
common_element('a', array('class' => 'permalink',
|
|
|
|
'href' => $noticeurl,
|
|
|
|
'title' => common_exact_date($notice->created)),
|
2008-05-30 01:41:39 +09:00
|
|
|
common_date_string($notice->created));
|
2008-07-10 13:51:26 +09:00
|
|
|
if ($notice->reply_to) {
|
|
|
|
$replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
|
|
|
|
common_text(' (');
|
|
|
|
common_element('a', array('class' => 'inreplyto',
|
|
|
|
'href' => $replyurl),
|
|
|
|
_('in reply to...'));
|
|
|
|
common_text(')');
|
|
|
|
}
|
|
|
|
common_element_start('a',
|
2008-07-09 17:01:10 +09:00
|
|
|
array('href' => common_local_url('newnotice',
|
|
|
|
array('replyto' => $profile->nickname)),
|
|
|
|
'onclick' => 'doreply("'.$profile->nickname.'"); return false',
|
2008-07-10 13:51:26 +09:00
|
|
|
'title' => _('reply'),
|
2008-07-09 17:01:10 +09:00
|
|
|
'class' => 'replybutton'));
|
|
|
|
common_raw('→');
|
2008-07-09 17:02:06 +09:00
|
|
|
common_element_end('a');
|
|
|
|
common_element_end('p');
|
2008-06-11 11:29:00 +09:00
|
|
|
common_element_end('li');
|
2008-05-21 05:11:20 +09:00
|
|
|
}
|
2008-07-09 17:01:10 +09:00
|
|
|
}
|