2008-05-06 16:17:29 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/actions/showstream.php');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class AllAction extends StreamAction
|
|
|
|
{
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$nickname = common_canonical_nickname($this->arg('nickname'));
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$user) {
|
|
|
|
$this->client_error(_('No such user.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$profile = $user->getProfile();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$profile) {
|
|
|
|
common_server_error(_('User has no profile.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# Looks like we're good; show the header
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_show_header(sprintf(_("%s and friends"), $profile->nickname),
|
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->show_notices($user);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_show_footer();
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_header($user)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
common_element('link', array('rel' => 'alternate',
|
|
|
|
'href' => common_local_url('allrss', array('nickname' =>
|
|
|
|
$user->nickname)),
|
|
|
|
'type' => 'application/rss+xml',
|
|
|
|
'title' => sprintf(_('Feed for friends of %s'), $user->nickname)));
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_top($user)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$cur = common_current_user();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($cur && $cur->id == $user->id) {
|
|
|
|
common_notice_form('all');
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->views_menu();
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->show_feeds_list(array(0=>array('href'=>common_local_url('allrss', array('nickname' => $user->nickname)),
|
|
|
|
'type' => 'rss',
|
|
|
|
'version' => 'RSS 1.0',
|
|
|
|
'item' => 'allrss')));
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show_notices($user)
|
|
|
|
{
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$page = $this->trimmed('page');
|
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
|
|
|
$cnt = $this->show_notice_list($notice);
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
|
|
|
$page, 'all', array('nickname' => $user->nickname));
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
}
|