Localisation updates for core and extension messages from translatewiki.net (2011...
[lhc/web/wiklou.git] / includes / installer / DatabaseUpdater.php
1 <?php
2 /**
3 * DBMS-specific updater helper.
4 *
5 * @file
6 * @ingroup Deployment
7 */
8
9 require_once( dirname(__FILE__) . '/../../maintenance/Maintenance.php' );
10
11 /*
12 * Class for handling database updates. Roughly based off of updaters.inc, with
13 * a few improvements :)
14 *
15 * @ingroup Deployment
16 * @since 1.17
17 */
18 abstract class DatabaseUpdater {
19
20 /**
21 * Array of updates to perform on the database
22 *
23 * @var array
24 */
25 protected $updates = array();
26
27 /**
28 * List of extension-provided database updates
29 * @var array
30 */
31 protected $extensionUpdates = array();
32
33 /**
34 * Used to hold schema files during installation process
35 * @var array
36 */
37 protected $newExtensions = array();
38
39 /**
40 * Handle to the database subclass
41 *
42 * @var DatabaseBase
43 */
44 protected $db;
45
46 protected $shared = false;
47
48 protected $postDatabaseUpdateMaintenance = array(
49 'DeleteDefaultMessages'
50 );
51
52 /**
53 * Constructor
54 *
55 * @param $db DatabaseBase object to perform updates on
56 * @param $shared bool Whether to perform updates on shared tables
57 * @param $maintenance Maintenance Maintenance object which created us
58 */
59 protected function __construct( DatabaseBase &$db, $shared, Maintenance $maintenance = null ) {
60 $this->db = $db;
61 $this->db->setFlag( DBO_DDLMODE ); // For Oracle's handling of schema files
62 $this->shared = $shared;
63 if ( $maintenance ) {
64 $this->maintenance = $maintenance;
65 } else {
66 $this->maintenance = new FakeMaintenance;
67 }
68 $this->initOldGlobals();
69 wfRunHooks( 'LoadExtensionSchemaUpdates', array( $this ) );
70 }
71
72 /**
73 * Initialize all of the old globals. One day this should all become
74 * something much nicer
75 */
76 private function initOldGlobals() {
77 global $wgExtNewTables, $wgExtNewFields, $wgExtPGNewFields,
78 $wgExtPGAlteredFields, $wgExtNewIndexes, $wgExtModifiedFields;
79
80 # For extensions only, should be populated via hooks
81 # $wgDBtype should be checked to specifiy the proper file
82 $wgExtNewTables = array(); // table, dir
83 $wgExtNewFields = array(); // table, column, dir
84 $wgExtPGNewFields = array(); // table, column, column attributes; for PostgreSQL
85 $wgExtPGAlteredFields = array(); // table, column, new type, conversion method; for PostgreSQL
86 $wgExtNewIndexes = array(); // table, index, dir
87 $wgExtModifiedFields = array(); // table, index, dir
88 }
89
90 /**
91 * @throws MWException
92 * @param DatabaseBase $db
93 * @param bool $shared
94 * @param null $maintenance
95 * @return DatabaseUpdater
96 */
97 public static function newForDB( &$db, $shared = false, $maintenance = null ) {
98 $type = $db->getType();
99 if( in_array( $type, Installer::getDBTypes() ) ) {
100 $class = ucfirst( $type ) . 'Updater';
101 return new $class( $db, $shared, $maintenance );
102 } else {
103 throw new MWException( __METHOD__ . ' called for unsupported $wgDBtype' );
104 }
105 }
106
107 /**
108 * Get a database connection to run updates
109 *
110 * @return DatabaseBase
111 */
112 public function getDB() {
113 return $this->db;
114 }
115
116 /**
117 * Output some text. If we're running from web, escape the text first.
118 *
119 * @param $str String: Text to output
120 */
121 public function output( $str ) {
122 if ( $this->maintenance->isQuiet() ) {
123 return;
124 }
125 global $wgCommandLineMode;
126 if( !$wgCommandLineMode ) {
127 $str = htmlspecialchars( $str );
128 }
129 echo $str;
130 flush();
131 }
132
133 /**
134 * Add a new update coming from an extension. This should be called by
135 * extensions while executing the LoadExtensionSchemaUpdates hook.
136 *
137 * @param $update Array: the update to run. Format is the following:
138 * first item is the callback function, it also can be a
139 * simple string with the name of a function in this class,
140 * following elements are parameters to the function.
141 * Note that callback functions will receive this object as
142 * first parameter.
143 */
144 public function addExtensionUpdate( Array $update ) {
145 $this->extensionUpdates[] = $update;
146 }
147
148 /**
149 * Convenience wrapper for addExtensionUpdate() when adding a new table (which
150 * is the most common usage of updaters in an extension)
151 * @param $tableName String Name of table to create
152 * @param $sqlPath String Full path to the schema file
153 */
154 public function addExtensionTable( $tableName, $sqlPath ) {
155 $this->extensionUpdates[] = array( 'addTable', $tableName, $sqlPath, true );
156 }
157
158 /**
159 * Add a brand new extension to MediaWiki. Used during the initial install
160 * @param $ext String Name of extension
161 * @param $sqlPath String Full path to the schema file
162 */
163 public function addNewExtension( $ext, $sqlPath ) {
164 $this->newExtensions[ strtolower( $ext ) ] = $sqlPath;
165 }
166
167 /**
168 * Get the list of extensions that registered a schema with our DB type
169 * @return array
170 */
171 public function getNewExtensions() {
172 return $this->newExtensions;
173 }
174
175 /**
176 * Get the list of extension-defined updates
177 *
178 * @return Array
179 */
180 protected function getExtensionUpdates() {
181 return $this->extensionUpdates;
182 }
183
184 public function getPostDatabaseUpdateMaintenance() {
185 return $this->postDatabaseUpdateMaintenance;
186 }
187
188 /**
189 * Do all the updates
190 *
191 * @param $what Array: what updates to perform
192 */
193 public function doUpdates( $what = array( 'core', 'extensions', 'purge' ) ) {
194 global $wgVersion;
195
196 $what = array_flip( $what );
197 if ( isset( $what['core'] ) ) {
198 $this->runUpdates( $this->getCoreUpdateList(), false );
199 }
200 if ( isset( $what['extensions'] ) ) {
201 $this->runUpdates( $this->getOldGlobalUpdates(), false );
202 $this->runUpdates( $this->getExtensionUpdates(), true );
203 }
204
205 $this->setAppliedUpdates( $wgVersion, $this->updates );
206
207 if( isset( $what['purge'] ) ) {
208 $this->purgeCache();
209 }
210 if ( isset( $what['core'] ) ) {
211 $this->checkStats();
212 }
213 }
214
215 /**
216 * Helper function for doUpdates()
217 *
218 * @param $updates Array of updates to run
219 * @param $passSelf Boolean: whether to pass this object we calling external
220 * functions
221 */
222 private function runUpdates( array $updates, $passSelf ) {
223 foreach ( $updates as $params ) {
224 $func = array_shift( $params );
225 if( !is_array( $func ) && method_exists( $this, $func ) ) {
226 $func = array( $this, $func );
227 } elseif ( $passSelf ) {
228 array_unshift( $params, $this );
229 }
230 call_user_func_array( $func, $params );
231 flush();
232 }
233 $this->updates = array_merge( $this->updates, $updates );
234 }
235
236 protected function setAppliedUpdates( $version, $updates = array() ) {
237 if( !$this->canUseNewUpdatelog() ) {
238 return;
239 }
240 $key = "updatelist-$version-" . time();
241 $this->db->insert( 'updatelog',
242 array( 'ul_key' => $key, 'ul_value' => serialize( $updates ) ),
243 __METHOD__ );
244 }
245
246 /**
247 * Helper function: check if the given key is present in the updatelog table.
248 * Obviously, only use this for updates that occur after the updatelog table was
249 * created!
250 */
251 public function updateRowExists( $key ) {
252 $row = $this->db->selectRow(
253 'updatelog',
254 '1',
255 array( 'ul_key' => $key ),
256 __METHOD__
257 );
258 return (bool)$row;
259 }
260
261 /**
262 * Updatelog was changed in 1.17 to have a ul_value column so we can record
263 * more information about what kind of updates we've done (that's what this
264 * class does). Pre-1.17 wikis won't have this column, and really old wikis
265 * might not even have updatelog at all
266 *
267 * @return boolean
268 */
269 protected function canUseNewUpdatelog() {
270 return $this->db->tableExists( 'updatelog' ) &&
271 $this->db->fieldExists( 'updatelog', 'ul_value' );
272 }
273
274 /**
275 * Before 1.17, we used to handle updates via stuff like
276 * $wgExtNewTables/Fields/Indexes. This is nasty :) We refactored a lot
277 * of this in 1.17 but we want to remain back-compatible for a while. So
278 * load up these old global-based things into our update list.
279 */
280 protected function getOldGlobalUpdates() {
281 global $wgExtNewFields, $wgExtNewTables, $wgExtModifiedFields,
282 $wgExtNewIndexes, $wgSharedDB, $wgSharedTables;
283
284 $doUser = $this->shared ?
285 $wgSharedDB && in_array( 'user', $wgSharedTables ) :
286 !$wgSharedDB || !in_array( 'user', $wgSharedTables );
287
288 $updates = array();
289
290 foreach ( $wgExtNewTables as $tableRecord ) {
291 $updates[] = array(
292 'addTable', $tableRecord[0], $tableRecord[1], true
293 );
294 }
295
296 foreach ( $wgExtNewFields as $fieldRecord ) {
297 if ( $fieldRecord[0] != 'user' || $doUser ) {
298 $updates[] = array(
299 'addField', $fieldRecord[0], $fieldRecord[1],
300 $fieldRecord[2], true
301 );
302 }
303 }
304
305 foreach ( $wgExtNewIndexes as $fieldRecord ) {
306 $updates[] = array(
307 'addIndex', $fieldRecord[0], $fieldRecord[1],
308 $fieldRecord[2], true
309 );
310 }
311
312 foreach ( $wgExtModifiedFields as $fieldRecord ) {
313 $updates[] = array(
314 'modifyField', $fieldRecord[0], $fieldRecord[1],
315 $fieldRecord[2], true
316 );
317 }
318
319 return $updates;
320 }
321
322 /**
323 * Get an array of updates to perform on the database. Should return a
324 * multi-dimensional array. The main key is the MediaWiki version (1.12,
325 * 1.13...) with the values being arrays of updates, identical to how
326 * updaters.inc did it (for now)
327 *
328 * @return Array
329 */
330 protected abstract function getCoreUpdateList();
331
332 /**
333 * Applies a SQL patch
334 * @param $path String Path to the patch file
335 * @param $isFullPath Boolean Whether to treat $path as a relative or not
336 */
337 protected function applyPatch( $path, $isFullPath = false ) {
338 if ( $isFullPath ) {
339 $this->db->sourceFile( $path );
340 } else {
341 $this->db->sourceFile( $this->db->patchPath( $path ) );
342 }
343 }
344
345 /**
346 * Add a new table to the database
347 * @param $name String Name of the new table
348 * @param $patch String Path to the patch file
349 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
350 */
351 protected function addTable( $name, $patch, $fullpath = false ) {
352 if ( $this->db->tableExists( $name ) ) {
353 $this->output( "...$name table already exists.\n" );
354 } else {
355 $this->output( "Creating $name table..." );
356 $this->applyPatch( $patch, $fullpath );
357 $this->output( "ok\n" );
358 }
359 }
360
361 /**
362 * Add a new field to an existing table
363 * @param $table String Name of the table to modify
364 * @param $field String Name of the new field
365 * @param $patch String Path to the patch file
366 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
367 */
368 protected function addField( $table, $field, $patch, $fullpath = false ) {
369 if ( !$this->db->tableExists( $table ) ) {
370 $this->output( "...$table table does not exist, skipping new field patch\n" );
371 } elseif ( $this->db->fieldExists( $table, $field ) ) {
372 $this->output( "...have $field field in $table table.\n" );
373 } else {
374 $this->output( "Adding $field field to table $table..." );
375 $this->applyPatch( $patch, $fullpath );
376 $this->output( "ok\n" );
377 }
378 }
379
380 /**
381 * Add a new index to an existing table
382 * @param $table String Name of the table to modify
383 * @param $index String Name of the new index
384 * @param $patch String Path to the patch file
385 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
386 */
387 protected function addIndex( $table, $index, $patch, $fullpath = false ) {
388 if ( $this->db->indexExists( $table, $index ) ) {
389 $this->output( "...$index key already set on $table table.\n" );
390 } else {
391 $this->output( "Adding $index key to table $table... " );
392 $this->applyPatch( $patch, $fullpath );
393 $this->output( "ok\n" );
394 }
395 }
396
397 /**
398 * Drop a field from an existing table
399 *
400 * @param $table String Name of the table to modify
401 * @param $field String Name of the old field
402 * @param $patch String Path to the patch file
403 * @param $fullpath Boolean Whether to treat $patch path as a relative or not
404 */
405 protected function dropField( $table, $field, $patch, $fullpath = false ) {
406 if ( $this->db->fieldExists( $table, $field ) ) {
407 $this->output( "Table $table contains $field field. Dropping... " );
408 $this->applyPatch( $patch, $fullpath );
409 $this->output( "ok\n" );
410 } else {
411 $this->output( "...$table table does not contain $field field.\n" );
412 }
413 }
414
415 /**
416 * Drop an index from an existing table
417 *
418 * @param $table String: Name of the table to modify
419 * @param $index String: Name of the old index
420 * @param $patch String: Path to the patch file
421 * @param $fullpath Boolean: Whether to treat $patch path as a relative or not
422 */
423 protected function dropIndex( $table, $index, $patch, $fullpath = false ) {
424 if ( $this->db->indexExists( $table, $index ) ) {
425 $this->output( "Dropping $index from table $table... " );
426 $this->applyPatch( $patch, $fullpath );
427 $this->output( "ok\n" );
428 } else {
429 $this->output( "...$index key doesn't exist.\n" );
430 }
431 }
432
433 /**
434 * Modify an existing field
435 *
436 * @param $table String: name of the table to which the field belongs
437 * @param $field String: name of the field to modify
438 * @param $patch String: path to the patch file
439 * @param $fullpath Boolean: whether to treat $patch path as a relative or not
440 */
441 public function modifyField( $table, $field, $patch, $fullpath = false ) {
442 if ( !$this->db->tableExists( $table ) ) {
443 $this->output( "...$table table does not exist, skipping modify field patch\n" );
444 } elseif ( !$this->db->fieldExists( $table, $field ) ) {
445 $this->output( "...$field field does not exist in $table table, skipping modify field patch\n" );
446 } else {
447 $this->output( "Modifying $field field of table $table..." );
448 $this->applyPatch( $patch, $fullpath );
449 $this->output( "ok\n" );
450 }
451 }
452
453 /**
454 * Purge the objectcache table
455 */
456 protected function purgeCache() {
457 # We can't guarantee that the user will be able to use TRUNCATE,
458 # but we know that DELETE is available to us
459 $this->output( "Purging caches..." );
460 $this->db->delete( 'objectcache', '*', __METHOD__ );
461 $this->output( "done.\n" );
462 }
463
464 /**
465 * Check the site_stats table is not properly populated.
466 */
467 protected function checkStats() {
468 $this->output( "Checking site_stats row..." );
469 $row = $this->db->selectRow( 'site_stats', '*', array( 'ss_row_id' => 1 ), __METHOD__ );
470 if ( $row === false ) {
471 $this->output( "data is missing! rebuilding...\n" );
472 } elseif ( isset( $row->site_stats ) && $row->ss_total_pages == -1 ) {
473 $this->output( "missing ss_total_pages, rebuilding...\n" );
474 } else {
475 $this->output( "done.\n" );
476 return;
477 }
478 SiteStatsInit::doAllAndCommit( false );
479 }
480
481 # Common updater functions
482
483 protected function doActiveUsersInit() {
484 $activeUsers = $this->db->selectField( 'site_stats', 'ss_active_users', false, __METHOD__ );
485 if ( $activeUsers == -1 ) {
486 $activeUsers = $this->db->selectField( 'recentchanges',
487 'COUNT( DISTINCT rc_user_text )',
488 array( 'rc_user != 0', 'rc_bot' => 0, "rc_log_type != 'newusers'" ), __METHOD__
489 );
490 $this->db->update( 'site_stats',
491 array( 'ss_active_users' => intval( $activeUsers ) ),
492 array( 'ss_row_id' => 1 ), __METHOD__, array( 'LIMIT' => 1 )
493 );
494 }
495 $this->output( "...ss_active_users user count set...\n" );
496 }
497
498 protected function doLogUsertextPopulation() {
499 if ( $this->updateRowExists( 'populate log_usertext' ) ) {
500 $this->output( "...log_user_text field already populated.\n" );
501 return;
502 }
503
504 $this->output(
505 "Populating log_user_text field, printing progress markers. For large\n" .
506 "databases, you may want to hit Ctrl-C and do this manually with\n" .
507 "maintenance/populateLogUsertext.php.\n" );
508 $task = new PopulateLogUsertext();
509 $task->execute();
510 $this->output( "Done populating log_user_text field.\n" );
511 }
512
513 protected function doLogSearchPopulation() {
514 if ( $this->updateRowExists( 'populate log_search' ) ) {
515 $this->output( "...log_search table already populated.\n" );
516 return;
517 }
518
519 $this->output(
520 "Populating log_search table, printing progress markers. For large\n" .
521 "databases, you may want to hit Ctrl-C and do this manually with\n" .
522 "maintenance/populateLogSearch.php.\n" );
523 $task = new PopulateLogSearch();
524 $task->execute();
525 $this->output( "Done populating log_search table.\n" );
526 }
527
528 protected function doUpdateTranscacheField() {
529 if ( $this->updateRowExists( 'convert transcache field' ) ) {
530 $this->output( "...transcache tc_time already converted.\n" );
531 return;
532 }
533
534 $this->output( "Converting tc_time from UNIX epoch to MediaWiki timestamp... " );
535 $this->applyPatch( 'patch-tc-timestamp.sql' );
536 $this->output( "ok\n" );
537 }
538
539 protected function doCollationUpdate() {
540 global $wgCategoryCollation;
541 if ( $this->db->selectField(
542 'categorylinks',
543 'COUNT(*)',
544 'cl_collation != ' . $this->db->addQuotes( $wgCategoryCollation ),
545 __METHOD__
546 ) == 0 ) {
547 $this->output( "...collations up-to-date.\n" );
548 return;
549 }
550
551 $task = new UpdateCollation();
552 $task->execute();
553 }
554 }