123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class TagAction extends ManagedAction
- {
- var $notice;
- var $tag;
- var $page;
- protected function prepare(array $args=array())
- {
- parent::prepare($args);
- $taginput = $this->trimmed('tag');
- $this->tag = common_canonical_tag($taginput);
- if (empty($this->tag)) {
- throw new ClientException(_('No valid tag data.'));
- }
-
- if ($this->tag !== $taginput) {
- common_redirect(common_local_url('tag', array('tag' => $this->tag)), 301);
- }
- $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
- common_set_returnto($this->selfUrl());
- $this->notice = Notice_tag::getStream($this->tag)->getNotices(($this->page-1)*NOTICES_PER_PAGE,
- NOTICES_PER_PAGE + 1);
- if($this->page > 1 && $this->notice->N == 0){
-
- $this->clientError(_('No such page.'), 404);
- }
- return true;
- }
- function title()
- {
- if ($this->page == 1) {
-
-
- return sprintf(_('Notices tagged with %s'), $this->tag);
- } else {
-
-
- return sprintf(_('Notices tagged with %1$s, page %2$d'),
- $this->tag,
- $this->page);
- }
- }
- function getFeeds()
- {
- return array(new Feed(Feed::JSON,
- common_local_url('ApiTimelineTag',
- array('format' => 'as',
- 'tag' => $this->tag)),
-
-
- sprintf(_('Notice feed for tag %s (Activity Streams JSON)'),
- $this->tag)),
- new Feed(Feed::RSS1,
- common_local_url('tagrss',
- array('tag' => $this->tag)),
-
-
- sprintf(_('Notice feed for tag %s (RSS 1.0)'),
- $this->tag)),
- new Feed(Feed::RSS2,
- common_local_url('ApiTimelineTag',
- array('format' => 'rss',
- 'tag' => $this->tag)),
-
-
- sprintf(_('Notice feed for tag %s (RSS 2.0)'),
- $this->tag)),
- new Feed(Feed::ATOM,
- common_local_url('ApiTimelineTag',
- array('format' => 'atom',
- 'tag' => $this->tag)),
-
-
- sprintf(_('Notice feed for tag %s (Atom)'),
- $this->tag)));
- }
- protected function showContent()
- {
- if(Event::handle('StartTagShowContent', array($this))) {
- $nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE));
- $cnt = $nl->show();
- $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
- $this->page, 'tag', array('tag' => $this->tag));
- Event::handle('EndTagShowContent', array($this));
- }
- }
- function isReadOnly($args)
- {
- return true;
- }
- }
|