Add unit test for bug 32888
[lhc/web/wiklou.git] / maintenance / rebuildall.php
index 9e64d19..dbbed86 100644 (file)
@@ -1,39 +1,55 @@
-<?
-
-# Rebuild link tracking tables from scratch.  This takes several
-# hours, depending on the database size and server configuration.
-
-if ( ! is_readable( "../LocalSettings.php" ) ) {
-       print "A copy of your installation's LocalSettings.php\n" .
-         "must exist in the source directory.\n";
-       exit();
+<?php
+/**
+ * Rebuild link tracking tables from scratch.  This takes several
+ * hours, depending on the database size and server configuration.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @ingroup Maintenance
+ */
+
+require_once( dirname( __FILE__ ) . '/Maintenance.php' );
+
+class RebuildAll extends Maintenance {
+       public function __construct() {
+               parent::__construct();
+               $this->mDescription = "Rebuild links, text index and recent changes";
+       }
+
+       public function execute() {
+               // Rebuild the text index
+               if ( wfGetDB( DB_SLAVE )->getType() != 'postgres' ) {
+                       $this->output( "** Rebuilding fulltext search index (if you abort this will break searching; run this script again to fix):\n" );
+                       $rebuildText = $this->runChild( 'RebuildTextIndex', 'rebuildtextindex.php' );
+                       $rebuildText->execute();
+               }
+
+               // Rebuild RC
+               $this->output( "\n\n** Rebuilding recentchanges table:\n" );
+               $rebuildRC = $this->runChild( 'RebuildRecentchanges', 'rebuildrecentchanges.php' );
+               $rebuildRC->execute();
+
+               // Rebuild link tables
+               $this->output( "\n\n** Rebuilding links tables -- this can take a long time. It should be safe to abort via ctrl+C if you get bored.\n" );
+               $rebuildLinks = $this->runChild( 'RefreshLinks', 'refreshLinks.php' );
+               $rebuildLinks->execute();
+
+               $this->output( "Done.\n" );
+       }
 }
 
-$DP = "../includes";
-include_once( "../LocalSettings.php" );
-include_once( "../AdminSettings.php" );
-
-include_once( "{$IP}/Setup.php" );
-include_once( "./rebuildlinks.inc" );
-include_once( "./rebuildtextindex.inc" );
-include_once( "./rebuildrecentchanges.inc" );
-$wgTitle = Title::newFromText( "Rebuild links script" );
-set_time_limit(0);
-
-$wgDBuser                      = $wgDBadminuser;
-$wgDBpassword          = $wgDBadminpassword;
-
-rebuildLinkTablesPass1();
-rebuildLinkTablesPass2();
-
-dropTextIndex();
-rebuildTextIndex();
-createTextIndex();
-
-rebuildRecentChangesTablePass1();
-rebuildRecentChangesTablePass2();
-
-print "Done.\n";
-exit();
-
-?>
+$maintClass = "RebuildAll";
+require_once( RUN_MAINTENANCE_IF_MAIN );