2008-11-13 02:48:33 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-11-13 02:48:33 +00: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 13:22:22 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-11-13 02:48:33 +00:00
|
|
|
|
|
|
|
// Formatting of RSS handled by Rss10Action
|
2015-07-09 23:28:36 +01:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class TagrssAction extends Rss10Action
|
|
|
|
{
|
2015-07-09 23:28:36 +01:00
|
|
|
protected $tag;
|
2008-11-13 02:48:33 +00:00
|
|
|
|
2015-07-09 23:28:36 +01:00
|
|
|
protected function doStreamPreparation()
|
|
|
|
{
|
2009-02-05 18:10:47 +00:00
|
|
|
$tag = common_canonical_tag($this->trimmed('tag'));
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->tag = Notice_tag::getKV('tag', $tag);
|
2015-07-09 23:28:36 +01:00
|
|
|
if (!$this->tag instanceof Notice_tag) {
|
2011-03-29 18:25:44 +01:00
|
|
|
// TRANS: Client error when requesting a tag feed for a non-existing tag.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such tag.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-13 02:48:33 +00:00
|
|
|
|
2015-07-09 23:28:36 +01:00
|
|
|
protected function getNotices()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2015-07-09 23:28:36 +01:00
|
|
|
$stream = Notice_tag::getStream($this->tag->tag)->getNotices(0, $this->limit);
|
|
|
|
return $stream->fetchAll();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-13 02:48:33 +00:00
|
|
|
|
2009-02-05 18:10:47 +00:00
|
|
|
function getChannel()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-02-05 18:10:47 +00:00
|
|
|
$tagname = $this->tag->tag;
|
2008-12-23 19:19:07 +00:00
|
|
|
$c = array('url' => common_local_url('tagrss', array('tag' => $tagname)),
|
|
|
|
'title' => $tagname,
|
|
|
|
'link' => common_local_url('tagrss', array('tag' => $tagname)),
|
2011-03-29 18:25:44 +01:00
|
|
|
// TRANS: Tag feed description.
|
|
|
|
// TRANS: %1$s is the tag name, %2$s is the StatusNet sitename.
|
2009-08-06 16:36:24 +01:00
|
|
|
'description' => sprintf(_('Updates tagged with %1$s on %2$s!'),
|
|
|
|
$tagname, common_config('site', 'name')));
|
2008-12-23 19:19:07 +00:00
|
|
|
return $c;
|
|
|
|
}
|
2009-01-23 09:15:15 +00:00
|
|
|
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-23 09:15:15 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-11-13 02:48:33 +00:00
|
|
|
}
|