Typo
[lhc/web/wiklou.git] / includes / RawPage.php
index b2c8c94..6d746ca 100644 (file)
@@ -7,22 +7,21 @@
  * License: GPL (http://www.gnu.org/copyleft/gpl.html)
  *
  * @author Gabriel Wicke <wicke@wikidev.net>
- * @package MediaWiki
+ * @file
  */
 
 /**
- * @todo document
- * @package MediaWiki
+ * A simple method to retrieve the plain source of an article,
+ * using "action=raw" in the GET request string.
  */
 class RawPage {
        var $mArticle, $mTitle, $mRequest;
-       var $mOldId, $mGen, $mCharset;
+       var $mOldId, $mGen, $mCharset, $mSection;
        var $mSmaxage, $mMaxage;
        var $mContentType, $mExpandTemplates;
 
-       function RawPage( &$article, $request = false ) {
-               global $wgRequest, $wgInputEncoding, $wgSquidMaxage, $wgJsMimeType;
-               global $wgUser;
+       function __construct( &$article, $request = false ) {
+               global $wgRequest, $wgInputEncoding, $wgSquidMaxage, $wgJsMimeType, $wgForcedRawSMaxage, $wgGroupPermissions;
 
                $allowedCTypes = array('text/x-wiki', $wgJsMimeType, 'text/css', 'application/x-zope-edit');
                $this->mArticle =& $article;
@@ -37,10 +36,14 @@ class RawPage {
                $ctype = $this->mRequest->getVal( 'ctype' );
                $smaxage = $this->mRequest->getIntOrNull( 'smaxage', $wgSquidMaxage );
                $maxage = $this->mRequest->getInt( 'maxage', $wgSquidMaxage );
+
                $this->mExpandTemplates = $this->mRequest->getVal( 'templates' ) === 'expand';
                $this->mUseMessageCache = $this->mRequest->getBool( 'usemsgcache' );
-               
+
+               $this->mSection = $this->mRequest->getIntOrNull( 'section' );
+
                $oldid = $this->mRequest->getInt( 'oldid' );
+
                switch ( $wgRequest->getText( 'direction' ) ) {
                        case 'next':
                                # output next revision, or nothing if there isn't one
@@ -64,7 +67,7 @@ class RawPage {
                                break;
                }
                $this->mOldId = $oldid;
-               
+
                # special case for 'generated' raw things: user css/js
                $gen = $this->mRequest->getVal( 'gen' );
 
@@ -80,14 +83,24 @@ class RawPage {
                        $this->mGen = false;
                }
                $this->mCharset = $wgInputEncoding;
-               $this->mSmaxage = intval( $smaxage );
+
+               # Force caching for CSS and JS raw content, default: 5 minutes
+               if (is_null($smaxage) and ($ctype=='text/css' or $ctype==$wgJsMimeType)) {
+                       $this->mSmaxage = intval($wgForcedRawSMaxage);
+               } else {
+                       $this->mSmaxage = intval( $smaxage );
+               }
                $this->mMaxage = $maxage;
-               
-               // Output may contain user-specific data; vary for open sessions
-               $this->mPrivateCache = ( $this->mSmaxage == 0 ) ||
-                       ( isset( $_COOKIE[ini_get( 'session.name' )] ) ||
-                       $wgUser->isLoggedIn() );
-               
+
+               # Output may contain user-specific data;
+               # vary generated content for open sessions and private wikis
+               if ($this->mGen or !$wgGroupPermissions['*']['read']) {
+                       $this->mPrivateCache = ( $this->mSmaxage == 0 ) ||
+                               ( session_id() != '' );
+               } else {
+                       $this->mPrivateCache = false;
+               }
+
                if ( $ctype == '' or ! in_array( $ctype, $allowedCTypes ) ) {
                        $this->mContentType = 'text/x-wiki';
                } else {
@@ -113,9 +126,8 @@ class RawPage {
                } else {
                        $url = $_SERVER['PHP_SELF'];
                }
-               
-               $ua = @$_SERVER['HTTP_USER_AGENT'];
-               if( strcmp( $wgScript, $url ) && strpos( $ua, 'MSIE' ) !== false ) {
+
+               if( strcmp( $wgScript, $url ) ) {
                        # Internet Explorer will ignore the Content-Type header if it
                        # thinks it sees a file extension it recognizes. Make sure that
                        # all raw requests are done through the script node, which will
@@ -151,11 +163,13 @@ class RawPage {
                global $wgUser, $wgOut, $wgRequest;
                if($this->mGen) {
                        $sk = $wgUser->getSkin();
-                       $sk->initPage($wgOut);
+                       if( !StubObject::isRealObject( $wgOut ) )
+                               $wgOut->_unstub( 2 );
+                       $sk->initPage( $wgOut );
                        if($this->mGen == 'css') {
-                               return $sk->getUserStylesheet();
+                               return $sk->generateUserStylesheet();
                        } else if($this->mGen == 'js') {
-                               return $sk->getUserJs();
+                               return $sk->generateUserJs();
                        }
                } else {
                        return $this->getArticleText();
@@ -180,7 +194,12 @@ class RawPage {
                                if ( $rev ) {
                                        $lastmod = wfTimestamp( TS_RFC2822, $rev->getTimestamp() );
                                        header( "Last-modified: $lastmod" );
-                                       $text = $rev->getText();
+
+                                       if ( !is_null($this->mSection ) ) {
+                                               global $wgParser;
+                                               $text = $wgParser->getSection ( $rev->getText(), $this->mSection );
+                                       } else
+                                               $text = $rev->getText();
                                        $found = true;
                                }
                        }
@@ -194,7 +213,21 @@ class RawPage {
                        # have the pages.
                        header( "HTTP/1.0 404 Not Found" );
                }
-               
+
+               // Special-case for empty CSS/JS
+               //
+               // Internet Explorer for Mac handles empty files badly;
+               // particularly so when keep-alive is active. It can lead
+               // to long timeouts as it seems to sit there waiting for
+               // more data that never comes.
+               //
+               // Give it a comment...
+               if( strlen( $text ) == 0 &&
+                       ($this->mContentType == 'text/css' ||
+                               $this->mContentType == 'text/javascript' ) ) {
+                       return "/* Empty */";
+               }
+
                return $this->parseArticleText( $text );
        }
 
@@ -209,4 +242,3 @@ class RawPage {
                                return $text;
        }
 }
-?>