2008-06-23 04:08:37 +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');
|
|
|
|
|
|
|
|
class RepliesAction extends StreamAction {
|
|
|
|
|
|
|
|
function handle($args) {
|
|
|
|
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
$nickname = common_canonical_nickname($this->arg('nickname'));
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
|
|
|
|
if (!$user) {
|
|
|
|
$this->no_such_user();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
|
|
|
common_server_error(_t('User record exists without profile.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Looks like we're good; show the header
|
|
|
|
|
2008-07-07 06:43:58 +01:00
|
|
|
common_show_header(_t("Replies to ") . $profile->nickname,
|
2008-06-23 04:08:37 +01:00
|
|
|
array($this, 'show_header'), $user,
|
|
|
|
array($this, 'show_top'));
|
|
|
|
|
|
|
|
$this->show_replies($profile);
|
|
|
|
|
|
|
|
common_show_footer();
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_header($user) {
|
|
|
|
common_element('link', array('rel' => 'alternate',
|
2008-07-07 06:43:58 +01:00
|
|
|
'href' => common_local_url('repliesrss', array('nickname' =>
|
|
|
|
$user->nickname)),
|
2008-06-23 04:08:37 +01:00
|
|
|
'type' => 'application/rss+xml',
|
2008-07-07 06:43:58 +01:00
|
|
|
'title' => _t('Feed for replies to ') . $user->nickname));
|
2008-06-23 04:08:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function show_top($user) {
|
2008-07-07 08:25:45 +01:00
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
if ($cur && $cur->id == $user->id) {
|
|
|
|
common_notice_form('replies');
|
|
|
|
}
|
|
|
|
|
2008-06-23 04:08:37 +01:00
|
|
|
$this->views_menu();
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_replies($profile) {
|
|
|
|
|
2008-07-07 06:43:58 +01:00
|
|
|
$reply = new Reply();
|
2008-06-23 04:08:37 +01:00
|
|
|
|
2008-07-07 06:43:58 +01:00
|
|
|
$reply->profile_id = $profile->id;
|
2008-07-07 08:05:45 +01:00
|
|
|
|
2008-07-07 07:37:31 +01:00
|
|
|
$reply->orderBy('modified DESC');
|
2008-07-07 08:05:45 +01:00
|
|
|
|
2008-06-23 04:08:37 +01:00
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2008-07-07 08:05:45 +01:00
|
|
|
|
2008-06-23 04:08:37 +01:00
|
|
|
$reply->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
|
2008-07-07 08:05:45 +01:00
|
|
|
|
2008-06-23 04:08:37 +01:00
|
|
|
$cnt = $reply->find();
|
|
|
|
|
|
|
|
if ($cnt > 0) {
|
2008-07-07 07:41:55 +01:00
|
|
|
common_element_start('ul', array('id' => 'notices'));
|
2008-07-07 06:43:58 +01:00
|
|
|
for ($i = 0; $i < min($cnt, NOTICES_PER_PAGE); $i++) {
|
2008-06-23 04:08:37 +01:00
|
|
|
if ($reply->fetch()) {
|
2008-07-07 08:05:45 +01:00
|
|
|
$notice = new Notice();
|
|
|
|
$notice->id = $reply->notice_id;
|
|
|
|
$result = $notice->find(true);
|
|
|
|
if (!$result) {
|
|
|
|
continue;
|
|
|
|
}
|
2008-07-07 07:41:55 +01:00
|
|
|
$this->show_notice($notice, $reply->replied_id);
|
2008-06-23 04:08:37 +01:00
|
|
|
} else {
|
|
|
|
// shouldn't happen!
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
common_element_end('ul');
|
|
|
|
}
|
|
|
|
|
2008-07-07 06:43:58 +01:00
|
|
|
common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
|
2008-07-07 07:46:07 +01:00
|
|
|
$page, 'replies', array('nickname' => $profile->nickname));
|
2008-06-23 04:08:37 +01:00
|
|
|
}
|
|
|
|
}
|