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/>.
|
|
|
|
*/
|
|
|
|
|
2015-07-09 13:22:22 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-07-07 08:24:54 +01:00
|
|
|
|
|
|
|
// Formatting of RSS handled by Rss10Action
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class RepliesrssAction extends Rss10Action
|
|
|
|
{
|
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');
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->user = User::getKV('nickname', $nickname);
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$this->user) {
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} 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-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();
|
2011-02-17 19:58:22 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
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)),
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: RSS reply feed title. %s is a user nickname.
|
2008-12-23 19:19:07 +00:00
|
|
|
'title' => sprintf(_("Replies to %s"), $user->nickname),
|
|
|
|
'link' => common_local_url('replies',
|
|
|
|
array('nickname' =>
|
|
|
|
$user->nickname)),
|
2011-02-17 19:58:22 +00:00
|
|
|
// TRANS: RSS reply feed description.
|
|
|
|
// TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
|
|
|
|
'description' => sprintf(_('Replies to %1$s on %2$s.'),
|
2009-08-06 16:36:24 +01:00
|
|
|
$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
|
|
|
{
|
2013-10-01 10:37:59 +01:00
|
|
|
$profile = $this->user->getProfile();
|
|
|
|
return $profile->avatarUrl(AVATAR_PROFILE_SIZE);
|
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
|
|
|
}
|