2008-05-07 17:48:07 +01:00
|
|
|
<?php
|
2008-05-17 20:24:47 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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-17 20:24:47 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-17 20:10:34 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/stream.php');
|
|
|
|
|
2008-05-29 20:21:12 +01:00
|
|
|
define('SUBSCRIPTIONS_PER_ROW', 4);
|
2008-05-09 03:16:04 +01:00
|
|
|
define('SUBSCRIPTIONS', 80);
|
|
|
|
|
|
|
|
class ShowstreamAction extends StreamAction {
|
|
|
|
|
|
|
|
function handle($args) {
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
parent::handle($args);
|
|
|
|
|
2008-05-17 20:14:30 +01:00
|
|
|
$nickname = common_canonical_nickname($this->arg('nickname'));
|
2008-05-14 15:54:36 +01:00
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
if (!$user) {
|
|
|
|
$this->no_such_user();
|
2008-05-17 20:54:49 +01:00
|
|
|
return;
|
2008-05-17 20:24:47 +01:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
|
|
|
common_server_error(_t('User record exists without profile.'));
|
2008-05-19 15:13:51 +01:00
|
|
|
return;
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-30 19:35:28 +01:00
|
|
|
# Looks like we're good; start output
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-30 19:35:28 +01:00
|
|
|
# For YADIS discovery, we also have a <meta> tag
|
|
|
|
|
|
|
|
header('X-XRDS-Location: '. common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname)));
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-06-30 20:50:32 +01:00
|
|
|
common_show_header($profile->nickname,
|
2008-06-11 19:36:34 +01:00
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
2008-06-11 19:13:34 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_profile($profile);
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:42:59 +01:00
|
|
|
$this->show_notices($profile);
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:11:20 +01:00
|
|
|
common_show_footer();
|
|
|
|
}
|
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
function show_top($user) {
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
$cur = common_current_user();
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
if ($cur && $cur->id == $user->id) {
|
2008-06-19 17:18:14 +01:00
|
|
|
common_notice_form('showstream');
|
2008-06-11 19:36:34 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 19:36:34 +01:00
|
|
|
$this->views_menu();
|
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-21 16:24:04 +01:00
|
|
|
function show_header($user) {
|
|
|
|
common_element('link', array('rel' => 'alternate',
|
2008-05-22 12:29:54 +01:00
|
|
|
'href' => common_local_url('userrss', array('nickname' =>
|
2008-05-21 16:24:04 +01:00
|
|
|
$user->nickname)),
|
2008-05-21 16:36:52 +01:00
|
|
|
'type' => 'application/rss+xml',
|
2008-05-21 16:24:04 +01:00
|
|
|
'title' => _t('Notice feed for ') . $user->nickname));
|
2008-06-10 15:44:20 +01:00
|
|
|
common_element('link', array('rel' => 'meta',
|
|
|
|
'href' => common_local_url('foaf', array('nickname' =>
|
|
|
|
$user->nickname)),
|
2008-06-10 15:46:06 +01:00
|
|
|
'type' => 'application/rdf+xml',
|
|
|
|
'title' => 'FOAF'));
|
2008-05-27 12:42:19 +01:00
|
|
|
# for remote subscriptions etc.
|
|
|
|
common_element('meta', array('http-equiv' => 'X-XRDS-Location',
|
|
|
|
'content' => common_local_url('xrds', array('nickname' =>
|
|
|
|
$user->nickname))));
|
2008-05-21 16:24:04 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:11:20 +01:00
|
|
|
function no_such_user() {
|
|
|
|
common_user_error('No such user');
|
|
|
|
}
|
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
function show_profile($profile) {
|
2008-05-20 21:11:20 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('div', array('id' => 'profile'));
|
2008-05-20 20:36:36 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_personal($profile);
|
2008-05-08 17:21:45 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$this->show_last_notice($profile);
|
2008-05-14 15:54:36 +01:00
|
|
|
|
2008-05-21 19:36:45 +01:00
|
|
|
$cur = common_current_user();
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$this->show_subscriptions($profile);
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-20 20:36:36 +01:00
|
|
|
common_element_end('div');
|
2008-05-08 17:21:45 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
function show_personal($profile) {
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
|
2008-06-15 02:47:42 +01:00
|
|
|
common_element_start('div', array('id' => 'profile_avatar'));
|
2008-07-03 18:03:47 +01:00
|
|
|
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE),
|
2008-06-15 02:47:42 +01: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 03:29:00 +01:00
|
|
|
}
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-15 02:47:42 +01:00
|
|
|
} else {
|
2008-06-30 20:50:32 +01:00
|
|
|
$this->show_remote_subscribe_link($profile);
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-15 02:47:42 +01:00
|
|
|
common_element_end('div');
|
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('div', array('id' => 'profile_information'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
if ($profile->fullname) {
|
2008-07-05 07:49:00 +01:00
|
|
|
common_element('h1', NULL, $profile->fullname . ' (' . $profile->nickname . ')');
|
2008-07-05 07:43:03 +01:00
|
|
|
} else {
|
|
|
|
common_element('h1', NULL, $profile->nickname);
|
2008-06-11 03:29:00 +01:00
|
|
|
}
|
2008-07-05 07:43:03 +01:00
|
|
|
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
if ($profile->location) {
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element('p', 'location', $profile->location);
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
if ($profile->bio) {
|
2008-07-06 22:08:09 +01:00
|
|
|
common_element('p', 'description', $profile->bio);
|
2008-06-11 03:29:00 +01:00
|
|
|
}
|
|
|
|
if ($profile->homepage) {
|
2008-06-12 18:44:53 +01:00
|
|
|
common_element_start('p', 'website');
|
|
|
|
common_element('a', array('href' => $profile->homepage),
|
|
|
|
$profile->homepage);
|
|
|
|
common_element_end('p');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
$this->show_statistics($profile);
|
|
|
|
|
2008-05-20 20:40:08 +01:00
|
|
|
common_element_end('div');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
function show_subscribe_form($profile) {
|
2008-07-02 14:15:07 +01:00
|
|
|
common_element_start('form', array('id' => 'subscribe', 'method' => 'post',
|
2008-05-14 15:54:36 +01:00
|
|
|
'action' => common_local_url('subscribe')));
|
|
|
|
common_element('input', array('id' => 'subscribeto',
|
|
|
|
'name' => 'subscribeto',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'value' => $profile->nickname));
|
2008-05-21 19:56:02 +01:00
|
|
|
common_element('input', array('type' => 'submit',
|
2008-06-18 17:35:16 +01:00
|
|
|
'class' => 'submit',
|
2008-05-21 19:56:02 +01:00
|
|
|
'value' => _t('Subscribe')));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('form');
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
|
|
|
|
2008-06-30 20:50:32 +01:00
|
|
|
function show_remote_subscribe_link($profile) {
|
|
|
|
$url = common_local_url('remotesubscribe',
|
2008-06-30 20:51:39 +01:00
|
|
|
array('nickname' => $profile->nickname));
|
2008-07-01 16:54:42 +01:00
|
|
|
common_element('a', array('href' => $url,
|
2008-07-01 16:56:51 +01:00
|
|
|
'id' => 'remotesubscribe'),
|
2008-06-30 20:50:32 +01:00
|
|
|
_t('Subscribe'));
|
2008-05-30 18:43:10 +01:00
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function show_unsubscribe_form($profile) {
|
2008-07-02 14:15:07 +01:00
|
|
|
common_element_start('form', array('id' => 'unsubscribe', 'method' => 'post',
|
2008-05-14 15:54:36 +01:00
|
|
|
'action' => common_local_url('unsubscribe')));
|
|
|
|
common_element('input', array('id' => 'unsubscribeto',
|
|
|
|
'name' => 'unsubscribeto',
|
|
|
|
'type' => 'hidden',
|
|
|
|
'value' => $profile->nickname));
|
2008-05-21 19:56:02 +01:00
|
|
|
common_element('input', array('type' => 'submit',
|
2008-06-18 17:35:16 +01:00
|
|
|
'class' => 'submit',
|
2008-05-21 19:56:02 +01:00
|
|
|
'value' => _t('Unsubscribe')));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('form');
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_subscriptions($profile) {
|
2008-05-21 12:57:27 +01:00
|
|
|
global $config;
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-21 20:06:40 +01:00
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-06-18 18:24:44 +01:00
|
|
|
$subs->orderBy('created DESC');
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-21 20:06:40 +01:00
|
|
|
# We ask for an extra one to know if we need to do another page
|
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
$subs->limit(0, SUBSCRIPTIONS + 1);
|
2008-05-21 20:06:40 +01:00
|
|
|
|
|
|
|
$subs_count = $subs->find();
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('div', array('id' => 'subscriptions'));
|
|
|
|
|
|
|
|
common_element('h2', NULL, _t('Subscriptions'));
|
|
|
|
|
|
|
|
if ($subs_count > 0) {
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('ul', array('id' => 'subscriptions_avatars'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
for ($i = 0; $i < min($subs_count, SUBSCRIPTIONS); $i++) {
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
if (!$subs->fetch()) {
|
|
|
|
common_debug('Weirdly, broke out of subscriptions loop early', __FILE__);
|
|
|
|
break;
|
|
|
|
}
|
2008-06-11 03:29:00 +01: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-03 18:03:47 +01:00
|
|
|
common_element('img', array('src' => (($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_MINI_SIZE)),
|
2008-06-11 03:29:00 +01:00
|
|
|
'width' => AVATAR_MINI_SIZE,
|
|
|
|
'height' => AVATAR_MINI_SIZE,
|
|
|
|
'class' => 'avatar mini',
|
|
|
|
'alt' => ($other->fullname) ?
|
2008-05-21 20:20:48 +01:00
|
|
|
$other->fullname :
|
2008-06-11 03:29:00 +01:00
|
|
|
$other->nickname));
|
|
|
|
common_element_end('a');
|
|
|
|
common_element_end('li');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('ul');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
if ($subs_count > SUBSCRIPTIONS) {
|
|
|
|
common_element_start('p', array('id' => 'subscriptions_viewall'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-12 20:26:50 +01:00
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname)),
|
|
|
|
'class' => 'moresubscriptions'),
|
|
|
|
_t('All subscriptions'));
|
|
|
|
common_element_end('p');
|
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('div');
|
2008-05-08 17:21:45 +01:00
|
|
|
}
|
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_statistics($profile) {
|
2008-05-08 17:21:45 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
// XXX: WORM cache this
|
|
|
|
$subs = DB_DataObject::factory('subscription');
|
|
|
|
$subs->subscriber = $profile->id;
|
2008-05-21 20:20:48 +01:00
|
|
|
$subs_count = (int) $subs->count();
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$subbed = DB_DataObject::factory('subscription');
|
|
|
|
$subbed->subscribed = $profile->id;
|
2008-05-21 20:20:48 +01:00
|
|
|
$subbed_count = (int) $subbed->count();
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$notices = DB_DataObject::factory('notice');
|
2008-05-17 20:21:51 +01:00
|
|
|
$notices->profile_id = $profile->id;
|
2008-05-21 20:20:48 +01:00
|
|
|
$notice_count = (int) $notices->count();
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-19 15:12:19 +01:00
|
|
|
common_element_start('div', 'statistics');
|
|
|
|
common_element('h2', 'statistics', _t('Statistics'));
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
# Other stats...?
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_start('dl', 'statistics');
|
2008-07-05 07:46:18 +01:00
|
|
|
common_element('dt', 'membersince', _t('Member since'));
|
|
|
|
common_element('dd', 'membersince', date('j M Y',
|
|
|
|
strtotime($profile->created)));
|
|
|
|
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_start('dt', 'subscriptions');
|
|
|
|
common_element('a', array('href' => common_local_url('subscriptions',
|
|
|
|
array('nickname' => $profile->nickname))),
|
|
|
|
_t('Subscriptions'));
|
|
|
|
common_element_end('dt');
|
2008-05-19 15:19:43 +01:00
|
|
|
common_element('dd', 'subscriptions', $subs_count);
|
2008-06-12 21:04:24 +01:00
|
|
|
common_element_start('dt', 'subscribers');
|
2008-06-18 18:16:22 +01:00
|
|
|
common_element('a', array('href' => common_local_url('subscribers',
|
2008-06-12 21:04:24 +01:00
|
|
|
array('nickname' => $profile->nickname))),
|
|
|
|
_t('Subscribers'));
|
|
|
|
common_element_end('dt');
|
2008-05-19 15:19:43 +01:00
|
|
|
common_element('dd', 'subscribers', $subbed_count);
|
|
|
|
common_element('dt', 'notices', _t('Notices'));
|
|
|
|
common_element('dd', 'notices', $notice_count);
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('dl');
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-19 15:12:19 +01:00
|
|
|
common_element_end('div');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_notices($profile) {
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$notice = DB_DataObject::factory('notice');
|
|
|
|
$notice->profile_id = $profile->id;
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$notice->orderBy('created DESC');
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-28 18:34:17 +01:00
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-28 18:31:29 +01:00
|
|
|
$notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-28 18:31:29 +01:00
|
|
|
$cnt = $notice->find();
|
2008-05-09 03:16:04 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
if ($cnt > 0) {
|
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01: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-28 18:31:29 +01:00
|
|
|
}
|
2008-06-30 20:50:32 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('ul');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-06-11 03:29:00 +01:00
|
|
|
common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
|
|
|
|
'showstream', array('nickname' => $profile->nickname));
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
2008-05-17 20:24:47 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
function show_last_notice($profile) {
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element('h2', NULL, _t('Currently'));
|
2008-05-19 15:12:19 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
$notice = DB_DataObject::factory('notice');
|
|
|
|
$notice->profile_id = $profile->id;
|
|
|
|
$notice->orderBy('created DESC');
|
2008-05-18 19:59:40 +01:00
|
|
|
$notice->limit(0, 1);
|
2008-05-19 15:13:51 +01:00
|
|
|
|
2008-05-19 15:12:19 +01:00
|
|
|
if ($notice->find(true)) {
|
2008-05-09 03:16:04 +01:00
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('p', array('class' => 'notice_current'));
|
2008-07-09 20:52:38 +01: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 03:29:00 +01:00
|
|
|
common_element_end('p');
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|
|
|
|
}
|
2008-06-10 15:37:09 +01:00
|
|
|
|
2008-05-20 21:11:20 +01:00
|
|
|
function show_notice($notice) {
|
|
|
|
$profile = $notice->getProfile();
|
|
|
|
# XXX: RDFa
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('li', array('class' => 'notice_single',
|
|
|
|
'id' => 'notice-' . $notice->id));
|
2008-05-20 21:11:20 +01:00
|
|
|
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
|
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_start('p');
|
2008-05-29 18:35:27 +01:00
|
|
|
common_raw(common_render_content($notice->content, $notice));
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('p');
|
|
|
|
common_element_start('p', array('class' => 'time'));
|
2008-07-09 09:01:10 +01:00
|
|
|
common_element('a', array('class' => 'permalink',
|
|
|
|
'href' => $noticeurl,
|
|
|
|
'title' => common_exact_date($notice->created)),
|
2008-05-29 17:41:39 +01:00
|
|
|
common_date_string($notice->created));
|
2008-07-09 09:01:10 +01:00
|
|
|
common_element_start('a',
|
|
|
|
array('href' => common_local_url('newnotice',
|
|
|
|
array('replyto' => $profile->nickname)),
|
|
|
|
'onclick' => 'doreply("'.$profile->nickname.'"); return false',
|
|
|
|
'title' => _t('reply'),
|
|
|
|
'class' => 'replybutton'));
|
|
|
|
common_raw('→');
|
2008-07-09 09:02:06 +01:00
|
|
|
common_element_end('a');
|
|
|
|
common_element_end('p');
|
2008-06-11 03:29:00 +01:00
|
|
|
common_element_end('li');
|
2008-05-20 21:11:20 +01:00
|
|
|
}
|
2008-07-09 09:01:10 +01:00
|
|
|
}
|