3 * Copyright (C) 2004 Gabriel Wicke <wicke@wikidev.net>
5 * Based on PageHistory and SpecialExport
7 * License: GPL (http://www.gnu.org/copyleft/gpl.html)
9 * @author Gabriel Wicke <wicke@wikidev.net>
14 * A simple method to retrieve the plain source of an article,
15 * using "action=raw" in the GET request string.
18 var $mArticle, $mTitle, $mRequest;
19 var $mOldId, $mGen, $mCharset, $mSection;
20 var $mSmaxage, $mMaxage;
21 var $mContentType, $mExpandTemplates;
23 function __construct( &$article, $request = false ) {
24 global $wgRequest, $wgInputEncoding, $wgSquidMaxage, $wgJsMimeType, $wgForcedRawSMaxage, $wgGroupPermissions;
26 $allowedCTypes = array('text/x-wiki', $wgJsMimeType, 'text/css', 'application/x-zope-edit');
27 $this->mArticle
=& $article;
28 $this->mTitle
=& $article->mTitle
;
30 if ( $request === false ) {
31 $this->mRequest
=& $wgRequest;
33 $this->mRequest
= $request;
36 $ctype = $this->mRequest
->getVal( 'ctype' );
37 $smaxage = $this->mRequest
->getIntOrNull( 'smaxage', $wgSquidMaxage );
38 $maxage = $this->mRequest
->getInt( 'maxage', $wgSquidMaxage );
40 $this->mExpandTemplates
= $this->mRequest
->getVal( 'templates' ) === 'expand';
41 $this->mUseMessageCache
= $this->mRequest
->getBool( 'usemsgcache' );
43 $this->mSection
= $this->mRequest
->getIntOrNull( 'section' );
45 $oldid = $this->mRequest
->getInt( 'oldid' );
47 switch ( $wgRequest->getText( 'direction' ) ) {
49 # output next revision, or nothing if there isn't one
51 $oldid = $this->mTitle
->getNextRevisionId( $oldid );
53 $oldid = $oldid ?
$oldid : -1;
56 # output previous revision, or nothing if there isn't one
58 # get the current revision so we can get the penultimate one
59 $this->mArticle
->getTouched();
60 $oldid = $this->mArticle
->mLatest
;
62 $prev = $this->mTitle
->getPreviousRevisionId( $oldid );
63 $oldid = $prev ?
$prev : -1 ;
69 $this->mOldId
= $oldid;
71 # special case for 'generated' raw things: user css/js
72 $gen = $this->mRequest
->getVal( 'gen' );
76 if( is_null( $smaxage ) ) $smaxage = $wgSquidMaxage;
77 if($ctype == '') $ctype = 'text/css';
78 } elseif ($gen == 'js') {
80 if( is_null( $smaxage ) ) $smaxage = $wgSquidMaxage;
81 if($ctype == '') $ctype = $wgJsMimeType;
85 $this->mCharset
= $wgInputEncoding;
87 # Force caching for CSS and JS raw content, default: 5 minutes
88 if (is_null($smaxage) and ($ctype=='text/css' or $ctype==$wgJsMimeType)) {
89 $this->mSmaxage
= intval($wgForcedRawSMaxage);
91 $this->mSmaxage
= intval( $smaxage );
93 $this->mMaxage
= $maxage;
95 # Output may contain user-specific data;
96 # vary generated content for open sessions and private wikis
97 if ($this->mGen
or !$wgGroupPermissions['*']['read']) {
98 $this->mPrivateCache
= ( $this->mSmaxage
== 0 ) ||
99 ( session_id() != '' );
101 $this->mPrivateCache
= false;
104 if ( $ctype == '' or ! in_array( $ctype, $allowedCTypes ) ) {
105 $this->mContentType
= 'text/x-wiki';
107 $this->mContentType
= $ctype;
112 global $wgOut, $wgScript;
114 if( isset( $_SERVER['SCRIPT_URL'] ) ) {
115 # Normally we use PHP_SELF to get the URL to the script
116 # as it was called, minus the query string.
118 # Some sites use Apache rewrite rules to handle subdomains,
119 # and have PHP set up in a weird way that causes PHP_SELF
120 # to contain the rewritten URL instead of the one that the
121 # outside world sees.
123 # If in this mode, use SCRIPT_URL instead, which mod_rewrite
124 # provides containing the "before" URL.
125 $url = $_SERVER['SCRIPT_URL'];
127 $url = $_SERVER['PHP_SELF'];
130 if( strcmp( $wgScript, $url ) ) {
131 # Internet Explorer will ignore the Content-Type header if it
132 # thinks it sees a file extension it recognizes. Make sure that
133 # all raw requests are done through the script node, which will
134 # have eg '.php' and should remain safe.
136 # We used to redirect to a canonical-form URL as a general
137 # backwards-compatibility / good-citizen nice thing. However
138 # a lot of servers are set up in buggy ways, resulting in
139 # redirect loops which hang the browser until the CSS load
142 # Just return a 403 Forbidden and get it over with.
143 wfHttpError( 403, 'Forbidden',
144 'Raw pages must be accessed through the primary script entry point.' );
148 header( "Content-type: ".$this->mContentType
.'; charset='.$this->mCharset
);
149 # allow the client to cache this for 24 hours
150 $mode = $this->mPrivateCache ?
'private' : 'public';
151 header( 'Cache-Control: '.$mode.', s-maxage='.$this->mSmaxage
.', max-age='.$this->mMaxage
);
152 $text = $this->getRawText();
154 if( !wfRunHooks( 'RawPageViewBeforeOutput', array( &$this, &$text ) ) ) {
155 wfDebug( __METHOD__
. ': RawPageViewBeforeOutput hook broke raw page output.' );
162 function getRawText() {
163 global $wgUser, $wgOut, $wgRequest;
165 $sk = $wgUser->getSkin();
166 if( !StubObject
::isRealObject( $wgOut ) )
167 $wgOut->_unstub( 2 );
168 $sk->initPage( $wgOut );
169 if($this->mGen
== 'css') {
170 return $sk->generateUserStylesheet();
171 } else if($this->mGen
== 'js') {
172 return $sk->generateUserJs();
175 return $this->getArticleText();
179 function getArticleText() {
182 if( $this->mTitle
) {
183 // If it's a MediaWiki message we can just hit the message cache
184 if ( $this->mUseMessageCache
&& $this->mTitle
->getNamespace() == NS_MEDIAWIKI
) {
185 $key = $this->mTitle
->getDBkey();
186 $text = wfMsgForContentNoTrans( $key );
187 # If the message doesn't exist, return a blank
188 if( wfEmptyMsg( $key, $text ) )
192 // Get it from the DB
193 $rev = Revision
::newFromTitle( $this->mTitle
, $this->mOldId
);
195 $lastmod = wfTimestamp( TS_RFC2822
, $rev->getTimestamp() );
196 header( "Last-modified: $lastmod" );
198 if ( !is_null($this->mSection
) ) {
200 $text = $wgParser->getSection ( $rev->getText(), $this->mSection
);
202 $text = $rev->getText();
208 # Bad title or page does not exist
209 if( !$found && $this->mContentType
== 'text/x-wiki' ) {
210 # Don't return a 404 response for CSS or JavaScript;
211 # 404s aren't generally cached and it would create
212 # extra hits when user CSS/JS are on and the user doesn't
214 header( "HTTP/1.0 404 Not Found" );
217 // Special-case for empty CSS/JS
219 // Internet Explorer for Mac handles empty files badly;
220 // particularly so when keep-alive is active. It can lead
221 // to long timeouts as it seems to sit there waiting for
222 // more data that never comes.
224 // Give it a comment...
225 if( strlen( $text ) == 0 &&
226 ($this->mContentType
== 'text/css' ||
227 $this->mContentType
== 'text/javascript' ) ) {
228 return "/* Empty */";
231 return $this->parseArticleText( $text );
234 function parseArticleText( $text ) {
238 if ( $this->mExpandTemplates
) {
240 return $wgParser->preprocess( $text, $this->mTitle
, new ParserOptions() );