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