Was occassionally failing due to race condition caused by mt_rand behaviour:
[mediawiki.git] / includes / Feed.php
blobfe6d8febd63e04fea5ef729d4dedf642483d9b63
1 <?php
3 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
4 # http://www.mediawiki.org/
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
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 General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # http://www.gnu.org/copyleft/gpl.html
21 /**
22 * Basic support for outputting syndication feeds in RSS, other formats.
23 * Contain a feed class as well as classes to build rss / atom ... feeds
24 * Available feeds are defined in Defines.php
27 /**
28 * A base class for basic support for outputting syndication feeds in RSS and other formats.
30 class FeedItem {
31 /**#@+
32 * @var string
33 * @private
35 var $Title = 'Wiki';
36 var $Description = '';
37 var $Url = '';
38 var $Date = '';
39 var $Author = '';
40 /**#@-*/
42 /**#@+
43 * @todo document
44 * @param $Url URL uniquely designating the item.
46 function __construct( $Title, $Description, $Url, $Date = '', $Author = '', $Comments = '' ) {
47 $this->Title = $Title;
48 $this->Description = $Description;
49 $this->Url = $Url;
50 $this->Date = $Date;
51 $this->Author = $Author;
52 $this->Comments = $Comments;
55 public function xmlEncode( $string ) {
56 $string = str_replace( "\r\n", "\n", $string );
57 $string = preg_replace( '/[\x00-\x08\x0b\x0c\x0e-\x1f]/', '', $string );
58 return htmlspecialchars( $string );
61 public function getTitle() {
62 return $this->xmlEncode( $this->Title );
65 public function getUrl() {
66 return $this->xmlEncode( $this->Url );
69 public function getDescription() {
70 return $this->xmlEncode( $this->Description );
73 public function getLanguage() {
74 global $wgContLanguageCode;
75 return $wgContLanguageCode;
78 public function getDate() {
79 return $this->Date;
81 public function getAuthor() {
82 return $this->xmlEncode( $this->Author );
84 public function getComments() {
85 return $this->xmlEncode( $this->Comments );
88 /**
89 * Quickie hack... strip out wikilinks to more legible form from the comment.
91 public static function stripComment( $text ) {
92 return preg_replace( '/\[\[([^]]*\|)?([^]]+)\]\]/', '\2', $text );
94 /**#@-*/
97 /**
98 * @todo document (needs one-sentence top-level class description).
100 class ChannelFeed extends FeedItem {
101 /**#@+
102 * Abstract function, override!
103 * @abstract
107 * Generate Header of the feed
109 function outHeader() {
110 # print "<feed>";
114 * Generate an item
115 * @param $item
117 function outItem( $item ) {
118 # print "<item>...</item>";
122 * Generate Footer of the feed
124 function outFooter() {
125 # print "</feed>";
127 /**#@-*/
130 * Setup and send HTTP headers. Don't send any content;
131 * content might end up being cached and re-sent with
132 * these same headers later.
134 * This should be called from the outHeader() method,
135 * but can also be called separately.
137 * @public
139 function httpHeaders() {
140 global $wgOut;
142 # We take over from $wgOut, excepting its cache header info
143 $wgOut->disable();
144 $mimetype = $this->contentType();
145 header( "Content-type: $mimetype; charset=UTF-8" );
146 $wgOut->sendCacheControl();
151 * Return an internet media type to be sent in the headers.
153 * @return string
154 * @private
156 function contentType() {
157 global $wgRequest;
158 $ctype = $wgRequest->getVal('ctype','application/xml');
159 $allowedctypes = array('application/xml','text/xml','application/rss+xml','application/atom+xml');
160 return (in_array($ctype, $allowedctypes) ? $ctype : 'application/xml');
164 * Output the initial XML headers with a stylesheet for legibility
165 * if someone finds it in a browser.
166 * @private
168 function outXmlHeader() {
169 global $wgStylePath, $wgStyleVersion;
171 $this->httpHeaders();
172 echo '<?xml version="1.0"?>' . "\n";
173 echo '<?xml-stylesheet type="text/css" href="' .
174 htmlspecialchars( wfExpandUrl( "$wgStylePath/common/feed.css?$wgStyleVersion" ) ) .
175 '"?' . ">\n";
180 * Generate a RSS feed
182 class RSSFeed extends ChannelFeed {
185 * Format a date given a timestamp
186 * @param integer $ts Timestamp
187 * @return string Date string
189 function formatTime( $ts ) {
190 return gmdate( 'D, d M Y H:i:s \G\M\T', wfTimestamp( TS_UNIX, $ts ) );
194 * Ouput an RSS 2.0 header
196 function outHeader() {
197 global $wgVersion;
199 $this->outXmlHeader();
200 ?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
201 <channel>
202 <title><?php print $this->getTitle() ?></title>
203 <link><?php print $this->getUrl() ?></link>
204 <description><?php print $this->getDescription() ?></description>
205 <language><?php print $this->getLanguage() ?></language>
206 <generator>MediaWiki <?php print $wgVersion ?></generator>
207 <lastBuildDate><?php print $this->formatTime( wfTimestampNow() ) ?></lastBuildDate>
208 <?php
212 * Output an RSS 2.0 item
213 * @param FeedItem item to be output
215 function outItem( $item ) {
217 <item>
218 <title><?php print $item->getTitle() ?></title>
219 <link><?php print $item->getUrl() ?></link>
220 <description><?php print $item->getDescription() ?></description>
221 <?php if( $item->getDate() ) { ?><pubDate><?php print $this->formatTime( $item->getDate() ) ?></pubDate><?php } ?>
222 <?php if( $item->getAuthor() ) { ?><dc:creator><?php print $item->getAuthor() ?></dc:creator><?php }?>
223 <?php if( $item->getComments() ) { ?><comments><?php print $item->getComments() ?></comments><?php }?>
224 </item>
225 <?php
229 * Ouput an RSS 2.0 footer
231 function outFooter() {
233 </channel>
234 </rss><?php
239 * Generate an Atom feed
241 class AtomFeed extends ChannelFeed {
243 * @todo document
245 function formatTime( $ts ) {
246 // need to use RFC 822 time format at least for rss2.0
247 return gmdate( 'Y-m-d\TH:i:s', wfTimestamp( TS_UNIX, $ts ) );
251 * Outputs a basic header for Atom 1.0 feeds.
253 function outHeader() {
254 global $wgVersion;
256 $this->outXmlHeader();
257 ?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="<?php print $this->getLanguage() ?>">
258 <id><?php print $this->getFeedId() ?></id>
259 <title><?php print $this->getTitle() ?></title>
260 <link rel="self" type="application/atom+xml" href="<?php print $this->getSelfUrl() ?>"/>
261 <link rel="alternate" type="text/html" href="<?php print $this->getUrl() ?>"/>
262 <updated><?php print $this->formatTime( wfTimestampNow() ) ?>Z</updated>
263 <subtitle><?php print $this->getDescription() ?></subtitle>
264 <generator>MediaWiki <?php print $wgVersion ?></generator>
266 <?php
270 * Atom 1.0 requires a unique, opaque IRI as a unique indentifier
271 * for every feed we create. For now just use the URL, but who
272 * can tell if that's right? If we put options on the feed, do we
273 * have to change the id? Maybe? Maybe not.
275 * @return string
276 * @private
278 function getFeedId() {
279 return $this->getSelfUrl();
283 * Atom 1.0 requests a self-reference to the feed.
284 * @return string
285 * @private
287 function getSelfUrl() {
288 global $wgRequest;
289 return htmlspecialchars( $wgRequest->getFullRequestURL() );
293 * Output a given item.
294 * @param $item
296 function outItem( $item ) {
297 global $wgMimeType;
299 <entry>
300 <id><?php print $item->getUrl() ?></id>
301 <title><?php print $item->getTitle() ?></title>
302 <link rel="alternate" type="<?php print $wgMimeType ?>" href="<?php print $item->getUrl() ?>"/>
303 <?php if( $item->getDate() ) { ?>
304 <updated><?php print $this->formatTime( $item->getDate() ) ?>Z</updated>
305 <?php } ?>
307 <summary type="html"><?php print $item->getDescription() ?></summary>
308 <?php if( $item->getAuthor() ) { ?><author><name><?php print $item->getAuthor() ?></name></author><?php }?>
309 </entry>
311 <?php /* FIXME need to add comments
312 <?php if( $item->getComments() ) { ?><dc:comment><?php print $item->getComments() ?></dc:comment><?php }?>
317 * Outputs the footer for Atom 1.0 feed (basicly '\</feed\>').
319 function outFooter() {?>
320 </feed><?php