]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/allrss.php
d398c8a6ad126fbdfbe64560779943a054023fbe
[quix0rs-gnu-social.git] / actions / allrss.php
1 <?php
2 /**
3  * RSS feed for user and friends timeline 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 and friends timeline.
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  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
47  * @link     http://status.net/
48  */
49 class AllrssAction extends Rss10Action
50 {
51     var $user = null;
52
53     /**
54      * Initialization.
55      *
56      * @param array $args Web and URL arguments
57      *
58      * @return boolean false if user doesn't exist
59     function prepare($args)
60     {
61         parent::prepare($args);
62         $nickname   = $this->trimmed('nickname');
63         $this->user = User::staticGet('nickname', $nickname);
64
65         if (!$this->user) {
66             // TRANS: Client error when user not found for an rss related action.
67             $this->clientError(_('No such user.'));
68             return false;
69         } else {
70             $this->notices = $this->getNotices($this->limit);
71             return true;
72         }
73     }
74
75     /**
76      * Get notices
77      *
78      * @param integer $limit max number of notices to return
79      *
80      * @return array notices
81      */
82     function getNotices($limit=0)
83     {
84         $cur = common_current_user();
85         $user = $this->user;
86
87         if (!empty($cur) && $cur->id == $user->id) {
88             $notice = $this->user->noticeInbox(0, $limit);
89         } else {
90             $notice = $this->user->noticesWithFriends(0, $limit);
91         }
92
93         $notice  = $user->noticesWithFriends(0, $limit);
94         $notices = array();
95
96         while ($notice->fetch()) {
97             $notices[] = clone($notice);
98         }
99
100         return $notices;
101     }
102
103      /**
104      * Get channel.
105      *
106      * @return array associative array on channel information
107      */
108     function getChannel()
109     {
110         $user = $this->user;
111         $c    = array('url' => common_local_url('allrss',
112                                              array('nickname' =>
113                                                    $user->nickname)),
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',
117                                              array('nickname' =>
118                                                    $user->nickname)),
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')));
122         return $c;
123     }
124
125     /**
126      * Get image.
127      *
128      * @return string user avatar URL or null
129      */
130     function getImage()
131     {
132         $user    = $this->user;
133         $profile = $user->getProfile();
134         if (!$profile) {
135             return null;
136         }
137         $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
138         return $avatar ? $avatar->url : null;
139     }
140 }