2008-05-09 03:16:04 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +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-20 20:14:12 +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-20 20:14:12 +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
|
2008-11-20 07:19:30 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-05-14 20:26:48 +01:00
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2008-11-20 07:19:30 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 20:00:09 +01:00
|
|
|
|
2008-09-16 20:53:46 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/personal.php');
|
2008-05-09 03:16:04 +01:00
|
|
|
|
2008-09-16 20:53:46 +01:00
|
|
|
class StreamAction extends PersonalAction {
|
2008-06-27 23:29:30 +01:00
|
|
|
|
2008-11-20 07:19:30 +00:00
|
|
|
|
|
|
|
function public_views_menu() {
|
|
|
|
|
|
|
|
$action = $this->trimmed('action');
|
|
|
|
|
|
|
|
common_debug("action = $action");
|
|
|
|
|
|
|
|
common_element_start('ul', array('id' => 'nav_views'));
|
|
|
|
|
|
|
|
common_menu_item(common_local_url('public'), _('Public'),
|
|
|
|
_('Public timeline'), $action == 'public');
|
|
|
|
|
|
|
|
common_menu_item(common_local_url('tag'), _('Recent tags'),
|
|
|
|
_('Recent tags'), $action == 'tag');
|
|
|
|
|
2008-11-20 21:30:22 +00:00
|
|
|
if (count(common_config('nickname', 'featured')) > 0) {
|
|
|
|
common_menu_item(common_local_url('featured'), _('Featured'),
|
|
|
|
_('Notices from featured Users'), $action == 'featured');
|
|
|
|
}
|
2008-11-20 07:19:30 +00:00
|
|
|
|
|
|
|
common_menu_item(common_local_url('favorited'), _('Favorited'),
|
|
|
|
_("Most favorited notices"), $action == 'favorited');
|
|
|
|
|
|
|
|
common_element_end('ul');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-07-09 21:23:46 +01:00
|
|
|
function show_notice($notice) {
|
2008-05-21 14:39:51 +01:00
|
|
|
global $config;
|
2008-05-09 03:16:04 +01:00
|
|
|
$profile = $notice->getProfile();
|
2008-07-30 04:38:04 +01:00
|
|
|
$user = common_current_user();
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2008-05-09 03:16:04 +01:00
|
|
|
# XXX: RDFa
|
2008-06-10 20:21:01 +01:00
|
|
|
common_element_start('li', array('class' => 'notice_single',
|
2008-05-20 16:36:29 +01:00
|
|
|
'id' => 'notice-' . $notice->id));
|
2008-09-08 21:27:17 +01:00
|
|
|
if ($user) {
|
|
|
|
if ($user->hasFave($notice)) {
|
|
|
|
common_disfavor_form($notice);
|
|
|
|
} else {
|
|
|
|
common_favor_form($notice);
|
|
|
|
}
|
|
|
|
}
|
2008-05-15 17:28:44 +01:00
|
|
|
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_start('a', array('href' => $profile->profileurl));
|
2008-07-03 18:03:47 +01:00
|
|
|
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
|
2008-05-28 18:48:07 +01:00
|
|
|
'class' => 'avatar stream',
|
2008-05-15 17:28:44 +01:00
|
|
|
'width' => AVATAR_STREAM_SIZE,
|
|
|
|
'height' => AVATAR_STREAM_SIZE,
|
2008-05-20 20:14:12 +01:00
|
|
|
'alt' =>
|
|
|
|
($profile->fullname) ? $profile->fullname :
|
2008-05-15 17:28:44 +01:00
|
|
|
$profile->nickname));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('a');
|
2008-05-15 17:28:44 +01:00
|
|
|
common_element('a', array('href' => $profile->profileurl,
|
|
|
|
'class' => 'nickname'),
|
|
|
|
$profile->nickname);
|
2008-05-09 03:16:04 +01:00
|
|
|
# FIXME: URL, image, video, audio
|
2008-06-10 20:21:01 +01:00
|
|
|
common_element_start('p', array('class' => 'content'));
|
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,
|
2008-07-09 21:07:50 +01:00
|
|
|
# we cook them right now. This should probably disappear in future
|
2008-07-09 20:52:38 +01:00
|
|
|
# versions (>> 0.4.x)
|
|
|
|
common_raw(common_render_content($notice->content, $notice));
|
|
|
|
}
|
2008-06-10 20:21:01 +01:00
|
|
|
common_element_end('p');
|
2008-05-17 15:46:42 +01:00
|
|
|
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
|
2008-08-26 22:11:08 +01:00
|
|
|
# XXX: we need to figure this out better. Is this right?
|
|
|
|
if (strcmp($notice->uri, $noticeurl) != 0 && preg_match('/^http/', $notice->uri)) {
|
2008-08-26 22:03:14 +01:00
|
|
|
$noticeurl = $notice->uri;
|
|
|
|
}
|
2008-06-10 20:21:01 +01:00
|
|
|
common_element_start('p', 'time');
|
2008-07-09 01:43:49 +01:00
|
|
|
common_element('a', array('class' => 'permalink',
|
2008-06-27 23:29:30 +01:00
|
|
|
'href' => $noticeurl,
|
|
|
|
'title' => common_exact_date($notice->created)),
|
2008-05-09 03:16:04 +01:00
|
|
|
common_date_string($notice->created));
|
2008-07-30 04:26:51 +01:00
|
|
|
if ($notice->source) {
|
|
|
|
common_text(_(' from '));
|
|
|
|
$this->source_link($notice->source);
|
|
|
|
}
|
2008-07-09 21:23:46 +01:00
|
|
|
if ($notice->reply_to) {
|
|
|
|
$replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
|
|
|
|
common_text(' (');
|
2008-07-07 07:41:55 +01:00
|
|
|
common_element('a', array('class' => 'inreplyto',
|
|
|
|
'href' => $replyurl),
|
2008-07-10 05:51:26 +01:00
|
|
|
_('in reply to...'));
|
2008-07-07 07:44:30 +01:00
|
|
|
common_text(')');
|
2008-07-07 07:41:55 +01:00
|
|
|
}
|
2008-07-09 23:46:30 +01:00
|
|
|
common_element_start('a',
|
2008-07-09 08:50:45 +01:00
|
|
|
array('href' => common_local_url('newnotice',
|
|
|
|
array('replyto' => $profile->nickname)),
|
2008-10-20 18:02:45 +01:00
|
|
|
'onclick' => 'return doreply("'.$profile->nickname.'", '.$notice->id.');',
|
2008-07-10 05:51:26 +01:00
|
|
|
'title' => _('reply'),
|
2008-07-09 08:50:45 +01:00
|
|
|
'class' => 'replybutton'));
|
|
|
|
common_raw('→');
|
2008-07-09 09:01:10 +01:00
|
|
|
common_element_end('a');
|
2008-07-30 04:38:04 +01:00
|
|
|
if ($user && $notice->profile_id == $user->id) {
|
2008-07-20 10:49:54 +01:00
|
|
|
$deleteurl = common_local_url('deletenotice', array('notice' => $notice->id));
|
2008-07-30 04:38:04 +01:00
|
|
|
common_element_start('a', array('class' => 'deletenotice',
|
|
|
|
'href' => $deleteurl,
|
|
|
|
'title' => _('delete')));
|
|
|
|
common_raw('×');
|
|
|
|
common_element_end('a');
|
2008-07-20 10:49:54 +01:00
|
|
|
}
|
2008-07-30 04:38:04 +01:00
|
|
|
common_element_end('p');
|
2008-06-23 04:08:37 +01:00
|
|
|
common_element_end('li');
|
|
|
|
}
|
2008-05-09 03:16:04 +01:00
|
|
|
}
|