3 * RSS feed for user favorites 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 favorites action class.
40 * Formatting of RSS handled by Rss10Action
44 * @author Evan Prodromou <evan@status.net>
45 * @author Robin Millette <millette@status.net>
46 * @author Zach Copley <zach@status.net>
47 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
48 * @link http://status.net/
50 class FavoritesrssAction extends Rss10Action
52 /** The user whose favorites to display */
57 * Find the user to display by supplied nickname
59 * @param array $args Arguments from $_REQUEST
61 * @return boolean success
63 function prepare($args)
65 parent::prepare($args);
67 $nickname = $this->trimmed('nickname');
68 $this->user = User::staticGet('nickname', $nickname);
71 // TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
72 $this->clientError(_('No such user.'));
75 $this->notices = $this->getNotices($this->limit);
83 * @param integer $limit max number of notices to return
85 * @return array notices
87 function getNotices($limit=0)
90 $notice = $user->favoriteNotices(false, 0, $limit);
92 while ($notice->fetch()) {
93 $notices[] = clone($notice);
101 * @return array associative array on channel information
103 function getChannel()
106 $c = array('url' => common_local_url('favoritesrss',
109 // TRANS: Title of RSS feed with favourite notices of a user.
110 // TRANS: %s is a user's nickname.
111 'title' => sprintf(_("%s's favorite notices"), $user->nickname),
112 'link' => common_local_url('showfavorites',
115 // TRANS: Desciption of RSS feed with favourite notices of a user.
116 // TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
117 'description' => sprintf(_('Updates favored by %1$s on %2$s!'),
118 $user->nickname, common_config('site', 'name')));