2008-05-22 12:29:54 +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.'/lib/rssaction.php');
|
|
|
|
|
|
|
|
// Formatting of RSS handled by Rss10Action
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class UserrssAction extends Rss10Action
|
|
|
|
{
|
2008-05-22 12:29:54 +01:00
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
var $user = null;
|
2008-05-22 12:29:54 +01:00
|
|
|
|
2009-01-23 04:10:49 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-23 04:10:49 +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 {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2009-01-23 04:10:49 +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;
|
2009-02-20 22:30:09 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (is_null($user)) {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-20 22:30:09 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit);
|
2009-02-20 22:30:09 +00:00
|
|
|
|
2009-03-07 22:38:42 +00:00
|
|
|
$notices = array();
|
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:10:49 +00:00
|
|
|
function getChannel()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = $this->user;
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
$c = array('url' => common_local_url('userrss',
|
|
|
|
array('nickname' =>
|
|
|
|
$user->nickname)),
|
|
|
|
'title' => $user->nickname,
|
|
|
|
'link' => $profile->profileurl,
|
|
|
|
'description' => sprintf(_('Microblog by %s'), $user->nickname));
|
|
|
|
return $c;
|
|
|
|
}
|
2008-07-08 10:45:31 +01:00
|
|
|
|
2009-01-23 04:10:49 +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) {
|
|
|
|
common_log_db_error($user, 'SELECT', __FILE__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('User without matching 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
|
|
|
}
|
2008-10-25 03:28:49 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
# override parent to add X-SUP-ID URL
|
2009-02-20 22:30:09 +00:00
|
|
|
|
2009-01-23 04:10:49 +00:00
|
|
|
function initRss($limit=0)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-02-20 22:30:09 +00:00
|
|
|
$url = common_local_url('sup', null, null, $this->user->id);
|
2008-12-23 19:19:07 +00:00
|
|
|
header('X-SUP-ID: '.$url);
|
2009-01-23 04:10:49 +00:00
|
|
|
parent::initRss($limit);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-23 09:15:15 +00:00
|
|
|
|
|
|
|
function isReadOnly()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-23 04:10:49 +00:00
|
|
|
}
|