doMaintenance.php -> DO_MAINTENANCE
[lhc/web/wiklou.git] / maintenance / update.php
index e343734..abd0beb 100644 (file)
@@ -1,39 +1,55 @@
 <?php
-require_once 'counter.php';
 /**
  * Run all updaters.
  *
+ * This is used when the database schema is modified and we need to apply patches.
+ *
+ * @file
  * @todo document
- * @package MediaWiki
- * @subpackage Maintenance
+ * @ingroup Maintenance
  */
 
 /** */
+define( 'MW_CMDLINE_CALLBACK', 'wfSetupUpdateScript' );
 $wgUseMasterForMaintenance = true;
-$options = array( 'quick' );
-require_once( "commandLine.inc" );
-require_once( "updaters.inc" );
+require_once( dirname(__FILE__) . '/commandLine.inc' );
+require( "updaters.inc" );
+
 $wgTitle = Title::newFromText( "MediaWiki database updater" );
-$dbclass = 'Database'.ucfirst($wgDBtype);
-require_once("$dbclass.php");
-$dbc = new $dbclass;
-$wgDatabase = $dbc->newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
 
-print "Going to run database updates for $wgDBname\n";
+echo( "MediaWiki {$wgVersion} Updater\n\n" );
+
+install_version_checks();
+
+# Attempt to connect to the database as a privileged user
+# This will vomit up an error if there are permissions problems
+$wgDatabase = wfGetDB( DB_MASTER );
+
+print "Going to run database updates for ".wfWikiID()."\n";
 print "Depending on the size of your database this may take a while!\n";
 
 if( !isset( $options['quick'] ) ) {
        print "Abort with control-c in the next five seconds... ";
-
-       for ($i = 6; $i >= 1;) {
-               print_c($i, --$i);
-               sleep(1);
-       }
-       die();
+       wfCountDown( 5 );
 }
 
-do_all_updates();
+$shared = isset( $options['doshared'] );
+$purge = !isset( $options['nopurge'] );
+
+do_all_updates( $shared, $purge );
 
 print "Done.\n";
 
-?>
+function wfSetupUpdateScript() {
+       global $wgLocalisationCacheConf;
+
+       # Don't try to access the database
+       # This needs to be disabled early since extensions will try to use the l10n 
+       # cache from $wgExtensionSetupFunctions (bug 20471)
+       $wgLocalisationCacheConf = array(
+               'class' => 'LocalisationCache', 
+               'storeClass' => 'LCStore_Null',
+               'storeDirectory' => false,
+               'manualRecache' => false,
+       );
+}