]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/tagrss.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / actions / tagrss.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 TagrssAction extends Rss10Action
25 {
26     protected $tag;
27
28     protected function doStreamPreparation()
29     {
30         $tag = common_canonical_tag($this->trimmed('tag'));
31         $this->tag = Notice_tag::getKV('tag', $tag);
32         if (!$this->tag instanceof Notice_tag) {
33             // TRANS: Client error when requesting a tag feed for a non-existing tag.
34             $this->clientError(_('No such tag.'));
35         }
36     }
37
38     protected function getNotices()
39     {
40         $stream = Notice_tag::getStream($this->tag->tag)->getNotices(0, $this->limit);
41         return $stream->fetchAll();
42     }
43
44     function getChannel()
45     {
46         $tagname = $this->tag->tag;
47         $c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
48                'title' => $tagname,
49                'link' => common_local_url('tagrss', array('tag' => $tagname)),
50                // TRANS: Tag feed description.
51                // TRANS: %1$s is the tag name, %2$s is the StatusNet sitename.
52                'description' => sprintf(_('Updates tagged with %1$s on %2$s!'),
53                                         $tagname, common_config('site', 'name')));
54         return $c;
55     }
56
57     function isReadOnly(array $args=array())
58     {
59         return true;
60     }
61 }