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
59 function prepare($args)
61 parent::prepare($args);
62 $nickname = $this->trimmed('nickname');
63 $this->user = User::staticGet('nickname', $nickname);
66 // TRANS: Client error when user not found for an rss related action.
67 $this->clientError(_('No such user.'));
70 $this->notices = $this->getNotices($this->limit);
78 * @param integer $limit max number of notices to return
80 * @return array notices
82 function getNotices($limit=0)
84 $cur = common_current_user();
87 if (!empty($cur) && $cur->id == $user->id) {
88 $notice = $this->user->noticeInbox(0, $limit);
90 $notice = $this->user->noticesWithFriends(0, $limit);
93 $notice = $user->noticesWithFriends(0, $limit);
96 while ($notice->fetch()) {
97 $notices[] = clone($notice);
106 * @return array associative array on channel information
108 function getChannel()
111 $c = array('url' => common_local_url('allrss',
114 // TRANS: Message is used as link title. %s is a user nickname.
115 'title' => sprintf(_('%s and friends'), $user->nickname),
116 'link' => common_local_url('all',
119 // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
120 'description' => sprintf(_('Updates from %1$s and friends on %2$s!'),
121 $user->nickname, common_config('site', 'name')));
128 * @return string user avatar URL or null
133 $profile = $user->getProfile();
137 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
138 return $avatar ? $avatar->url : null;