* (bug 20494) OutputPage::getArticleBodyOnly() no longer requires an useless argument
[lhc/web/wiklou.git] / includes / Wiki.php
index 5d53a35..8c391e6 100644 (file)
@@ -49,11 +49,19 @@ class MediaWiki {
         * @param $user User
         * @param $request WebRequest
         */
-       function initialize( &$title, &$article, &$output, &$user, $request ) {
+       function performRequestForTitle( &$title, &$article, &$output, &$user, $request ) {
                wfProfileIn( __METHOD__ );
-               $this->preliminaryChecks( $title, $output, $request ) ;
-               if ( !$this->initializeSpecialCases( $title, $output, $request ) ) {
-                       $new_article = $this->initializeArticle( $title, $request );
+               
+               $output->setTitle( $title );
+               
+               wfRunHooks( 'BeforeInitialize', array( &$title, &$article, &$output, &$user, $request, $this ) );
+               
+               if( !$this->preliminaryChecks( $title, $output, $request ) ) {
+                       wfProfileOut( __METHOD__ );
+                       return;
+               }
+               if( !$this->initializeSpecialCases( $title, $output, $request ) ) {
+                       $new_article = $this->initializeArticle( $title, $output, $request );
                        if( is_object( $new_article ) ) {
                                $article = $new_article;
                                $this->performAction( $output, $article, $title, $user, $request );
@@ -77,7 +85,7 @@ class MediaWiki {
         */
        function checkMaxLag( $maxLag ) {
                list( $host, $lag ) = wfGetLB()->getMaxLag();
-               if ( $lag > $maxLag ) {
+               if( $lag > $maxLag ) {
                        wfMaxlagError( $host, $lag, $maxLag );
                        return false;
                } else {
@@ -85,7 +93,6 @@ class MediaWiki {
                }
        }
 
-
        /**
         * Checks some initial queries
         * Note that $title here is *not* a Title object, but a string!
@@ -96,16 +103,14 @@ class MediaWiki {
         */
        function checkInitialQueries( $title, $action ) {
                global $wgOut, $wgRequest, $wgContLang;
-               if( $wgRequest->getVal( 'printable' ) == 'yes' ){
+               if( $wgRequest->getVal( 'printable' ) === 'yes' ) {
                        $wgOut->setPrintable();
                }
-
                $ret = NULL;
-
-               if ( $curid = $wgRequest->getInt( 'curid' ) ) {
+               if( $curid = $wgRequest->getInt( 'curid' ) ) {
                        # URLs like this are generated by RC, because rc_title isn't always accurate
                        $ret = Title::newFromID( $curid );
-               } elseif ( '' == $title && 'delete' != $action ) {
+               } elseif( '' == $title && 'delete' != $action ) {
                        $ret = Title::newMainPage();
                } else {
                        $ret = Title::newFromURL( $title );
@@ -113,14 +118,16 @@ class MediaWiki {
                        // about the possible different language variants
                        if( count( $wgContLang->getVariants() ) > 1 && !is_null( $ret ) && $ret->getArticleID() == 0 )
                                $wgContLang->findVariantLink( $title, $ret );
-
                }
-               if ( ( $oldid = $wgRequest->getInt( 'oldid' ) )
-                       && ( is_null( $ret ) || $ret->getNamespace() != NS_SPECIAL ) ) {
-                       // Allow oldid to override a changed or missing title.
-                       $rev = Revision::newFromId( $oldid );
-                       if( $rev ) {
-                               $ret = $rev->getTitle();
+               # For non-special titles, check for implicit titles
+               if( is_null( $ret ) || $ret->getNamespace() != NS_SPECIAL ) {
+                       // We can have urls with just ?diff=,?oldid= or even just ?diff=
+                       $oldid = $wgRequest->getInt( 'oldid' );
+                       $oldid = $oldid ? $oldid : $wgRequest->getInt( 'diff' );
+                       // Allow oldid to override a changed or missing title
+                       if( $oldid ) {
+                               $rev = Revision::newFromId( $oldid );
+                               $ret = $rev ? $rev->getTitle() : $ret;
                        }
                }
                return $ret;
@@ -134,7 +141,6 @@ class MediaWiki {
         * @param $request WebRequest
         */
        function preliminaryChecks( &$title, &$output, $request ) {
-
                if( $request->getCheck( 'search' ) ) {
                        // Compatibility with old search URLs which didn't use Special:Search
                        // Just check for presence here, so blank requests still
@@ -143,16 +149,17 @@ class MediaWiki {
                        // Do this above the read whitelist check for security...
                        $title = SpecialPage::getTitleFor( 'Search' );
                }
-
                # If the user is not logged in, the Namespace:title of the article must be in
                # the Read array in order for the user to see it. (We have to check here to
                # catch special pages etc. We check again in Article::view())
-               if ( !is_null( $title ) && !$title->userCanRead() ) {
+               if( !is_null( $title ) && !$title->userCanRead() ) {
+                       global $wgDeferredUpdateList;
                        $output->loginToUse();
-                       $output->output();
-                       exit;
+                       $this->finalCleanup( $wgDeferredUpdateList, $output );
+                       $output->disable();
+                       return false;
                }
-
+               return true;
        }
 
        /**
@@ -162,6 +169,8 @@ class MediaWiki {
         * - redirect loop
         * - special pages
         *
+        * FIXME: why is this crap called "initialize" when it performs everything?
+        *
         * @param $title Title
         * @param $output OutputPage
         * @param $request WebRequest
@@ -171,25 +180,27 @@ class MediaWiki {
                wfProfileIn( __METHOD__ );
 
                $action = $this->getVal( 'Action' );
-               if( !$title || $title->getDBkey() == '' ) {
+               if( is_null($title) || $title->getDBkey() == '' ) {
                        $title = SpecialPage::getTitleFor( 'Badtitle' );
                        # Die now before we mess up $wgArticle and the skin stops working
                        throw new ErrorPageError( 'badtitle', 'badtitletext' );
-               } else if ( $title->getInterwiki() != '' ) {
+               } else if( $title->getInterwiki() != '' ) {
                        if( $rdfrom = $request->getVal( 'rdfrom' ) ) {
                                $url = $title->getFullURL( 'rdfrom=' . urlencode( $rdfrom ) );
                        } else {
-                               $url = $title->getFullURL();
+                               $query = $request->getValues();
+                               unset( $query['title'] );
+                               $url = $title->getFullURL( $query );
                        }
                        /* Check for a redirect loop */
-                       if ( !preg_match( '/^' . preg_quote( $this->getVal('Server'), '/' ) . '/', $url ) && $title->isLocal() ) {
+                       if( !preg_match( '/^' . preg_quote( $this->getVal('Server'), '/' ) . '/', $url ) && $title->isLocal() ) {
                                $output->redirect( $url );
                        } else {
                                $title = SpecialPage::getTitleFor( 'Badtitle' );
                                throw new ErrorPageError( 'badtitle', 'badtitletext' );
                        }
-               } else if ( ( $action == 'view' ) && !$request->wasPosted() &&
-                       (!isset( $this->GET['title'] ) || $title->getPrefixedDBKey() != $this->GET['title'] ) &&
+               } else if( $action == 'view' && !$request->wasPosted() &&
+                       ( !isset($this->GET['title']) || $title->getPrefixedDBKey() != $this->GET['title'] ) &&
                        !count( array_diff( array_keys( $this->GET ), array( 'action', 'title' ) ) ) )
                {
                        $targetUrl = $title->getFullURL();
@@ -220,7 +231,7 @@ class MediaWiki {
                                $output->setSquidMaxage( 1200 );
                                $output->redirect( $targetUrl, '301' );
                        }
-               } else if ( NS_SPECIAL == $title->getNamespace() ) {
+               } else if( NS_SPECIAL == $title->getNamespace() ) {
                        /* actions that need to be made when we have a special pages */
                        SpecialPage::executePath( $title );
                } else {
@@ -266,31 +277,39 @@ class MediaWiki {
         * Create an Article object for the page, following redirects if needed.
         *
         * @param $title Title ($wgTitle)
-        * @param $request WebRequest
+        * @param $output OutputPage ($wgOut)
+        * @param $request WebRequest ($wgRequest)
         * @return mixed an Article, or a string to redirect to another URL
         */
-       function initializeArticle( &$title, $request ) {
+       function initializeArticle( &$title, &$output, $request ) {
                wfProfileIn( __METHOD__ );
 
-               $action = $this->getVal( 'action' );
+               $action = $this->getVal( 'action', 'view' );
                $article = self::articleFromTitle( $title );
-               
+               # NS_MEDIAWIKI has no redirects.
+               # It is also used for CSS/JS, so performance matters here...
+               if( $title->getNamespace() == NS_MEDIAWIKI ) {
+                       wfProfileOut( __METHOD__ );
+                       return $article;
+               }
                // Namespace might change when using redirects
                // Check for redirects ...
-               $file = $title->getNamespace() == NS_FILE ? $article->getFile() : null;
+               $file = ($title->getNamespace() == NS_FILE) ? $article->getFile() : null;
                if( ( $action == 'view' || $action == 'render' )        // ... for actions that show content
-                                       && !$request->getVal( 'oldid' ) &&    // ... and are not old revisions
-                                       $request->getVal( 'redirect' ) != 'no' &&       // ... unless explicitly told not to
-                                       // ... and the article is not a non-redirect image page with associated file
-                                       !( is_object( $file ) && $file->exists() && !$file->getRedirected() ) ) {
-
+                       && !$request->getVal( 'oldid' ) &&    // ... and are not old revisions
+                       $request->getVal( 'redirect' ) != 'no' &&       // ... unless explicitly told not to
+                       // ... and the article is not a non-redirect image page with associated file
+                       !( is_object( $file ) && $file->exists() && !$file->getRedirected() ) )
+               {
                        # Give extensions a change to ignore/handle redirects as needed
                        $ignoreRedirect = $target = false;
-                       wfRunHooks( 'InitializeArticleMaybeRedirect', array( &$title, &$request, &$ignoreRedirect, &$target ) );
-
+                       
                        $dbr = wfGetDB( DB_SLAVE );
                        $article->loadPageData( $article->pageDataFromTitle( $dbr, $title ) );
 
+                       wfRunHooks( 'InitializeArticleMaybeRedirect', 
+                               array(&$title,&$request,&$ignoreRedirect,&$target,&$article) );
+
                        // Follow redirects only for... redirects
                        if( !$ignoreRedirect && $article->isRedirect() ) {
                                # Is the target already set by an extension?
@@ -301,15 +320,15 @@ class MediaWiki {
                                                return $target;
                                        }
                                }
-                               
-                               if( is_object( $target ) ) {
+                               if( is_object($target) ) {
                                        // Rewrite environment to redirected article
                                        $rarticle = self::articleFromTitle( $target );
                                        $rarticle->loadPageData( $rarticle->pageDataFromTitle( $dbr, $target ) );
-                                       if ( $rarticle->exists() || ( is_object( $file ) && !$file->isLocal() ) ) {
+                                       if( $rarticle->exists() || ( is_object( $file ) && !$file->isLocal() ) ) {
                                                $rarticle->setRedirectedFrom( $title );
                                                $article = $rarticle;
                                                $title = $target;
+                                               $output->setTitle( $title );
                                        }
                                }
                        } else {
@@ -321,14 +340,16 @@ class MediaWiki {
        }
 
        /**
-        * Cleaning up by doing deferred updates, calling LBFactory and doing the output
+        * Cleaning up request by doing:
+        ** deferred updates, DB transaction, and the output
         *
         * @param $deferredUpdates array of updates to do
         * @param $output OutputPage
         */
-       function finalCleanup ( &$deferredUpdates, &$output ) {
+       function finalCleanup( &$deferredUpdates, &$output ) {
                wfProfileIn( __METHOD__ );
-               # Now commit any transactions, so that unreported errors after output() don't roll back the whole thing
+               # Now commit any transactions, so that unreported errors after
+               # output() don't roll back the whole DB transaction
                $factory = wfGetLBFactory();
                $factory->commitMasterChanges();
                # Output everything!
@@ -336,8 +357,6 @@ class MediaWiki {
                # Do any deferred jobs
                $this->doUpdates( $deferredUpdates );
                $this->doJobs();
-               # Commit and close up!
-               $factory->shutdown();
                wfProfileOut( __METHOD__ );
        }
 
@@ -362,7 +381,7 @@ class MediaWiki {
                        $up->doUpdate();
 
                        # Commit after every update to prevent lock contention
-                       if ( $dbw->trxLevel() ) {
+                       if( $dbw->trxLevel() ) {
                                $dbw->commit();
                        }
                }
@@ -375,12 +394,12 @@ class MediaWiki {
        function doJobs() {
                $jobRunRate = $this->getVal( 'JobRunRate' );
 
-               if ( $jobRunRate <= 0 || wfReadOnly() ) {
+               if( $jobRunRate <= 0 || wfReadOnly() ) {
                        return;
                }
-               if ( $jobRunRate < 1 ) {
+               if( $jobRunRate < 1 ) {
                        $max = mt_getrandmax();
-                       if ( mt_rand( 0, $max ) > $max * $jobRunRate ) {
+                       if( mt_rand( 0, $max ) > $max * $jobRunRate ) {
                                return;
                        }
                        $n = 1;
@@ -394,7 +413,7 @@ class MediaWiki {
                        $success = $job->run();
                        $t += wfTime();
                        $t = round( $t*1000 );
-                       if ( !$success ) {
+                       if( !$success ) {
                                $output .= "Error: " . $job->getLastError() . ", Time: $t ms\n";
                        } else {
                                $output .= "Success, Time: $t ms\n";
@@ -408,6 +427,10 @@ class MediaWiki {
         */
        function restInPeace() {
                wfLogProfilingData();
+               # Commit and close up!
+               $factory = wfGetLBFactory();
+               $factory->commitMasterChanges();
+               $factory->shutdown();
                wfDebug( "Request ended normally\n" );
        }
 
@@ -423,7 +446,7 @@ class MediaWiki {
        function performAction( &$output, &$article, &$title, &$user, &$request ) {
                wfProfileIn( __METHOD__ );
 
-               if ( !wfRunHooks( 'MediaWikiPerformAction', array( $output, $article, $title, $user, $request, $this ) ) ) {
+               if( !wfRunHooks( 'MediaWikiPerformAction', array( $output, $article, $title, $user, $request, $this ) ) ) {
                        wfProfileOut( __METHOD__ );
                        return;
                }
@@ -439,6 +462,12 @@ class MediaWiki {
                                $output->setSquidMaxage( $this->getVal( 'SquidMaxage' ) );
                                $article->view();
                                break;
+                       case 'raw': // includes JS/CSS
+                               wfProfileIn( __METHOD__.'-raw' );
+                               $raw = new RawPage( $article );
+                               $raw->view();
+                               wfProfileOut( __METHOD__.'-raw' );
+                               break;
                        case 'watch':
                        case 'unwatch':
                        case 'delete':
@@ -503,12 +532,13 @@ class MediaWiki {
                                if( $request->getFullRequestURL() == $title->getInternalURL( 'action=history' ) ) {
                                        $output->setSquidMaxage( $this->getVal( 'SquidMaxage' ) );
                                }
-                               $history = new PageHistory( $article );
+                               $history = new HistoryPage( $article );
                                $history->history();
                                break;
-                       case 'raw':
-                               $raw = new RawPage( $article );
-                               $raw->view();
+                       case 'revisiondelete':
+                               # For show/hide submission from history page
+                               $special = SpecialPage::getPage( 'Revisiondelete' );
+                               $special->execute( '' );
                                break;
                        default:
                                if( wfRunHooks( 'UnknownAction', array( $action, $article ) ) ) {