]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/tag.php
944cda1f4a16c3dceaa532b036266c952384b42a
[quix0rs-gnu-social.git] / actions / tag.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('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 class TagAction extends Action
23 {
24
25     var $notice;
26
27     function prepare($args)
28     {
29         parent::prepare($args);
30         $taginput = $this->trimmed('tag');
31         $this->tag = common_canonical_tag($taginput);
32
33         if (!$this->tag) {
34             common_redirect(common_local_url('publictagcloud'), 301);
35             return false;
36         }
37
38         if ($this->tag != $taginput) {
39             common_redirect(common_local_url('tag', array('tag' => $this->tag)),
40                             301);
41             return false;
42         }
43
44         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
45
46         common_set_returnto($this->selfUrl());
47
48         $this->notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
49
50         if($this->page > 1 && $this->notice->N == 0){
51             // TRANS: Server error when page not found (404)
52             $this->serverError(_('No such page.'),$code=404);
53         }
54
55         return true;
56     }
57
58     function showSections()
59     {
60         $pop = new PopularNoticeSection($this);
61         $pop->show();
62     }
63
64     function title()
65     {
66         if ($this->page == 1) {
67             // TRANS: Title for first page of notices with tags.
68             // TRANS: %s is the tag.
69             return sprintf(_('Notices tagged with %s'), $this->tag);
70         } else {
71             // TRANS: Title for all but the first page of notices with tags.
72             // TRANS: %1$s is the tag, %2$d is the page number.
73             return sprintf(_('Notices tagged with %1$s, page %2$d'),
74                            $this->tag,
75                            $this->page);
76         }
77     }
78
79     function handle($args)
80     {
81         parent::handle($args);
82
83         $this->showPage();
84     }
85
86     function getFeeds()
87     {
88         return array(new Feed(Feed::RSS1,
89                               common_local_url('tagrss',
90                                                array('tag' => $this->tag)),
91                               sprintf(_('Notice feed for tag %s (RSS 1.0)'),
92                                       $this->tag)),
93                      new Feed(Feed::RSS2,
94                               common_local_url('ApiTimelineTag',
95                                                array('format' => 'rss',
96                                                      'tag' => $this->tag)),
97                               sprintf(_('Notice feed for tag %s (RSS 2.0)'),
98                                       $this->tag)),
99                      new Feed(Feed::ATOM,
100                               common_local_url('ApiTimelineTag',
101                                                array('format' => 'atom',
102                                                      'tag' => $this->tag)),
103                               sprintf(_('Notice feed for tag %s (Atom)'),
104                                       $this->tag)));
105     }
106
107     function showContent()
108     {
109         if(Event::handle('StartTagShowContent', array($this))) {
110             
111             $nl = new NoticeList($this->notice, $this);
112
113             $cnt = $nl->show();
114
115             $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
116                               $this->page, 'tag', array('tag' => $this->tag));
117
118             Event::handle('EndTagShowContent', array($this));
119         }
120     }
121
122     function isReadOnly($args)
123     {
124         return true;
125     }
126 }