]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/tag.php
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
[quix0rs-gnu-social.git] / actions / tag.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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('LACONICA')) { exit(1); }
21
22 class TagAction extends Action
23 {
24     function prepare($args)
25     {
26         parent::prepare($args);
27         $this->tag = $this->trimmed('tag');
28
29         if (!$this->tag) {
30             common_redirect(common_local_url('publictagcloud'), 301);
31             return false;
32         }
33
34         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
35         return true;
36     }
37
38     function title()
39     {
40         if ($this->page == 1) {
41             return sprintf(_("Notices tagged with %s"), $this->tag);
42         } else {
43             return sprintf(_("Notices tagged with %s, page %d"),
44                            $this->tag,
45                            $this->page);
46         }
47     }
48
49     function handle($args)
50     {
51         parent::handle($args);
52
53         $this->showPage();
54     }
55
56     function showFeeds()
57     {
58         $this->element('link', array('rel' => 'alternate',
59                                      'href' => common_local_url('tagrss', array('tag' => $this->tag)),
60                                      'type' => 'application/rss+xml',
61                                      'title' => sprintf(_('Feed for tag %s'), $this->tag)));
62     }
63
64     function showPageNotice()
65     {
66         return sprintf(_('Messages tagged "%s", most recent first'), $this->tag);
67     }
68
69     function showExportData()
70     {
71         $fl = new FeedList($this);
72         $fl->show(array(0=>array('href'=>common_local_url('tagrss', array('tag' => $this->tag)),
73                                  'type' => 'rss',
74                                  'version' => 'RSS 1.0',
75                                  'item' => 'tagrss')));
76     }
77
78     function showContent()
79     {
80         $notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
81
82         $nl = new NoticeList($notice, $this);
83
84         $cnt = $nl->show();
85
86         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
87                           $this->page, 'tag', array('tag' => $this->tag));
88     }
89 }