]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Favorite/actions/favoritesrss.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / Favorite / actions / favoritesrss.php
1 <?php
2 /**
3  * RSS feed for user favorites action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
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/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
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.
21  *
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.
26  *
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/>.
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/rssaction.php';
36
37 /**
38  * RSS feed for user favorites action class.
39  *
40  * Formatting of RSS handled by Rss10Action
41  *
42  * @category Action
43  * @package  StatusNet
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/
49  */
50 class FavoritesrssAction extends Rss10Action
51 {
52     /** The user whose favorites to display */
53
54     var $user = null;
55
56     /**
57      * Find the user to display by supplied nickname
58      *
59      * @param array $args Arguments from $_REQUEST
60      *
61      * @return boolean success
62      */
63     function prepare(array $args=array())
64     {
65         parent::prepare($args);
66
67         $nickname   = $this->trimmed('nickname');
68         $this->user = User::getKV('nickname', $nickname);
69
70         if (!$this->user) {
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.'));
73         } else {
74             $this->notices = $this->getNotices($this->limit);
75             return true;
76         }
77     }
78
79     /**
80      * Get notices
81      *
82      * @param integer $limit max number of notices to return
83      *
84      * @return array notices
85      */
86     function getNotices($limit=0)
87     {
88         $notice  = Fave::stream($this->user->id, 0, $limit, $false);
89         $notices = array();
90         while ($notice->fetch()) {
91             $notices[] = clone($notice);
92         }
93         return $notices;
94     }
95
96      /**
97      * Get channel.
98      *
99      * @return array associative array on channel information
100      */
101     function getChannel()
102     {
103         $user = $this->user;
104         $c    = array('url' => common_local_url('favoritesrss',
105                                         array('nickname' =>
106                                         $user->nickname)),
107                    // TRANS: Title of RSS feed with favourite notices of a user.
108                    // TRANS: %s is a user's nickname.
109                    'title' => sprintf(_("%s's favorite notices"), $user->nickname),
110                    'link' => common_local_url('showfavorites',
111                                         array('nickname' =>
112                                         $user->nickname)),
113                    // TRANS: Desciption of RSS feed with favourite notices of a user.
114                    // TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
115                    'description' => sprintf(_('Updates favored by %1$s on %2$s!'),
116                                         $user->nickname, common_config('site', 'name')));
117         return $c;
118     }
119
120     /**
121      * Get image.
122      *
123      * @return void
124     */
125     function getImage()
126     {
127         return null;
128     }
129
130 }