Make update.php obey --quiet
[lhc/web/wiklou.git] / maintenance / update.php
1 <?php
2 /**
3 * Run all updaters.
4 *
5 * This is used when the database schema is modified and we need to apply patches.
6 * It is kept compatible with php 4 parsing so that it can give out a meaningful error.
7 *
8 * @file
9 * @todo document
10 * @ingroup Maintenance
11 */
12
13 if ( !function_exists( 'version_compare' ) || ( version_compare( phpversion(), '5.1.0' ) < 0 ) ) {
14 echo "You are using PHP version " . phpversion() . " but MediaWiki needs PHP 5.1.0 or higher. ABORTING.\n" .
15 "Check if you have a newer php executable with a different name, such as php5.\n";
16 die( 1 );
17 }
18
19 $wgUseMasterForMaintenance = true;
20 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
21
22 class UpdateMediaWiki extends Maintenance {
23
24 function __construct() {
25 parent::__construct();
26 $this->mDescription = "MediaWiki database updater";
27 $this->addOption( 'skip-compat-checks', 'Skips compatibility checks, mostly for developers' );
28 $this->addOption( 'quick', 'Skip 5 second countdown before starting' );
29 $this->addOption( 'doshared', 'Also update shared tables' );
30 $this->addOption( 'nopurge', 'Do not purge the objectcache table after updates' );
31 }
32
33 function getDbType() {
34 return 2 /* Maintenance::DB_ADMIN */;
35 }
36
37 function execute() {
38 global $wgVersion, $wgTitle, $wgLang;
39
40 $wgLang = Language::factory( 'en' );
41 $wgTitle = Title::newFromText( "MediaWiki database updater" );
42
43 $this->output( "MediaWiki {$wgVersion} Updater\n\n" );
44
45 if ( !$this->hasOption( 'skip-compat-checks' ) ) {
46 install_version_checks();
47 } else {
48 $this->output( "Skipping compatibility checks, proceed at your own risk (Ctrl+C to abort)\n" );
49 wfCountdown( 5 );
50 }
51
52 # Attempt to connect to the database as a privileged user
53 # This will vomit up an error if there are permissions problems
54 $db = wfGetDB( DB_MASTER );
55
56 $this->output( "Going to run database updates for " . wfWikiID() . "\n" );
57 $this->output( "Depending on the size of your database this may take a while!\n" );
58
59 if ( !$this->hasOption( 'quick' ) ) {
60 $this->output( "Abort with control-c in the next five seconds (skip this countdown with --quick) ... " );
61 wfCountDown( 5 );
62 }
63
64 $shared = $this->hasOption( 'doshared' );
65 $purge = !$this->hasOption( 'nopurge' );
66
67 $updater = DatabaseUpdater::newForDb( $db, $shared, $this );
68 $updater->doUpdates( $purge );
69
70 foreach( $updater->getPostDatabaseUpdateMaintenance() as $maint ) {
71 $child = $this->runChild( $maint );
72 $child->execute();
73 }
74
75 $this->output( "\nDone.\n" );
76 }
77
78 function afterFinalSetup() {
79 global $wgLocalisationCacheConf;
80
81 # Don't try to access the database
82 # This needs to be disabled early since extensions will try to use the l10n
83 # cache from $wgExtensionFunctions (bug 20471)
84 $wgLocalisationCacheConf = array(
85 'class' => 'LocalisationCache',
86 'storeClass' => 'LCStore_Null',
87 'storeDirectory' => false,
88 'manualRecache' => false,
89 );
90 }
91 }
92
93 $maintClass = 'UpdateMediaWiki';
94 require_once( DO_MAINTENANCE );