2008-07-07 08:24:54 +01:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-07-07 08:24:54 +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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-07-07 08:24:54 +01:00
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/rssaction.php');
|
|
|
|
|
|
|
|
// Formatting of RSS handled by Rss10Action
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class RepliesrssAction extends Rss10Action
|
|
|
|
{
|
2008-07-07 08:24:54 +01:00
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
var $user = null;
|
2008-07-07 08:24:54 +01:00
|
|
|
|
2009-01-23 04:07:52 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 04:07:52 +00:00
|
|
|
parent::prepare($args);
|
2008-12-23 19:19:07 +00:00
|
|
|
$nickname = $this->trimmed('nickname');
|
|
|
|
$this->user = User::staticGet('nickname', $nickname);
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$this->user) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2009-09-24 23:10:55 +01:00
|
|
|
$this->notices = $this->getNotices($this->limit);
|
2008-12-23 19:19:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2009-01-23 04:07:52 +00:00
|
|
|
function getNotices($limit=0)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = $this->user;
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = $user->getReplies(0, ($limit == 0) ? 48 : $limit);
|
2008-07-07 08:24:54 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notices = array();
|
|
|
|
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$notices[] = clone($notice);
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
return $notices;
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2009-01-23 04:07:52 +00:00
|
|
|
function getChannel()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = $this->user;
|
|
|
|
$c = array('url' => common_local_url('repliesrss',
|
|
|
|
array('nickname' =>
|
|
|
|
$user->nickname)),
|
|
|
|
'title' => sprintf(_("Replies to %s"), $user->nickname),
|
|
|
|
'link' => common_local_url('replies',
|
|
|
|
array('nickname' =>
|
|
|
|
$user->nickname)),
|
2009-08-06 16:36:24 +01:00
|
|
|
'description' => sprintf(_('Replies to %1$s on %2$s!'),
|
|
|
|
$user->nickname, common_config('site', 'name')));
|
2008-12-23 19:19:07 +00:00
|
|
|
return $c;
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2009-01-23 04:07:52 +00:00
|
|
|
function getImage()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = $this->user;
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
if (!$profile) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
|
2008-12-23 19:21:29 +00:00
|
|
|
return ($avatar) ? $avatar->url : null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-23 09:15:15 +00:00
|
|
|
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-23 09:15:15 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-23 04:07:52 +00:00
|
|
|
}
|