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
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
28 * A base class for basic support for outputting syndication feeds in RSS and other formats.
36 var $Description = '';
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;
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() {
81 public function getAuthor() {
82 return $this->xmlEncode( $this->Author
);
84 public function getComments() {
85 return $this->xmlEncode( $this->Comments
);
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 );
98 * @todo document (needs one-sentence top-level class description).
100 class ChannelFeed
extends FeedItem
{
102 * Abstract function, override!
107 * Generate Header of the feed
109 function outHeader() {
117 function outItem( $item ) {
118 # print "<item>...</item>";
122 * Generate Footer of the feed
124 function outFooter() {
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.
139 function httpHeaders() {
142 # We take over from $wgOut, excepting its cache header info
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.
156 function contentType() {
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.
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" ) ) .
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() {
199 $this->outXmlHeader();
200 ?
><rss version
="2.0" xmlns
:dc
="http://purl.org/dc/elements/1.1/">
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
>
212 * Output an RSS 2.0 item
213 * @param FeedItem item to be output
215 function outItem( $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
}?
>
229 * Ouput an RSS 2.0 footer
231 function outFooter() {
239 * Generate an Atom feed
241 class AtomFeed
extends ChannelFeed
{
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() {
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
>
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.
278 function getFeedId() {
279 return $this->getSelfUrl();
283 * Atom 1.0 requests a self-reference to the feed.
287 function getSelfUrl() {
289 return htmlspecialchars( $wgRequest->getFullRequestURL() );
293 * Output a given item.
296 function outItem( $item ) {
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
>
307 <summary type
="html"><?php
print $item->getDescription() ?
></summary
>
308 <?php
if( $item->getAuthor() ) { ?
><author
><name
><?php
print $item->getAuthor() ?
></name
></author
><?php
}?
>
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() {?
>