2008-05-09 11:16:04 +09:00
|
|
|
<?php
|
2008-05-21 04:14:12 +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-21 04:14:12 +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-21 04:14:12 +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-21 04:14:12 +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-09 11:16:04 +09:00
|
|
|
|
2008-05-18 04:10:34 +09:00
|
|
|
require_once(INSTALLDIR.'/actions/showstream.php');
|
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
class AllAction extends StreamAction {
|
2008-05-09 11:16:04 +09:00
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
function handle($args) {
|
|
|
|
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
$nickname = common_canonical_nickname($this->arg('nickname'));
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
|
|
|
|
if (!$user) {
|
2008-07-13 14:37:48 +09:00
|
|
|
$this->client_error(_('No such user.'));
|
2008-05-21 05:11:20 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
2008-07-13 14:37:48 +09:00
|
|
|
common_server_error(_('User has no profile.'));
|
2008-05-21 05:11:20 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Looks like we're good; show the header
|
|
|
|
|
2008-07-08 18:45:31 +09:00
|
|
|
common_show_header(sprintf(_("%s and friends"), $profile->nickname),
|
2008-06-12 03:36:34 +09:00
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-07-23 01:02:13 +09:00
|
|
|
$this->show_notices($user);
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-05-21 05:11:20 +09:00
|
|
|
common_show_footer();
|
|
|
|
}
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-05-22 20:41:52 +09:00
|
|
|
function show_header($user) {
|
|
|
|
common_element('link', array('rel' => 'alternate',
|
|
|
|
'href' => common_local_url('allrss', array('nickname' =>
|
|
|
|
$user->nickname)),
|
|
|
|
'type' => 'application/rss+xml',
|
2008-07-08 18:45:31 +09:00
|
|
|
'title' => sprintf(_('Feed for friends of %s'), $user->nickname)));
|
2008-05-22 20:41:52 +09:00
|
|
|
}
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
function show_top($user) {
|
|
|
|
$cur = common_current_user();
|
2008-07-08 18:51:13 +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('all');
|
2008-06-12 03:36:34 +09:00
|
|
|
}
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-06-12 03:36:34 +09:00
|
|
|
$this->views_menu();
|
|
|
|
}
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-07-23 01:02:13 +09:00
|
|
|
function show_notices($user) {
|
2008-05-21 04:14:12 +09:00
|
|
|
|
2008-07-23 01:02:13 +09:00
|
|
|
$page = $this->trimmed('page');
|
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
2008-07-23 01:31:16 +09:00
|
|
|
$notice = $user->noticesWithFriends(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
|
2008-07-23 01:15:49 +09:00
|
|
|
|
2008-07-23 01:31:16 +09:00
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
|
|
|
|
|
|
|
$cnt = 0;
|
|
|
|
|
|
|
|
while ($notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
|
|
|
|
$cnt++;
|
|
|
|
|
|
|
|
if ($cnt > NOTICES_PER_PAGE) {
|
|
|
|
break;
|
2008-05-29 02:39:17 +09:00
|
|
|
}
|
2008-07-23 01:31:16 +09:00
|
|
|
|
|
|
|
$this->show_notice($notice);
|
2008-05-29 02:39:17 +09:00
|
|
|
}
|
2008-07-23 01:31:16 +09:00
|
|
|
common_element_end('ul');
|
2008-07-08 18:51:13 +09:00
|
|
|
|
2008-06-11 04:33:05 +09:00
|
|
|
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
2008-07-23 02:36:13 +09:00
|
|
|
$page, 'all', array('nickname' => $user->nickname));
|
2008-05-09 11:16:04 +09:00
|
|
|
}
|
|
|
|
}
|