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