Added check for newlines in redirects as a paranoia guard against header injection...
[lhc/web/wiklou.git] / includes / OutputPage.php
1 <?php
2 if ( ! defined( 'MEDIAWIKI' ) )
3 die( 1 );
4 /**
5 * @package MediaWiki
6 */
7
8 /**
9 * @todo document
10 * @package MediaWiki
11 */
12 class OutputPage {
13 var $mMetatags, $mKeywords;
14 var $mLinktags, $mPagetitle, $mBodytext, $mDebugtext;
15 var $mHTMLtitle, $mRobotpolicy, $mIsarticle, $mPrintable;
16 var $mSubtitle, $mRedirect, $mStatusCode;
17 var $mLastModified, $mETag, $mCategoryLinks;
18 var $mScripts, $mLinkColours, $mPageLinkTitle;
19
20 var $mSuppressQuickbar;
21 var $mOnloadHandler;
22 var $mDoNothing;
23 var $mContainsOldMagic, $mContainsNewMagic;
24 var $mIsArticleRelated;
25 var $mParserOptions;
26 var $mShowFeedLinks = false;
27 var $mEnableClientCache = true;
28 var $mArticleBodyOnly = false;
29
30 var $mNewSectionLink = false;
31 var $mNoGallery = false;
32
33 /**
34 * Constructor
35 * Initialise private variables
36 */
37 function OutputPage() {
38 $this->mMetatags = $this->mKeywords = $this->mLinktags = array();
39 $this->mHTMLtitle = $this->mPagetitle = $this->mBodytext =
40 $this->mRedirect = $this->mLastModified =
41 $this->mSubtitle = $this->mDebugtext = $this->mRobotpolicy =
42 $this->mOnloadHandler = $this->mPageLinkTitle = '';
43 $this->mIsArticleRelated = $this->mIsarticle = $this->mPrintable = true;
44 $this->mSuppressQuickbar = $this->mPrintable = false;
45 $this->mLanguageLinks = array();
46 $this->mCategoryLinks = array();
47 $this->mDoNothing = false;
48 $this->mContainsOldMagic = $this->mContainsNewMagic = 0;
49 $this->mParserOptions = ParserOptions::newFromUser( $temp = NULL );
50 $this->mSquidMaxage = 0;
51 $this->mScripts = '';
52 $this->mETag = false;
53 $this->mRevisionId = null;
54 $this->mNewSectionLink = false;
55 }
56
57 function redirect( $url, $responsecode = '302' ) {
58 # Strip newlines as a paranoia check for header injection in PHP<5.1.2
59 $this->mRedirect = str_replace( "\n", '', $url );
60 $this->mRedirectCode = $responsecode;
61 }
62
63 function setStatusCode( $statusCode ) { $this->mStatusCode = $statusCode; }
64
65 # To add an http-equiv meta tag, precede the name with "http:"
66 function addMeta( $name, $val ) { array_push( $this->mMetatags, array( $name, $val ) ); }
67 function addKeyword( $text ) { array_push( $this->mKeywords, $text ); }
68 function addScript( $script ) { $this->mScripts .= $script; }
69 function getScript() { return $this->mScripts; }
70
71 function setETag($tag) { $this->mETag = $tag; }
72 function setArticleBodyOnly($only) { $this->mArticleBodyOnly = $only; }
73 function getArticleBodyOnly($only) { return $this->mArticleBodyOnly; }
74
75 function addLink( $linkarr ) {
76 # $linkarr should be an associative array of attributes. We'll escape on output.
77 array_push( $this->mLinktags, $linkarr );
78 }
79
80 function addMetadataLink( $linkarr ) {
81 # note: buggy CC software only reads first "meta" link
82 static $haveMeta = false;
83 $linkarr['rel'] = ($haveMeta) ? 'alternate meta' : 'meta';
84 $this->addLink( $linkarr );
85 $haveMeta = true;
86 }
87
88 /**
89 * checkLastModified tells the client to use the client-cached page if
90 * possible. If sucessful, the OutputPage is disabled so that
91 * any future call to OutputPage->output() have no effect. The method
92 * returns true iff cache-ok headers was sent.
93 */
94 function checkLastModified ( $timestamp ) {
95 global $wgCachePages, $wgCacheEpoch, $wgUser;
96 $fname = 'OutputPage::checkLastModified';
97
98 if ( !$timestamp || $timestamp == '19700101000000' ) {
99 wfDebug( "$fname: CACHE DISABLED, NO TIMESTAMP\n" );
100 return;
101 }
102 if( !$wgCachePages ) {
103 wfDebug( "$fname: CACHE DISABLED\n", false );
104 return;
105 }
106 if( $wgUser->getOption( 'nocache' ) ) {
107 wfDebug( "$fname: USER DISABLED CACHE\n", false );
108 return;
109 }
110
111 $timestamp=wfTimestamp(TS_MW,$timestamp);
112 $lastmod = wfTimestamp( TS_RFC2822, max( $timestamp, $wgUser->mTouched, $wgCacheEpoch ) );
113
114 if( !empty( $_SERVER['HTTP_IF_MODIFIED_SINCE'] ) ) {
115 # IE sends sizes after the date like this:
116 # Wed, 20 Aug 2003 06:51:19 GMT; length=5202
117 # this breaks strtotime().
118 $modsince = preg_replace( '/;.*$/', '', $_SERVER["HTTP_IF_MODIFIED_SINCE"] );
119 $modsinceTime = strtotime( $modsince );
120 $ismodsince = wfTimestamp( TS_MW, $modsinceTime ? $modsinceTime : 1 );
121 wfDebug( "$fname: -- client send If-Modified-Since: " . $modsince . "\n", false );
122 wfDebug( "$fname: -- we might send Last-Modified : $lastmod\n", false );
123 if( ($ismodsince >= $timestamp ) && $wgUser->validateCache( $ismodsince ) && $ismodsince >= $wgCacheEpoch ) {
124 # Make sure you're in a place you can leave when you call us!
125 header( "HTTP/1.0 304 Not Modified" );
126 $this->mLastModified = $lastmod;
127 $this->sendCacheControl();
128 wfDebug( "$fname: CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
129 $this->disable();
130 @ob_end_clean(); // Don't output compressed blob
131 return true;
132 } else {
133 wfDebug( "$fname: READY client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp ; site $wgCacheEpoch\n", false );
134 $this->mLastModified = $lastmod;
135 }
136 } else {
137 wfDebug( "$fname: client did not send If-Modified-Since header\n", false );
138 $this->mLastModified = $lastmod;
139 }
140 }
141
142 function getPageTitleActionText () {
143 global $action;
144 switch($action) {
145 case 'edit':
146 case 'delete':
147 case 'protect':
148 case 'unprotect':
149 case 'watch':
150 case 'unwatch':
151 // Display title is already customized
152 return '';
153 case 'history':
154 return wfMsg('history_short');
155 case 'submit':
156 // FIXME: bug 2735; not correct for special pages etc
157 return wfMsg('preview');
158 case 'info':
159 return wfMsg('info_short');
160 default:
161 return '';
162 }
163 }
164
165 function setRobotpolicy( $str ) { $this->mRobotpolicy = $str; }
166 function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; }
167 function setPageTitle( $name ) {
168 global $action, $wgContLang;
169 $name = $wgContLang->convert($name, true);
170 $this->mPagetitle = $name;
171 if(!empty($action)) {
172 $taction = $this->getPageTitleActionText();
173 if( !empty( $taction ) ) {
174 $name .= ' - '.$taction;
175 }
176 }
177
178 $this->setHTMLTitle( wfMsg( 'pagetitle', $name ) );
179 }
180 function getHTMLTitle() { return $this->mHTMLtitle; }
181 function getPageTitle() { return $this->mPagetitle; }
182 function setSubtitle( $str ) { $this->mSubtitle = /*$this->parse(*/$str/*)*/; } // @bug 2514
183 function getSubtitle() { return $this->mSubtitle; }
184 function isArticle() { return $this->mIsarticle; }
185 function setPrintable() { $this->mPrintable = true; }
186 function isPrintable() { return $this->mPrintable; }
187 function setSyndicated( $show = true ) { $this->mShowFeedLinks = $show; }
188 function isSyndicated() { return $this->mShowFeedLinks; }
189 function setOnloadHandler( $js ) { $this->mOnloadHandler = $js; }
190 function getOnloadHandler() { return $this->mOnloadHandler; }
191 function disable() { $this->mDoNothing = true; }
192
193 function setArticleRelated( $v ) {
194 $this->mIsArticleRelated = $v;
195 if ( !$v ) {
196 $this->mIsarticle = false;
197 }
198 }
199 function setArticleFlag( $v ) {
200 $this->mIsarticle = $v;
201 if ( $v ) {
202 $this->mIsArticleRelated = $v;
203 }
204 }
205
206 function isArticleRelated() { return $this->mIsArticleRelated; }
207
208 function getLanguageLinks() { return $this->mLanguageLinks; }
209 function addLanguageLinks($newLinkArray) {
210 $this->mLanguageLinks += $newLinkArray;
211 }
212 function setLanguageLinks($newLinkArray) {
213 $this->mLanguageLinks = $newLinkArray;
214 }
215
216 function getCategoryLinks() {
217 return $this->mCategoryLinks;
218 }
219
220 /**
221 * Add an array of categories, with names in the keys
222 */
223 function addCategoryLinks($categories) {
224 global $wgUser, $wgContLang;
225
226 if ( !is_array( $categories ) ) {
227 return;
228 }
229 # Add the links to the link cache in a batch
230 $arr = array( NS_CATEGORY => $categories );
231 $lb = new LinkBatch;
232 $lb->setArray( $arr );
233 $lb->execute();
234
235 $sk =& $wgUser->getSkin();
236 foreach ( $categories as $category => $arbitrary ) {
237 $title = Title::makeTitleSafe( NS_CATEGORY, $category );
238 $text = $wgContLang->convertHtml( $title->getText() );
239 $this->mCategoryLinks[] = $sk->makeLinkObj( $title, $text );
240 }
241 }
242
243 function setCategoryLinks($categories) {
244 $this->mCategoryLinks = array();
245 $this->addCategoryLinks($categories);
246 }
247
248 function suppressQuickbar() { $this->mSuppressQuickbar = true; }
249 function isQuickbarSuppressed() { return $this->mSuppressQuickbar; }
250
251 function addHTML( $text ) { $this->mBodytext .= $text; }
252 function clearHTML() { $this->mBodytext = ''; }
253 function getHTML() { return $this->mBodytext; }
254 function debug( $text ) { $this->mDebugtext .= $text; }
255
256 /* @deprecated */
257 function setParserOptions( $options ) {
258 return $this->ParserOptions( $options );
259 }
260
261 function ParserOptions( $options = null ) {
262 return wfSetVar( $this->mParserOptions, $options );
263 }
264
265 /**
266 * Set the revision ID which will be seen by the wiki text parser
267 * for things such as embedded {{REVISIONID}} variable use.
268 * @param mixed $revid an integer, or NULL
269 * @return mixed previous value
270 */
271 function setRevisionId( $revid ) {
272 $val = is_null( $revid ) ? null : intval( $revid );
273 return wfSetVar( $this->mRevisionId, $val );
274 }
275
276 /**
277 * Convert wikitext to HTML and add it to the buffer
278 * Default assumes that the current page title will
279 * be used.
280 */
281 function addWikiText( $text, $linestart = true ) {
282 global $wgTitle;
283 $this->addWikiTextTitle($text, $wgTitle, $linestart);
284 }
285
286 function addWikiTextWithTitle($text, &$title, $linestart = true) {
287 $this->addWikiTextTitle($text, $title, $linestart);
288 }
289
290 function addWikiTextTitle($text, &$title, $linestart) {
291 global $wgParser;
292 $parserOutput = $wgParser->parse( $text, $title, $this->mParserOptions,
293 $linestart, true, $this->mRevisionId );
294 $this->addParserOutput( $parserOutput );
295 }
296
297 function addParserOutputNoText( &$parserOutput ) {
298 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
299 $this->addCategoryLinks( $parserOutput->getCategories() );
300 $this->mNewSectionLink = $parserOutput->getNewSection();
301 $this->addKeywords( $parserOutput );
302 if ( $parserOutput->getCacheTime() == -1 ) {
303 $this->enableClientCache( false );
304 }
305 if ( $parserOutput->mHTMLtitle != "" ) {
306 $this->mPagetitle = $parserOutput->mHTMLtitle ;
307 $this->mSubtitle .= $parserOutput->mSubtitle ;
308 }
309 }
310
311 function addParserOutput( &$parserOutput ) {
312 $this->addParserOutputNoText( $parserOutput );
313 $this->addHTML( $parserOutput->getText() );
314 }
315
316 /**
317 * Add wikitext to the buffer, assuming that this is the primary text for a page view
318 * Saves the text into the parser cache if possible
319 */
320 function addPrimaryWikiText( $text, $article, $cache = true ) {
321 global $wgParser, $wgUser;
322
323 $this->mParserOptions->setTidy(true);
324 $parserOutput = $wgParser->parse( $text, $article->mTitle,
325 $this->mParserOptions, true, true, $this->mRevisionId );
326 $this->mParserOptions->setTidy(false);
327 if ( $cache && $article && $parserOutput->getCacheTime() != -1 ) {
328 $parserCache =& ParserCache::singleton();
329 $parserCache->save( $parserOutput, $article, $wgUser );
330 }
331
332 $this->addParserOutputNoText( $parserOutput );
333 $text = $parserOutput->getText();
334 $this->mNoGallery = $parserOutput->getNoGallery();
335 wfRunHooks( 'OutputPageBeforeHTML',array( &$this, &$text ) );
336 $parserOutput->setText( $text );
337 $this->addHTML( $parserOutput->getText() );
338 }
339
340 /**
341 * For anything that isn't primary text or interface message
342 */
343 function addSecondaryWikiText( $text, $linestart = true ) {
344 global $wgTitle;
345 $this->mParserOptions->setTidy(true);
346 $this->addWikiTextTitle($text, $wgTitle, $linestart);
347 $this->mParserOptions->setTidy(false);
348 }
349
350
351 /**
352 * Add the output of a QuickTemplate to the output buffer
353 * @param QuickTemplate $template
354 */
355 function addTemplate( &$template ) {
356 ob_start();
357 $template->execute();
358 $this->addHTML( ob_get_contents() );
359 ob_end_clean();
360 }
361
362 /**
363 * Parse wikitext and return the HTML.
364 */
365 function parse( $text, $linestart = true, $interface = false ) {
366 global $wgParser, $wgTitle;
367 if ( $interface) { $this->mParserOptions->setInterfaceMessage(true); }
368 $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions,
369 $linestart, true, $this->mRevisionId );
370 if ( $interface) { $this->mParserOptions->setInterfaceMessage(false); }
371 return $parserOutput->getText();
372 }
373
374 /**
375 * @param $article
376 * @param $user
377 *
378 * @return bool
379 */
380 function tryParserCache( &$article, $user ) {
381 $parserCache =& ParserCache::singleton();
382 $parserOutput = $parserCache->get( $article, $user );
383 if ( $parserOutput !== false ) {
384 $this->mLanguageLinks += $parserOutput->getLanguageLinks();
385 $this->addCategoryLinks( $parserOutput->getCategories() );
386 $this->addKeywords( $parserOutput );
387 $this->mNewSectionLink = $parserOutput->getNewSection();
388 $this->mNoGallery = $parserOutput->getNoGallery();
389 $text = $parserOutput->getText();
390 wfRunHooks( 'OutputPageBeforeHTML', array( &$this, &$text ) );
391 $this->addHTML( $text );
392 $t = $parserOutput->getTitleText();
393 if( !empty( $t ) ) {
394 $this->setPageTitle( $t );
395 }
396 return true;
397 } else {
398 return false;
399 }
400 }
401
402 /**
403 * Set the maximum cache time on the Squid in seconds
404 * @param $maxage
405 */
406 function setSquidMaxage( $maxage ) {
407 $this->mSquidMaxage = $maxage;
408 }
409
410 /**
411 * Use enableClientCache(false) to force it to send nocache headers
412 * @param $state
413 */
414 function enableClientCache( $state ) {
415 return wfSetVar( $this->mEnableClientCache, $state );
416 }
417
418 function uncacheableBecauseRequestvars() {
419 global $wgRequest;
420 return $wgRequest->getText('useskin', false) === false
421 && $wgRequest->getText('uselang', false) === false;
422 }
423
424 function sendCacheControl() {
425 global $wgUseSquid, $wgUseESI, $wgSquidMaxage;
426 $fname = 'OutputPage::sendCacheControl';
427
428 if ($this->mETag)
429 header("ETag: $this->mETag");
430
431 # don't serve compressed data to clients who can't handle it
432 # maintain different caches for logged-in users and non-logged in ones
433 header( 'Vary: Accept-Encoding, Cookie' );
434 if( !$this->uncacheableBecauseRequestvars() && $this->mEnableClientCache ) {
435 if( $wgUseSquid && ! isset( $_COOKIE[ini_get( 'session.name') ] ) &&
436 ! $this->isPrintable() && $this->mSquidMaxage != 0 )
437 {
438 if ( $wgUseESI ) {
439 # We'll purge the proxy cache explicitly, but require end user agents
440 # to revalidate against the proxy on each visit.
441 # Surrogate-Control controls our Squid, Cache-Control downstream caches
442 wfDebug( "$fname: proxy caching with ESI; {$this->mLastModified} **\n", false );
443 # start with a shorter timeout for initial testing
444 # header( 'Surrogate-Control: max-age=2678400+2678400, content="ESI/1.0"');
445 header( 'Surrogate-Control: max-age='.$wgSquidMaxage.'+'.$this->mSquidMaxage.', content="ESI/1.0"');
446 header( 'Cache-Control: s-maxage=0, must-revalidate, max-age=0' );
447 } else {
448 # We'll purge the proxy cache for anons explicitly, but require end user agents
449 # to revalidate against the proxy on each visit.
450 # IMPORTANT! The Squid needs to replace the Cache-Control header with
451 # Cache-Control: s-maxage=0, must-revalidate, max-age=0
452 wfDebug( "$fname: local proxy caching; {$this->mLastModified} **\n", false );
453 # start with a shorter timeout for initial testing
454 # header( "Cache-Control: s-maxage=2678400, must-revalidate, max-age=0" );
455 header( 'Cache-Control: s-maxage='.$this->mSquidMaxage.', must-revalidate, max-age=0' );
456 }
457 } else {
458 # We do want clients to cache if they can, but they *must* check for updates
459 # on revisiting the page.
460 wfDebug( "$fname: private caching; {$this->mLastModified} **\n", false );
461 header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
462 header( "Cache-Control: private, must-revalidate, max-age=0" );
463 }
464 if($this->mLastModified) header( "Last-modified: {$this->mLastModified}" );
465 } else {
466 wfDebug( "$fname: no caching **\n", false );
467
468 # In general, the absence of a last modified header should be enough to prevent
469 # the client from using its cache. We send a few other things just to make sure.
470 header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
471 header( 'Cache-Control: no-cache, no-store, max-age=0, must-revalidate' );
472 header( 'Pragma: no-cache' );
473 }
474 }
475
476 /**
477 * Finally, all the text has been munged and accumulated into
478 * the object, let's actually output it:
479 */
480 function output() {
481 global $wgUser, $wgOutputEncoding;
482 global $wgContLanguageCode, $wgDebugRedirects, $wgMimeType;
483 global $wgJsMimeType, $wgStylePath, $wgUseAjax, $wgScriptPath, $wgServer;
484
485 if( $this->mDoNothing ){
486 return;
487 }
488 $fname = 'OutputPage::output';
489 wfProfileIn( $fname );
490 $sk = $wgUser->getSkin();
491
492 if ( $wgUseAjax ) {
493 $this->addScript( "<script type=\"{$wgJsMimeType}\">
494 var wgScriptPath=\"{$wgScriptPath}\";
495 var wgServer=\"{$wgServer}\";
496 </script>" );
497 $this->addScript( "<script type=\"{$wgJsMimeType}\" src=\"{$wgStylePath}/common/ajax.js\"></script>\n" );
498 }
499
500 if ( '' != $this->mRedirect ) {
501 if( substr( $this->mRedirect, 0, 4 ) != 'http' ) {
502 # Standards require redirect URLs to be absolute
503 global $wgServer;
504 $this->mRedirect = $wgServer . $this->mRedirect;
505 }
506 if( $this->mRedirectCode == '301') {
507 if( !$wgDebugRedirects ) {
508 header("HTTP/1.1 {$this->mRedirectCode} Moved Permanently");
509 }
510 $this->mLastModified = wfTimestamp( TS_RFC2822 );
511 }
512
513 $this->sendCacheControl();
514
515 if( $wgDebugRedirects ) {
516 $url = htmlspecialchars( $this->mRedirect );
517 print "<html>\n<head>\n<title>Redirect</title>\n</head>\n<body>\n";
518 print "<p>Location: <a href=\"$url\">$url</a></p>\n";
519 print "</body>\n</html>\n";
520 } else {
521 header( 'Location: '.$this->mRedirect );
522 }
523 wfProfileOut( $fname );
524 return;
525 }
526 elseif ( $this->mStatusCode )
527 {
528 $statusMessage = array(
529 100 => 'Continue',
530 101 => 'Switching Protocols',
531 102 => 'Processing',
532 200 => 'OK',
533 201 => 'Created',
534 202 => 'Accepted',
535 203 => 'Non-Authoritative Information',
536 204 => 'No Content',
537 205 => 'Reset Content',
538 206 => 'Partial Content',
539 207 => 'Multi-Status',
540 300 => 'Multiple Choices',
541 301 => 'Moved Permanently',
542 302 => 'Found',
543 303 => 'See Other',
544 304 => 'Not Modified',
545 305 => 'Use Proxy',
546 307 => 'Temporary Redirect',
547 400 => 'Bad Request',
548 401 => 'Unauthorized',
549 402 => 'Payment Required',
550 403 => 'Forbidden',
551 404 => 'Not Found',
552 405 => 'Method Not Allowed',
553 406 => 'Not Acceptable',
554 407 => 'Proxy Authentication Required',
555 408 => 'Request Timeout',
556 409 => 'Conflict',
557 410 => 'Gone',
558 411 => 'Length Required',
559 412 => 'Precondition Failed',
560 413 => 'Request Entity Too Large',
561 414 => 'Request-URI Too Large',
562 415 => 'Unsupported Media Type',
563 416 => 'Request Range Not Satisfiable',
564 417 => 'Expectation Failed',
565 422 => 'Unprocessable Entity',
566 423 => 'Locked',
567 424 => 'Failed Dependency',
568 500 => 'Internal Server Error',
569 501 => 'Not Implemented',
570 502 => 'Bad Gateway',
571 503 => 'Service Unavailable',
572 504 => 'Gateway Timeout',
573 505 => 'HTTP Version Not Supported',
574 507 => 'Insufficient Storage'
575 );
576
577 if ( $statusMessage[$this->mStatusCode] )
578 header( 'HTTP/1.1 ' . $this->mStatusCode . ' ' . $statusMessage[$this->mStatusCode] );
579 }
580
581 # Buffer output; final headers may depend on later processing
582 ob_start();
583
584 # Disable temporary placeholders, so that the skin produces HTML
585 $sk->postParseLinkColour( false );
586
587 header( "Content-type: $wgMimeType; charset={$wgOutputEncoding}" );
588 header( 'Content-language: '.$wgContLanguageCode );
589
590 if ($this->mArticleBodyOnly) {
591 $this->out($this->mBodytext);
592 } else {
593 wfProfileIn( 'Output-skin' );
594 $sk->outputPage( $this );
595 wfProfileOut( 'Output-skin' );
596 }
597
598 $this->sendCacheControl();
599 ob_end_flush();
600 wfProfileOut( $fname );
601 }
602
603 function out( $ins ) {
604 global $wgInputEncoding, $wgOutputEncoding, $wgContLang;
605 if ( 0 == strcmp( $wgInputEncoding, $wgOutputEncoding ) ) {
606 $outs = $ins;
607 } else {
608 $outs = $wgContLang->iconv( $wgInputEncoding, $wgOutputEncoding, $ins );
609 if ( false === $outs ) { $outs = $ins; }
610 }
611 print $outs;
612 }
613
614 function setEncodings() {
615 global $wgInputEncoding, $wgOutputEncoding;
616 global $wgUser, $wgContLang;
617
618 $wgInputEncoding = strtolower( $wgInputEncoding );
619
620 if( $wgUser->getOption( 'altencoding' ) ) {
621 $wgContLang->setAltEncoding();
622 return;
623 }
624
625 if ( empty( $_SERVER['HTTP_ACCEPT_CHARSET'] ) ) {
626 $wgOutputEncoding = strtolower( $wgOutputEncoding );
627 return;
628 }
629 $wgOutputEncoding = $wgInputEncoding;
630 }
631
632 /**
633 * Returns a HTML comment with the elapsed time since request.
634 * This method has no side effects.
635 * Use wfReportTime() instead.
636 * @return string
637 * @deprecated
638 */
639 function reportTime() {
640 $time = wfReportTime();
641 return $time;
642 }
643
644 /**
645 * Produce a "user is blocked" page
646 */
647 function blockedPage() {
648 global $wgUser, $wgContLang, $wgTitle;
649
650 $this->setPageTitle( wfMsg( 'blockedtitle' ) );
651 $this->setRobotpolicy( 'noindex,nofollow' );
652 $this->setArticleRelated( false );
653
654 $id = $wgUser->blockedBy();
655 $reason = $wgUser->blockedFor();
656 $ip = wfGetIP();
657
658 if ( is_numeric( $id ) ) {
659 $name = User::whoIs( $id );
660 } else {
661 $name = $id;
662 }
663 $link = '[[' . $wgContLang->getNsText( NS_USER ) . ":{$name}|{$name}]]";
664
665 $this->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
666
667 # Don't auto-return to special pages
668 $return = $wgTitle->getNamespace() > -1 ? $wgTitle->getPrefixedText() : NULL;
669 $this->returnToMain( false, $return );
670 }
671
672 /**
673 * Note: these arguments are keys into wfMsg(), not text!
674 */
675 function showErrorPage( $title, $msg ) {
676 global $wgTitle;
677
678 $this->mDebugtext .= 'Original title: ' .
679 $wgTitle->getPrefixedText() . "\n";
680 $this->setPageTitle( wfMsg( $title ) );
681 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
682 $this->setRobotpolicy( 'noindex,nofollow' );
683 $this->setArticleRelated( false );
684 $this->enableClientCache( false );
685 $this->mRedirect = '';
686
687 $this->mBodytext = '';
688 $this->addWikiText( wfMsg( $msg ) );
689 $this->returnToMain( false );
690 }
691
692 /** @obsolete */
693 function errorpage( $title, $msg ) {
694 throw new ErrorPageError( $title, $msg );
695 }
696
697 /**
698 * Display an error page indicating that a given version of MediaWiki is
699 * required to use it
700 *
701 * @param mixed $version The version of MediaWiki needed to use the page
702 */
703 function versionRequired( $version ) {
704 $this->setPageTitle( wfMsg( 'versionrequired', $version ) );
705 $this->setHTMLTitle( wfMsg( 'versionrequired', $version ) );
706 $this->setRobotpolicy( 'noindex,nofollow' );
707 $this->setArticleRelated( false );
708 $this->mBodytext = '';
709
710 $this->addWikiText( wfMsg( 'versionrequiredtext', $version ) );
711 $this->returnToMain();
712 }
713
714 /**
715 * Display an error page noting that a given permission bit is required.
716 * This should generally replace the sysopRequired, developerRequired etc.
717 * @param string $permission key required
718 */
719 function permissionRequired( $permission ) {
720 global $wgUser;
721
722 $this->setPageTitle( wfMsg( 'badaccess' ) );
723 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
724 $this->setRobotpolicy( 'noindex,nofollow' );
725 $this->setArticleRelated( false );
726 $this->mBodytext = '';
727
728 $sk = $wgUser->getSkin();
729 $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ) );
730 $this->addHTML( wfMsgHtml( 'badaccesstext', $ap, $permission ) );
731 $this->returnToMain();
732 }
733
734 /**
735 * @deprecated
736 */
737 function sysopRequired() {
738 global $wgUser;
739
740 $this->setPageTitle( wfMsg( 'sysoptitle' ) );
741 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
742 $this->setRobotpolicy( 'noindex,nofollow' );
743 $this->setArticleRelated( false );
744 $this->mBodytext = '';
745
746 $sk = $wgUser->getSkin();
747 $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
748 $this->addHTML( wfMsgHtml( 'sysoptext', $ap ) );
749 $this->returnToMain();
750 }
751
752 /**
753 * @deprecated
754 */
755 function developerRequired() {
756 global $wgUser;
757
758 $this->setPageTitle( wfMsg( 'developertitle' ) );
759 $this->setHTMLTitle( wfMsg( 'errorpagetitle' ) );
760 $this->setRobotpolicy( 'noindex,nofollow' );
761 $this->setArticleRelated( false );
762 $this->mBodytext = '';
763
764 $sk = $wgUser->getSkin();
765 $ap = $sk->makeKnownLink( wfMsgForContent( 'administrators' ), '' );
766 $this->addHTML( wfMsgHtml( 'developertext', $ap ) );
767 $this->returnToMain();
768 }
769
770 /**
771 * Produce the stock "please login to use the wiki" page
772 */
773 function loginToUse() {
774 global $wgUser, $wgTitle, $wgContLang;
775 $skin = $wgUser->getSkin();
776
777 $this->setPageTitle( wfMsg( 'loginreqtitle' ) );
778 $this->setHtmlTitle( wfMsg( 'errorpagetitle' ) );
779 $this->setRobotPolicy( 'noindex,nofollow' );
780 $this->setArticleFlag( false );
781
782 $loginTitle = Title::makeTitle( NS_SPECIAL, 'Userlogin' );
783 $loginLink = $skin->makeKnownLinkObj( $loginTitle, wfMsgHtml( 'loginreqlink' ), 'returnto=' . $wgTitle->getPrefixedUrl() );
784 $this->addHtml( wfMsgWikiHtml( 'loginreqpagetext', $loginLink ) );
785 $this->addHtml( "\n<!--" . $wgTitle->getPrefixedUrl() . "-->" );
786
787 $this->returnToMain();
788 }
789
790 /** @obsolete */
791 function databaseError( $fname, $sql, $error, $errno ) {
792 throw new MWException( "OutputPage::databaseError is obsolete\n" );
793 }
794
795 function readOnlyPage( $source = null, $protected = false ) {
796 global $wgUser, $wgReadOnlyFile, $wgReadOnly, $wgTitle;
797
798 $this->setRobotpolicy( 'noindex,nofollow' );
799 $this->setArticleRelated( false );
800
801 if( $protected ) {
802 $skin = $wgUser->getSkin();
803 $this->setPageTitle( wfMsg( 'viewsource' ) );
804 $this->setSubtitle( wfMsg( 'viewsourcefor', $skin->makeKnownLinkObj( $wgTitle ) ) );
805
806 # Determine if protection is due to the page being a system message
807 # and show an appropriate explanation
808 if( $wgTitle->getNamespace() == NS_MEDIAWIKI && !$wgUser->isAllowed( 'editinterface' ) ) {
809 $this->addWikiText( wfMsg( 'protectedinterface' ) );
810 } else {
811 $this->addWikiText( wfMsg( 'protectedtext' ) );
812 }
813 } else {
814 $this->setPageTitle( wfMsg( 'readonly' ) );
815 if ( $wgReadOnly ) {
816 $reason = $wgReadOnly;
817 } else {
818 $reason = file_get_contents( $wgReadOnlyFile );
819 }
820 $this->addWikiText( wfMsg( 'readonlytext', $reason ) );
821 }
822
823 if( is_string( $source ) ) {
824 if( strcmp( $source, '' ) == 0 ) {
825 global $wgTitle;
826 if ( $wgTitle->getNamespace() == NS_MEDIAWIKI ) {
827 $source = wfMsgWeirdKey ( $wgTitle->getText() );
828 } else {
829 $source = wfMsg( $wgUser->isLoggedIn() ? 'noarticletext' : 'noarticletextanon' );
830 }
831 }
832 $rows = $wgUser->getIntOption( 'rows' );
833 $cols = $wgUser->getIntOption( 'cols' );
834
835 $text = "\n<textarea name='wpTextbox1' id='wpTextbox1' cols='$cols' rows='$rows' readonly='readonly'>" .
836 htmlspecialchars( $source ) . "\n</textarea>";
837 $this->addHTML( $text );
838 }
839
840 $this->returnToMain( false );
841 }
842
843 /** @obsolete */
844 function fatalError( $message ) {
845 throw new FatalError( $message );
846 }
847
848 /** @obsolete */
849 function unexpectedValueError( $name, $val ) {
850 throw new FatalError( wfMsg( 'unexpected', $name, $val ) );
851 }
852
853 /** @obsolete */
854 function fileCopyError( $old, $new ) {
855 throw new FatalError( wfMsg( 'filecopyerror', $old, $new ) );
856 }
857
858 /** @obsolete */
859 function fileRenameError( $old, $new ) {
860 throw new FatalError( wfMsg( 'filerenameerror', $old, $new ) );
861 }
862
863 /** @obsolete */
864 function fileDeleteError( $name ) {
865 throw new FatalError( wfMsg( 'filedeleteerror', $name ) );
866 }
867
868 /** @obsolete */
869 function fileNotFoundError( $name ) {
870 throw new FatalError( wfMsg( 'filenotfound', $name ) );
871 }
872
873 function showFatalError( $message ) {
874 $this->setPageTitle( wfMsg( "internalerror" ) );
875 $this->setRobotpolicy( "noindex,nofollow" );
876 $this->setArticleRelated( false );
877 $this->enableClientCache( false );
878 $this->mRedirect = '';
879 $this->mBodytext = $message;
880 }
881
882 function showUnexpectedValueError( $name, $val ) {
883 $this->showFatalError( wfMsg( 'unexpected', $name, $val ) );
884 }
885
886 function showFileCopyError( $old, $new ) {
887 $this->showFatalError( wfMsg( 'filecopyerror', $old, $new ) );
888 }
889
890 function showFileRenameError( $old, $new ) {
891 $this->showFatalError( wfMsg( 'filerenameerror', $old, $new ) );
892 }
893
894 function showFileDeleteError( $name ) {
895 $this->showFatalError( wfMsg( 'filedeleteerror', $name ) );
896 }
897
898 function showFileNotFoundError( $name ) {
899 $this->showFatalError( wfMsg( 'filenotfound', $name ) );
900 }
901
902 /**
903 * return from error messages or notes
904 * @param $auto automatically redirect the user after 10 seconds
905 * @param $returnto page title to return to. Default is Main Page.
906 */
907 function returnToMain( $auto = true, $returnto = NULL ) {
908 global $wgUser, $wgOut, $wgRequest;
909
910 if ( $returnto == NULL ) {
911 $returnto = $wgRequest->getText( 'returnto' );
912 }
913
914 if ( '' === $returnto ) {
915 $returnto = wfMsgForContent( 'mainpage' );
916 }
917
918 if ( is_object( $returnto ) ) {
919 $titleObj = $returnto;
920 } else {
921 $titleObj = Title::newFromText( $returnto );
922 }
923
924 $sk = $wgUser->getSkin();
925 $link = $sk->makeLinkObj( $titleObj, '' );
926
927 $r = wfMsg( 'returnto', $link );
928 if ( $auto ) {
929 $wgOut->addMeta( 'http:Refresh', '10;url=' . $titleObj->escapeFullURL() );
930 }
931 $wgOut->addHTML( "\n<p>$r</p>\n" );
932 }
933
934 /**
935 * This function takes the title (first item of mGoodLinks), categories, existing and broken links for the page
936 * and uses the first 10 of them for META keywords
937 */
938 function addKeywords( &$parserOutput ) {
939 global $wgTitle;
940 $this->addKeyword( $wgTitle->getPrefixedText() );
941 $count = 1;
942 $links2d =& $parserOutput->getLinks();
943 if ( !is_array( $links2d ) ) {
944 return;
945 }
946 foreach ( $links2d as $ns => $dbkeys ) {
947 foreach( $dbkeys as $dbkey => $id ) {
948 $this->addKeyword( $dbkey );
949 if ( ++$count > 10 ) {
950 break 2;
951 }
952 }
953 }
954 }
955
956 /**
957 * @access private
958 * @return string
959 */
960 function headElement() {
961 global $wgDocType, $wgDTD, $wgContLanguageCode, $wgOutputEncoding, $wgMimeType;
962 global $wgUser, $wgContLang, $wgUseTrackbacks, $wgTitle;
963
964 if( $wgMimeType == 'text/xml' || $wgMimeType == 'application/xhtml+xml' || $wgMimeType == 'application/xml' ) {
965 $ret = "<?xml version=\"1.0\" encoding=\"$wgOutputEncoding\" ?>\n";
966 } else {
967 $ret = '';
968 }
969
970 $ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\"\n \"$wgDTD\">\n";
971
972 if ( '' == $this->getHTMLTitle() ) {
973 $this->setHTMLTitle( wfMsg( 'pagetitle', $this->getPageTitle() ));
974 }
975
976 $rtl = $wgContLang->isRTL() ? " dir='RTL'" : '';
977 $ret .= "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$wgContLanguageCode\" lang=\"$wgContLanguageCode\" $rtl>\n";
978 $ret .= "<head>\n<title>" . htmlspecialchars( $this->getHTMLTitle() ) . "</title>\n";
979 array_push( $this->mMetatags, array( "http:Content-type", "$wgMimeType; charset={$wgOutputEncoding}" ) );
980
981 $ret .= $this->getHeadLinks();
982 global $wgStylePath;
983 if( $this->isPrintable() ) {
984 $media = '';
985 } else {
986 $media = "media='print'";
987 }
988 $printsheet = htmlspecialchars( "$wgStylePath/common/wikiprintable.css" );
989 $ret .= "<link rel='stylesheet' type='text/css' $media href='$printsheet' />\n";
990
991 $sk = $wgUser->getSkin();
992 $ret .= $sk->getHeadScripts();
993 $ret .= $this->mScripts;
994 $ret .= $sk->getUserStyles();
995
996 if ($wgUseTrackbacks && $this->isArticleRelated())
997 $ret .= $wgTitle->trackbackRDF();
998
999 $ret .= "</head>\n";
1000 return $ret;
1001 }
1002
1003 function getHeadLinks() {
1004 global $wgRequest;
1005 $ret = '';
1006 foreach ( $this->mMetatags as $tag ) {
1007 if ( 0 == strcasecmp( 'http:', substr( $tag[0], 0, 5 ) ) ) {
1008 $a = 'http-equiv';
1009 $tag[0] = substr( $tag[0], 5 );
1010 } else {
1011 $a = 'name';
1012 }
1013 $ret .= "<meta $a=\"{$tag[0]}\" content=\"{$tag[1]}\" />\n";
1014 }
1015
1016 $p = $this->mRobotpolicy;
1017 if( $p !== '' && $p != 'index,follow' ) {
1018 // http://www.robotstxt.org/wc/meta-user.html
1019 // Only show if it's different from the default robots policy
1020 $ret .= "<meta name=\"robots\" content=\"$p\" />\n";
1021 }
1022
1023 if ( count( $this->mKeywords ) > 0 ) {
1024 $strip = array(
1025 "/<.*?>/" => '',
1026 "/_/" => ' '
1027 );
1028 $ret .= "<meta name=\"keywords\" content=\"" .
1029 htmlspecialchars(preg_replace(array_keys($strip), array_values($strip),implode( ",", $this->mKeywords ))) . "\" />\n";
1030 }
1031 foreach ( $this->mLinktags as $tag ) {
1032 $ret .= '<link';
1033 foreach( $tag as $attr => $val ) {
1034 $ret .= " $attr=\"" . htmlspecialchars( $val ) . "\"";
1035 }
1036 $ret .= " />\n";
1037 }
1038 if( $this->isSyndicated() ) {
1039 # FIXME: centralize the mime-type and name information in Feed.php
1040 $link = $wgRequest->escapeAppendQuery( 'feed=rss' );
1041 $ret .= "<link rel='alternate' type='application/rss+xml' title='RSS 2.0' href='$link' />\n";
1042 $link = $wgRequest->escapeAppendQuery( 'feed=atom' );
1043 $ret .= "<link rel='alternate' type='application/atom+xml' title='Atom 0.3' href='$link' />\n";
1044 }
1045
1046 return $ret;
1047 }
1048
1049 /**
1050 * Turn off regular page output and return an error reponse
1051 * for when rate limiting has triggered.
1052 * @todo i18n
1053 * @access public
1054 */
1055 function rateLimited() {
1056 global $wgOut;
1057 $wgOut->disable();
1058 wfHttpError( 500, 'Internal Server Error',
1059 'Sorry, the server has encountered an internal error. ' .
1060 'Please wait a moment and hit "refresh" to submit the request again.' );
1061 }
1062
1063 /**
1064 * Show an "add new section" link?
1065 *
1066 * @return bool True if the parser output instructs us to add one
1067 */
1068 function showNewSectionLink() {
1069 return $this->mNewSectionLink;
1070 }
1071
1072 }
1073 ?>