]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/userrss.php
Rss10Action now in an autodetected file.
[quix0rs-gnu-social.git] / actions / userrss.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('GNUSOCIAL')) { exit(1); }
21
22 // Formatting of RSS handled by Rss10Action
23
24 class UserrssAction extends Rss10Action
25 {
26     var $tag  = null;
27
28     protected function prepare(array $args=array())
29     {
30         parent::prepare($args);
31         $nickname   = $this->trimmed('nickname');
32         $this->user = User::getKV('nickname', $nickname);
33         $this->tag  = $this->trimmed('tag');
34
35         if (!$this->user) {
36             // TRANS: Client error displayed when user not found for an action.
37             $this->clientError(_('No such user.'));
38         }
39
40         if (!empty($this->tag)) {
41             $this->notices = $this->getTaggedNotices();
42         } else {
43             $this->notices = $this->getNotices();
44         }
45
46         return true;
47     }
48
49     function getTaggedNotices()
50     {
51         $notice = $this->user->getTaggedNotices(
52             $this->tag,
53             0,
54             ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit,
55             0,
56             0
57         );
58
59         $notices = array();
60         while ($notice->fetch()) {
61             $notices[] = clone($notice);
62         }
63
64         return $notices;
65     }
66
67
68     function getNotices()
69     {
70         $notice = $this->user->getNotices(
71             0,
72             ($this->limit == 0) ? NOTICES_PER_PAGE : $this->limit
73         );
74
75         $notices = array();
76         while ($notice->fetch()) {
77             $notices[] = clone($notice);
78         }
79
80         return $notices;
81     }
82
83     function getChannel()
84     {
85         $user = $this->user;
86         $profile = $user->getProfile();
87         $c = array('url' => common_local_url('userrss',
88                                              array('nickname' =>
89                                                    $user->nickname)),
90                    // TRANS: Message is used as link title. %s is a user nickname.
91                    'title' => sprintf(_('%s timeline'), $user->nickname),
92                    'link' => $profile->profileurl,
93                    // TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
94                    'description' => sprintf(_('Updates from %1$s on %2$s!'),
95                                             $user->nickname, common_config('site', 'name')));
96         return $c;
97     }
98
99     function getImage()
100     {
101         $profile = $this->user->getProfile();
102         return $profile->avatarUrl(AVATAR_PROFILE_SIZE);
103     }
104
105     // override parent to add X-SUP-ID URL
106
107     function initRss($limit=0)
108     {
109         $url = common_local_url('sup', null, null, $this->user->id);
110         header('X-SUP-ID: '.$url);
111         parent::initRss($limit);
112     }
113
114     function isReadOnly($args)
115     {
116         return true;
117     }
118 }