3 * RSS feed for user and friends timeline action class.
9 * @author Evan Prodromou <evan@status.net>
10 * @author Robin Millette <millette@status.net>
11 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12 * @link http://status.net/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU Affero General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
27 * You should have received a copy of the GNU Affero General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/rssaction.php';
38 * RSS feed for user and friends timeline.
40 * Formatting of RSS handled by Rss10Action
44 * @author Evan Prodromou <evan@status.net>
45 * @author Robin Millette <millette@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
47 * @link http://status.net/
49 class AllrssAction extends Rss10Action
56 * @param array $args Web and URL arguments
58 * @return boolean false if user doesn't exist
61 function prepare($args)
63 parent::prepare($args);
64 $nickname = $this->trimmed('nickname');
65 $this->user = User::staticGet('nickname', $nickname);
68 // TRANS: Client error when user not found for an rss related action.
69 $this->clientError(_('No such user.'));
72 $this->notices = $this->getNotices($this->limit);
80 * @param integer $limit max number of notices to return
82 * @return array notices
84 function getNotices($limit=0)
86 $cur = common_current_user();
89 if (!empty($cur) && $cur->id == $user->id) {
90 $notice = $this->user->noticeInbox(0, $limit);
92 $notice = $this->user->noticesWithFriends(0, $limit);
95 $notice = $user->noticesWithFriends(0, $limit);
98 while ($notice->fetch()) {
99 $notices[] = clone($notice);
108 * @return array associative array on channel information
110 function getChannel()
113 $c = array('url' => common_local_url('allrss',
116 // TRANS: Message is used as link title. %s is a user nickname.
117 'title' => sprintf(_('%s and friends'), $user->nickname),
118 'link' => common_local_url('all',
121 // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
122 'description' => sprintf(_('Updates from %1$s and friends on %2$s!'),
123 $user->nickname, common_config('site', 'name')));
130 * @return string user avatar URL or null
135 $profile = $user->getProfile();
139 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
140 return $avatar ? $avatar->url : null;