]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/RawPage.php
MediaWiki 1.17.1-scripts
[autoinstalls/mediawiki.git] / includes / RawPage.php
1 <?php
2 /**
3  * Raw page text accessor
4  *
5  * Copyright © 2004 Gabriel Wicke <wicke@wikidev.net>
6  * http://wikidev.net/
7  *
8  * Based on HistoryPage and SpecialExport
9  *
10  * License: GPL (http://www.gnu.org/copyleft/gpl.html)
11  *
12  * @author Gabriel Wicke <wicke@wikidev.net>
13  * @file
14  */
15
16 /**
17  * A simple method to retrieve the plain source of an article,
18  * using "action=raw" in the GET request string.
19  */
20 class RawPage {
21         var $mArticle, $mTitle, $mRequest;
22         var $mOldId, $mGen, $mCharset, $mSection;
23         var $mSmaxage, $mMaxage;
24         var $mContentType, $mExpandTemplates;
25
26         function __construct( Article $article, $request = false ) {
27                 global $wgRequest, $wgInputEncoding, $wgSquidMaxage, $wgJsMimeType, $wgGroupPermissions;
28
29                 $allowedCTypes = array( 'text/x-wiki', $wgJsMimeType, 'text/css', 'application/x-zope-edit' );
30                 $this->mArticle = $article;
31                 $this->mTitle = $article->mTitle;
32
33                 if( $request === false ) {
34                         $this->mRequest = $wgRequest;
35                 } else {
36                         $this->mRequest = $request;
37                 }
38
39                 $ctype = $this->mRequest->getVal( 'ctype' );
40                 $smaxage = $this->mRequest->getIntOrNull( 'smaxage' );
41                 $maxage = $this->mRequest->getInt( 'maxage', $wgSquidMaxage );
42
43                 $this->mExpandTemplates = $this->mRequest->getVal( 'templates' ) === 'expand';
44                 $this->mUseMessageCache = $this->mRequest->getBool( 'usemsgcache' );
45
46                 $this->mSection = $this->mRequest->getIntOrNull( 'section' );
47
48                 $oldid = $this->mRequest->getInt( 'oldid' );
49
50                 switch( $wgRequest->getText( 'direction' ) ) {
51                         case 'next':
52                                 # output next revision, or nothing if there isn't one
53                                 if( $oldid ) {
54                                         $oldid = $this->mTitle->getNextRevisionId( $oldid );
55                                 }
56                                 $oldid = $oldid ? $oldid : -1;
57                                 break;
58                         case 'prev':
59                                 # output previous revision, or nothing if there isn't one
60                                 if( !$oldid ) {
61                                         # get the current revision so we can get the penultimate one
62                                         $this->mArticle->getTouched();
63                                         $oldid = $this->mArticle->mLatest;
64                                 }
65                                 $prev = $this->mTitle->getPreviousRevisionId( $oldid );
66                                 $oldid = $prev ? $prev : -1 ;
67                                 break;
68                         case 'cur':
69                                 $oldid = 0;
70                                 break;
71                 }
72                 $this->mOldId = $oldid;
73
74                 # special case for 'generated' raw things: user css/js
75                 $gen = $this->mRequest->getVal( 'gen' );
76
77                 if( $gen == 'css' ) {
78                         $this->mGen = $gen;
79                         if( is_null( $smaxage ) ) {
80                                 $smaxage = $wgSquidMaxage;
81                         }
82                         if( $ctype == '' ) {
83                                 $ctype = 'text/css';
84                         }
85                 } elseif( $gen == 'js' ) {
86                         $this->mGen = $gen;
87                         if( is_null( $smaxage ) ) $smaxage = $wgSquidMaxage;
88                         if($ctype == '') $ctype = $wgJsMimeType;
89                 } else {
90                         $this->mGen = false;
91                 }
92                 $this->mCharset = $wgInputEncoding;
93
94                 # Force caching for CSS and JS raw content, default: 5 minutes
95                 if( is_null( $smaxage ) && ( $ctype == 'text/css' || $ctype == $wgJsMimeType ) ) {
96                         global $wgForcedRawSMaxage;
97                         $this->mSmaxage = intval( $wgForcedRawSMaxage );
98                 } else {
99                         $this->mSmaxage = intval( $smaxage );
100                 }
101                 $this->mMaxage = $maxage;
102
103                 # Output may contain user-specific data;
104                 # vary generated content for open sessions and private wikis
105                 if( $this->mGen || !$wgGroupPermissions['*']['read'] ) {
106                         $this->mPrivateCache = $this->mSmaxage == 0 || session_id() != '';
107                 } else {
108                         $this->mPrivateCache = false;
109                 }
110
111                 if( $ctype == '' || !in_array( $ctype, $allowedCTypes ) ) {
112                         $this->mContentType = 'text/x-wiki';
113                 } else {
114                         $this->mContentType = $ctype;
115                 }
116         }
117
118         function view() {
119                 global $wgOut, $wgRequest;
120
121                 if( !$wgRequest->checkUrlExtension() ) {
122                         $wgOut->disable();
123                         return;
124                 }
125
126                 header( 'Content-type: ' . $this->mContentType . '; charset=' . $this->mCharset );
127                 # allow the client to cache this for 24 hours
128                 $mode = $this->mPrivateCache ? 'private' : 'public';
129                 header( 'Cache-Control: ' . $mode . ', s-maxage=' . $this->mSmaxage . ', max-age=' . $this->mMaxage );
130
131                 global $wgUseFileCache;
132                 if( $wgUseFileCache && HTMLFileCache::useFileCache() ) {
133                         $cache = new HTMLFileCache( $this->mTitle, 'raw' );
134                         if( $cache->isFileCacheGood( /* Assume up to date */ ) ) {
135                                 $cache->loadFromFileCache();
136                                 $wgOut->disable();
137                                 return;
138                         } else {
139                                 ob_start( array( &$cache, 'saveToFileCache' ) );
140                         }
141                 }
142
143                 $text = $this->getRawText();
144
145                 if( !wfRunHooks( 'RawPageViewBeforeOutput', array( &$this, &$text ) ) ) {
146                         wfDebug( __METHOD__ . ": RawPageViewBeforeOutput hook broke raw page output.\n" );
147                 }
148
149                 echo $text;
150                 $wgOut->disable();
151         }
152
153         function getRawText() {
154                 global $wgUser, $wgOut;
155                 if( $this->mGen ) {
156                         $sk = $wgUser->getSkin();
157                         if( !StubObject::isRealObject( $wgOut ) ) {
158                                 $wgOut->_unstub( 2 );
159                         }
160                         $sk->initPage( $wgOut );
161                         if( $this->mGen == 'css' ) {
162                                 return $sk->generateUserStylesheet();
163                         } else if( $this->mGen == 'js' ) {
164                                 return $sk->generateUserJs();
165                         }
166                 } else {
167                         return $this->getArticleText();
168                 }
169         }
170
171         function getArticleText() {
172                 $found = false;
173                 $text = '';
174                 if( $this->mTitle ) {
175                         // If it's a MediaWiki message we can just hit the message cache
176                         if( $this->mUseMessageCache && $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
177                                 $key = $this->mTitle->getDBkey();
178                                 $text = wfMsgForContentNoTrans( $key );
179                                 # If the message doesn't exist, return a blank
180                                 if( wfEmptyMsg( $key, $text ) ) {
181                                         $text = '';
182                                 }
183                                 $found = true;
184                         } else {
185                                 // Get it from the DB
186                                 $rev = Revision::newFromTitle( $this->mTitle, $this->mOldId );
187                                 if( $rev ) {
188                                         $lastmod = wfTimestamp( TS_RFC2822, $rev->getTimestamp() );
189                                         header( "Last-modified: $lastmod" );
190
191                                         if( !is_null( $this->mSection ) ) {
192                                                 global $wgParser;
193                                                 $text = $wgParser->getSection( $rev->getText(), $this->mSection );
194                                         } else {
195                                                 $text = $rev->getText();
196                                         }
197                                         $found = true;
198                                 }
199                         }
200                 }
201
202                 # Bad title or page does not exist
203                 if( !$found && $this->mContentType == 'text/x-wiki' ) {
204                         # Don't return a 404 response for CSS or JavaScript;
205                         # 404s aren't generally cached and it would create
206                         # extra hits when user CSS/JS are on and the user doesn't
207                         # have the pages.
208                         header( 'HTTP/1.0 404 Not Found' );
209                 }
210
211                 // Special-case for empty CSS/JS
212                 //
213                 // Internet Explorer for Mac handles empty files badly;
214                 // particularly so when keep-alive is active. It can lead
215                 // to long timeouts as it seems to sit there waiting for
216                 // more data that never comes.
217                 //
218                 // Give it a comment...
219                 if( strlen( $text ) == 0 &&
220                         ( $this->mContentType == 'text/css' ||
221                                 $this->mContentType == 'text/javascript' ) ) {
222                         return '/* Empty */';
223                 }
224
225                 return $this->parseArticleText( $text );
226         }
227
228         function parseArticleText( $text ) {
229                 if( $text === '' ) {
230                         return '';
231                 } else {
232                         if( $this->mExpandTemplates ) {
233                                 global $wgParser;
234                                 return $wgParser->preprocess( $text, $this->mTitle, new ParserOptions() );
235                         } else {
236                                 return $text;
237                         }
238                 }
239         }
240 }