2008-11-13 11:48:33 +09:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-26 07:14:12 +09:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-26 07:12:20 +09:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-11-13 11:48:33 +09:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-07-09 21:22:22 +09:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-11-13 11:48:33 +09:00
|
|
|
|
|
|
|
// Formatting of RSS handled by Rss10Action
|
2015-07-10 07:28:36 +09:00
|
|
|
|
2008-12-24 04:49:23 +09:00
|
|
|
class TagrssAction extends Rss10Action
|
|
|
|
{
|
2015-07-10 07:28:36 +09:00
|
|
|
protected $tag;
|
2008-11-13 11:48:33 +09:00
|
|
|
|
2015-07-10 07:28:36 +09:00
|
|
|
protected function doStreamPreparation()
|
|
|
|
{
|
2009-02-06 03:10:47 +09:00
|
|
|
$tag = common_canonical_tag($this->trimmed('tag'));
|
2013-08-18 20:04:58 +09:00
|
|
|
$this->tag = Notice_tag::getKV('tag', $tag);
|
2015-07-10 07:28:36 +09:00
|
|
|
if (!$this->tag instanceof Notice_tag) {
|
2011-03-30 02:25:44 +09:00
|
|
|
// TRANS: Client error when requesting a tag feed for a non-existing tag.
|
2009-01-16 08:03:38 +09:00
|
|
|
$this->clientError(_('No such tag.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
}
|
2008-11-13 11:48:33 +09:00
|
|
|
|
2015-07-10 07:28:36 +09:00
|
|
|
protected function getNotices()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2015-07-10 07:28:36 +09:00
|
|
|
$stream = Notice_tag::getStream($this->tag->tag)->getNotices(0, $this->limit);
|
|
|
|
return $stream->fetchAll();
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-11-13 11:48:33 +09:00
|
|
|
|
2009-02-06 03:10:47 +09:00
|
|
|
function getChannel()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-02-06 03:10:47 +09:00
|
|
|
$tagname = $this->tag->tag;
|
2008-12-24 04:19:07 +09:00
|
|
|
$c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
|
|
|
|
'title' => $tagname,
|
|
|
|
'link' => common_local_url('tagrss', array('tag' => $tagname)),
|
2011-03-30 02:25:44 +09:00
|
|
|
// TRANS: Tag feed description.
|
|
|
|
// TRANS: %1$s is the tag name, %2$s is the StatusNet sitename.
|
2009-08-07 00:36:24 +09:00
|
|
|
'description' => sprintf(_('Updates tagged with %1$s on %2$s!'),
|
|
|
|
$tagname, common_config('site', 'name')));
|
2008-12-24 04:19:07 +09:00
|
|
|
return $c;
|
|
|
|
}
|
2009-01-23 18:15:15 +09:00
|
|
|
|
2009-04-14 04:49:26 +09:00
|
|
|
function isReadOnly($args)
|
2009-01-23 18:15:15 +09:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-11-13 11:48:33 +09:00
|
|
|
}
|