MediaWiki REL1_32
MysqlInstaller.php
Go to the documentation of this file.
1<?php
27
35
36 protected $globalNames = [
37 'wgDBserver',
38 'wgDBname',
39 'wgDBuser',
40 'wgDBpassword',
41 'wgDBprefix',
42 'wgDBTableOptions',
43 ];
44
45 protected $internalDefaults = [
46 '_MysqlEngine' => 'InnoDB',
47 '_MysqlCharset' => 'binary',
48 '_InstallUser' => 'root',
49 ];
50
51 public $supportedEngines = [ 'InnoDB', 'MyISAM' ];
52
53 public static $minimumVersion = '5.5.8';
54 protected static $notMiniumumVerisonMessage = 'config-mysql-old';
55
56 public $webUserPrivs = [
57 'DELETE',
58 'INSERT',
59 'SELECT',
60 'UPDATE',
61 'CREATE TEMPORARY TABLES',
62 ];
63
67 public function getName() {
68 return 'mysql';
69 }
70
74 public function isCompiled() {
75 return self::checkExtension( 'mysqli' );
76 }
77
81 public function getConnectForm() {
82 return $this->getTextBox(
83 'wgDBserver',
84 'config-db-host',
85 [],
86 $this->parent->getHelpBox( 'config-db-host-help' )
87 ) .
88 Html::openElement( 'fieldset' ) .
89 Html::element( 'legend', [], wfMessage( 'config-db-wiki-settings' )->text() ) .
90 $this->getTextBox( 'wgDBname', 'config-db-name', [ 'dir' => 'ltr' ],
91 $this->parent->getHelpBox( 'config-db-name-help' ) ) .
92 $this->getTextBox( 'wgDBprefix', 'config-db-prefix', [ 'dir' => 'ltr' ],
93 $this->parent->getHelpBox( 'config-db-prefix-help' ) ) .
94 Html::closeElement( 'fieldset' ) .
95 $this->getInstallUserBox();
96 }
97
98 public function submitConnectForm() {
99 // Get variables from the request.
100 $newValues = $this->setVarsFromRequest( [ 'wgDBserver', 'wgDBname', 'wgDBprefix' ] );
101
102 // Validate them.
103 $status = Status::newGood();
104 if ( !strlen( $newValues['wgDBserver'] ) ) {
105 $status->fatal( 'config-missing-db-host' );
106 }
107 if ( !strlen( $newValues['wgDBname'] ) ) {
108 $status->fatal( 'config-missing-db-name' );
109 } elseif ( !preg_match( '/^[a-z0-9+_-]+$/i', $newValues['wgDBname'] ) ) {
110 $status->fatal( 'config-invalid-db-name', $newValues['wgDBname'] );
111 }
112 if ( !preg_match( '/^[a-z0-9_-]*$/i', $newValues['wgDBprefix'] ) ) {
113 $status->fatal( 'config-invalid-db-prefix', $newValues['wgDBprefix'] );
114 }
115 if ( !$status->isOK() ) {
116 return $status;
117 }
118
119 // Submit user box
120 $status = $this->submitInstallUserBox();
121 if ( !$status->isOK() ) {
122 return $status;
123 }
124
125 // Try to connect
126 $status = $this->getConnection();
127 if ( !$status->isOK() ) {
128 return $status;
129 }
133 $conn = $status->value;
134
135 // Check version
136 return static::meetsMinimumRequirement( $conn->getServerVersion() );
137 }
138
142 public function openConnection() {
143 $status = Status::newGood();
144 try {
145 $db = Database::factory( 'mysql', [
146 'host' => $this->getVar( 'wgDBserver' ),
147 'user' => $this->getVar( '_InstallUser' ),
148 'password' => $this->getVar( '_InstallPassword' ),
149 'dbname' => false,
150 'flags' => 0,
151 'tablePrefix' => $this->getVar( 'wgDBprefix' ) ] );
152 $status->value = $db;
153 } catch ( DBConnectionError $e ) {
154 $status->fatal( 'config-connection-error', $e->getMessage() );
155 }
156
157 return $status;
158 }
159
160 public function preUpgrade() {
161 global $wgDBuser, $wgDBpassword;
162
163 $status = $this->getConnection();
164 if ( !$status->isOK() ) {
165 $this->parent->showStatusError( $status );
166
167 return;
168 }
172 $conn = $status->value;
173 $conn->selectDB( $this->getVar( 'wgDBname' ) );
174
175 # Determine existing default character set
176 if ( $conn->tableExists( "revision", __METHOD__ ) ) {
177 $revision = $this->escapeLikeInternal( $this->getVar( 'wgDBprefix' ) . 'revision', '\\' );
178 $res = $conn->query( "SHOW TABLE STATUS LIKE '$revision'", __METHOD__ );
179 $row = $conn->fetchObject( $res );
180 if ( !$row ) {
181 $this->parent->showMessage( 'config-show-table-status' );
182 $existingSchema = false;
183 $existingEngine = false;
184 } else {
185 if ( preg_match( '/^latin1/', $row->Collation ) ) {
186 $existingSchema = 'latin1';
187 } elseif ( preg_match( '/^utf8/', $row->Collation ) ) {
188 $existingSchema = 'utf8';
189 } elseif ( preg_match( '/^binary/', $row->Collation ) ) {
190 $existingSchema = 'binary';
191 } else {
192 $existingSchema = false;
193 $this->parent->showMessage( 'config-unknown-collation' );
194 }
195 if ( isset( $row->Engine ) ) {
196 $existingEngine = $row->Engine;
197 } else {
198 $existingEngine = $row->Type;
199 }
200 }
201 } else {
202 $existingSchema = false;
203 $existingEngine = false;
204 }
205
206 if ( $existingSchema && $existingSchema != $this->getVar( '_MysqlCharset' ) ) {
207 $this->setVar( '_MysqlCharset', $existingSchema );
208 }
209 if ( $existingEngine && $existingEngine != $this->getVar( '_MysqlEngine' ) ) {
210 $this->setVar( '_MysqlEngine', $existingEngine );
211 }
212
213 # Normal user and password are selected after this step, so for now
214 # just copy these two
215 $wgDBuser = $this->getVar( '_InstallUser' );
216 $wgDBpassword = $this->getVar( '_InstallPassword' );
217 }
218
224 protected function escapeLikeInternal( $s, $escapeChar = '`' ) {
225 return str_replace( [ $escapeChar, '%', '_' ],
226 [ "{$escapeChar}{$escapeChar}", "{$escapeChar}%", "{$escapeChar}_" ],
227 $s );
228 }
229
235 public function getEngines() {
236 $status = $this->getConnection();
237
241 $conn = $status->value;
242
243 $engines = [];
244 $res = $conn->query( 'SHOW ENGINES', __METHOD__ );
245 foreach ( $res as $row ) {
246 if ( $row->Support == 'YES' || $row->Support == 'DEFAULT' ) {
247 $engines[] = $row->Engine;
248 }
249 }
250 $engines = array_intersect( $this->supportedEngines, $engines );
251
252 return $engines;
253 }
254
260 public function getCharsets() {
261 return [ 'binary', 'utf8' ];
262 }
263
269 public function canCreateAccounts() {
270 $status = $this->getConnection();
271 if ( !$status->isOK() ) {
272 return false;
273 }
275 $conn = $status->value;
276
277 // Get current account name
278 $currentName = $conn->selectField( '', 'CURRENT_USER()', '', __METHOD__ );
279 $parts = explode( '@', $currentName );
280 if ( count( $parts ) != 2 ) {
281 return false;
282 }
283 $quotedUser = $conn->addQuotes( $parts[0] ) .
284 '@' . $conn->addQuotes( $parts[1] );
285
286 // The user needs to have INSERT on mysql.* to be able to CREATE USER
287 // The grantee will be double-quoted in this query, as required
288 $res = $conn->select( 'INFORMATION_SCHEMA.USER_PRIVILEGES', '*',
289 [ 'GRANTEE' => $quotedUser ], __METHOD__ );
290 $insertMysql = false;
291 $grantOptions = array_flip( $this->webUserPrivs );
292 foreach ( $res as $row ) {
293 if ( $row->PRIVILEGE_TYPE == 'INSERT' ) {
294 $insertMysql = true;
295 }
296 if ( $row->IS_GRANTABLE ) {
297 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
298 }
299 }
300
301 // Check for DB-specific privs for mysql.*
302 if ( !$insertMysql ) {
303 $row = $conn->selectRow( 'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES', '*',
304 [
305 'GRANTEE' => $quotedUser,
306 'TABLE_SCHEMA' => 'mysql',
307 'PRIVILEGE_TYPE' => 'INSERT',
308 ], __METHOD__ );
309 if ( $row ) {
310 $insertMysql = true;
311 }
312 }
313
314 if ( !$insertMysql ) {
315 return false;
316 }
317
318 // Check for DB-level grant options
319 $res = $conn->select( 'INFORMATION_SCHEMA.SCHEMA_PRIVILEGES', '*',
320 [
321 'GRANTEE' => $quotedUser,
322 'IS_GRANTABLE' => 1,
323 ], __METHOD__ );
324 foreach ( $res as $row ) {
325 $regex = $this->likeToRegex( $row->TABLE_SCHEMA );
326 if ( preg_match( $regex, $this->getVar( 'wgDBname' ) ) ) {
327 unset( $grantOptions[$row->PRIVILEGE_TYPE] );
328 }
329 }
330 if ( count( $grantOptions ) ) {
331 // Can't grant everything
332 return false;
333 }
334
335 return true;
336 }
337
344 protected function likeToRegex( $wildcard ) {
345 $r = preg_quote( $wildcard, '/' );
346 $r = strtr( $r, [
347 '%' => '.*',
348 '_' => '.'
349 ] );
350 return "/$r/s";
351 }
352
356 public function getSettingsForm() {
357 if ( $this->canCreateAccounts() ) {
358 $noCreateMsg = false;
359 } else {
360 $noCreateMsg = 'config-db-web-no-create-privs';
361 }
362 $s = $this->getWebUserBox( $noCreateMsg );
363
364 // Do engine selector
365 $engines = $this->getEngines();
366 // If the current default engine is not supported, use an engine that is
367 if ( !in_array( $this->getVar( '_MysqlEngine' ), $engines ) ) {
368 $this->setVar( '_MysqlEngine', reset( $engines ) );
369 }
370
371 $s .= Xml::openElement( 'div', [
372 'id' => 'dbMyisamWarning'
373 ] );
374 $myisamWarning = 'config-mysql-myisam-dep';
375 if ( count( $engines ) === 1 ) {
376 $myisamWarning = 'config-mysql-only-myisam-dep';
377 }
378 $s .= $this->parent->getWarningBox( wfMessage( $myisamWarning )->text() );
379 $s .= Xml::closeElement( 'div' );
380
381 if ( $this->getVar( '_MysqlEngine' ) != 'MyISAM' ) {
382 $s .= Xml::openElement( 'script' );
383 $s .= '$(\'#dbMyisamWarning\').hide();';
384 $s .= Xml::closeElement( 'script' );
385 }
386
387 if ( count( $engines ) >= 2 ) {
388 // getRadioSet() builds a set of labeled radio buttons.
389 // For grep: The following messages are used as the item labels:
390 // config-mysql-innodb, config-mysql-myisam
391 $s .= $this->getRadioSet( [
392 'var' => '_MysqlEngine',
393 'label' => 'config-mysql-engine',
394 'itemLabelPrefix' => 'config-mysql-',
395 'values' => $engines,
396 'itemAttribs' => [
397 'MyISAM' => [
398 'class' => 'showHideRadio',
399 'rel' => 'dbMyisamWarning'
400 ],
401 'InnoDB' => [
402 'class' => 'hideShowRadio',
403 'rel' => 'dbMyisamWarning'
404 ]
405 ]
406 ] );
407 $s .= $this->parent->getHelpBox( 'config-mysql-engine-help' );
408 }
409
410 // If the current default charset is not supported, use a charset that is
411 $charsets = $this->getCharsets();
412 if ( !in_array( $this->getVar( '_MysqlCharset' ), $charsets ) ) {
413 $this->setVar( '_MysqlCharset', reset( $charsets ) );
414 }
415
416 return $s;
417 }
418
422 public function submitSettingsForm() {
423 $this->setVarsFromRequest( [ '_MysqlEngine', '_MysqlCharset' ] );
424 $status = $this->submitWebUserBox();
425 if ( !$status->isOK() ) {
426 return $status;
427 }
428
429 // Validate the create checkbox
430 $canCreate = $this->canCreateAccounts();
431 if ( !$canCreate ) {
432 $this->setVar( '_CreateDBAccount', false );
433 $create = false;
434 } else {
435 $create = $this->getVar( '_CreateDBAccount' );
436 }
437
438 if ( !$create ) {
439 // Test the web account
440 try {
441 Database::factory( 'mysql', [
442 'host' => $this->getVar( 'wgDBserver' ),
443 'user' => $this->getVar( 'wgDBuser' ),
444 'password' => $this->getVar( 'wgDBpassword' ),
445 'dbname' => false,
446 'flags' => 0,
447 'tablePrefix' => $this->getVar( 'wgDBprefix' )
448 ] );
449 } catch ( DBConnectionError $e ) {
450 return Status::newFatal( 'config-connection-error', $e->getMessage() );
451 }
452 }
453
454 // Validate engines and charsets
455 // This is done pre-submit already so it's just for security
456 $engines = $this->getEngines();
457 if ( !in_array( $this->getVar( '_MysqlEngine' ), $engines ) ) {
458 $this->setVar( '_MysqlEngine', reset( $engines ) );
459 }
460 $charsets = $this->getCharsets();
461 if ( !in_array( $this->getVar( '_MysqlCharset' ), $charsets ) ) {
462 $this->setVar( '_MysqlCharset', reset( $charsets ) );
463 }
464
465 return Status::newGood();
466 }
467
468 public function preInstall() {
469 # Add our user callback to installSteps, right before the tables are created.
470 $callback = [
471 'name' => 'user',
472 'callback' => [ $this, 'setupUser' ],
473 ];
474 $this->parent->addInstallStep( $callback, 'tables' );
475 }
476
480 public function setupDatabase() {
481 $status = $this->getConnection();
482 if ( !$status->isOK() ) {
483 return $status;
484 }
486 $conn = $status->value;
487 $dbName = $this->getVar( 'wgDBname' );
488 if ( !$this->databaseExists( $dbName ) ) {
489 $conn->query(
490 "CREATE DATABASE " . $conn->addIdentifierQuotes( $dbName ) . "CHARACTER SET utf8",
491 __METHOD__
492 );
493 }
494 $conn->selectDB( $dbName );
495 $this->setupSchemaVars();
496
497 return $status;
498 }
499
505 private function databaseExists( $dbName ) {
506 $encDatabase = $this->db->addQuotes( $dbName );
507
508 return $this->db->query(
509 "SELECT 1 FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = $encDatabase",
510 __METHOD__
511 )->numRows() > 0;
512 }
513
517 public function setupUser() {
518 $dbUser = $this->getVar( 'wgDBuser' );
519 if ( $dbUser == $this->getVar( '_InstallUser' ) ) {
520 return Status::newGood();
521 }
522 $status = $this->getConnection();
523 if ( !$status->isOK() ) {
524 return $status;
525 }
526
527 $this->setupSchemaVars();
528 $dbName = $this->getVar( 'wgDBname' );
529 $this->db->selectDB( $dbName );
530 $server = $this->getVar( 'wgDBserver' );
531 $password = $this->getVar( 'wgDBpassword' );
532 $grantableNames = [];
533
534 if ( $this->getVar( '_CreateDBAccount' ) ) {
535 // Before we blindly try to create a user that already has access,
536 try { // first attempt to connect to the database
537 Database::factory( 'mysql', [
538 'host' => $server,
539 'user' => $dbUser,
540 'password' => $password,
541 'dbname' => false,
542 'flags' => 0,
543 'tablePrefix' => $this->getVar( 'wgDBprefix' )
544 ] );
545 $grantableNames[] = $this->buildFullUserName( $dbUser, $server );
546 $tryToCreate = false;
547 } catch ( DBConnectionError $e ) {
548 $tryToCreate = true;
549 }
550 } else {
551 $grantableNames[] = $this->buildFullUserName( $dbUser, $server );
552 $tryToCreate = false;
553 }
554
555 if ( $tryToCreate ) {
556 $createHostList = [
557 $server,
558 'localhost',
559 'localhost.localdomain',
560 '%'
561 ];
562
563 $createHostList = array_unique( $createHostList );
564 $escPass = $this->db->addQuotes( $password );
565
566 foreach ( $createHostList as $host ) {
567 $fullName = $this->buildFullUserName( $dbUser, $host );
568 if ( !$this->userDefinitelyExists( $host, $dbUser ) ) {
569 try {
570 $this->db->begin( __METHOD__ );
571 $this->db->query( "CREATE USER $fullName IDENTIFIED BY $escPass", __METHOD__ );
572 $this->db->commit( __METHOD__ );
573 $grantableNames[] = $fullName;
574 } catch ( DBQueryError $dqe ) {
575 if ( $this->db->lastErrno() == 1396 /* ER_CANNOT_USER */ ) {
576 // User (probably) already exists
577 $this->db->rollback( __METHOD__ );
578 $status->warning( 'config-install-user-alreadyexists', $dbUser );
579 $grantableNames[] = $fullName;
580 break;
581 } else {
582 // If we couldn't create for some bizzare reason and the
583 // user probably doesn't exist, skip the grant
584 $this->db->rollback( __METHOD__ );
585 $status->warning( 'config-install-user-create-failed', $dbUser, $dqe->getMessage() );
586 }
587 }
588 } else {
589 $status->warning( 'config-install-user-alreadyexists', $dbUser );
590 $grantableNames[] = $fullName;
591 break;
592 }
593 }
594 }
595
596 // Try to grant to all the users we know exist or we were able to create
597 $dbAllTables = $this->db->addIdentifierQuotes( $dbName ) . '.*';
598 foreach ( $grantableNames as $name ) {
599 try {
600 $this->db->begin( __METHOD__ );
601 $this->db->query( "GRANT ALL PRIVILEGES ON $dbAllTables TO $name", __METHOD__ );
602 $this->db->commit( __METHOD__ );
603 } catch ( DBQueryError $dqe ) {
604 $this->db->rollback( __METHOD__ );
605 $status->fatal( 'config-install-user-grant-failed', $dbUser, $dqe->getMessage() );
606 }
607 }
608
609 return $status;
610 }
611
618 private function buildFullUserName( $name, $host ) {
619 return $this->db->addQuotes( $name ) . '@' . $this->db->addQuotes( $host );
620 }
621
629 private function userDefinitelyExists( $host, $user ) {
630 try {
631 $res = $this->db->selectRow( 'mysql.user', [ 'Host', 'User' ],
632 [ 'Host' => $host, 'User' => $user ], __METHOD__ );
633
634 return (bool)$res;
635 } catch ( DBQueryError $dqe ) {
636 return false;
637 }
638 }
639
646 protected function getTableOptions() {
647 $options = [];
648 if ( $this->getVar( '_MysqlEngine' ) !== null ) {
649 $options[] = "ENGINE=" . $this->getVar( '_MysqlEngine' );
650 }
651 if ( $this->getVar( '_MysqlCharset' ) !== null ) {
652 $options[] = 'DEFAULT CHARSET=' . $this->getVar( '_MysqlCharset' );
653 }
654
655 return implode( ', ', $options );
656 }
657
663 public function getSchemaVars() {
664 return [
665 'wgDBTableOptions' => $this->getTableOptions(),
666 'wgDBname' => $this->getVar( 'wgDBname' ),
667 'wgDBuser' => $this->getVar( 'wgDBuser' ),
668 'wgDBpassword' => $this->getVar( 'wgDBpassword' ),
669 ];
670 }
671
672 public function getLocalSettings() {
673 $prefix = LocalSettingsGenerator::escapePhpString( $this->getVar( 'wgDBprefix' ) );
674 $tblOpts = LocalSettingsGenerator::escapePhpString( $this->getTableOptions() );
675
676 return "# MySQL specific settings
677\$wgDBprefix = \"{$prefix}\";
678
679# MySQL table options to use during installation or update
680\$wgDBTableOptions = \"{$tblOpts}\";";
681 }
682}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
$wgDBuser
Database username.
$wgDBpassword
Database user's password.
Base class for DBMS-specific installation helper classes.
getWebUserBox( $noCreateMsg=false)
Get a standard web-user fieldset.
submitWebUserBox()
Submit the form from getWebUserBox().
static checkExtension( $name)
Convenience function.
Database $db
The database connection.
setVarsFromRequest( $varNames)
Convenience function to set variables based on form data.
getConnection()
Connect to the database using the administrative user/password currently defined in the session.
getVar( $var, $default=null)
Get a variable, taking local defaults into account.
getTextBox( $var, $label, $attribs=[], $helpData="")
Get a labelled text box to configure a local variable.
setVar( $name, $value)
Convenience alias for $this->parent->setVar()
submitInstallUserBox()
Submit a standard install user fieldset.
getInstallUserBox()
Get a standard install-user fieldset.
setupSchemaVars()
Set appropriate schema variables in the current database connection.
getRadioSet( $params)
Get a set of labelled radio buttons.
Class for setting up the MediaWiki database using MySQL.
likeToRegex( $wildcard)
Convert a wildcard (as used in LIKE) to a regex Slashes are escaped, slash terminators included.
userDefinitelyExists( $host, $user)
Try to see if the user account exists.
escapeLikeInternal( $s, $escapeChar='`')
getSchemaVars()
Get variables to substitute into tables.sql and the SQL patch files.
preInstall()
Allow DB installers a chance to make last-minute changes before installation occurs.
databaseExists( $dbName)
Try to see if a given database exists.
getEngines()
Get a list of storage engines that are available and supported.
canCreateAccounts()
Return true if the install user can create accounts.
preUpgrade()
Allow DB installers a chance to make checks before upgrade.
getTableOptions()
Return any table options to be applied to all tables that don't override them.
static $notMiniumumVerisonMessage
getCharsets()
Get a list of character sets that are available and supported.
submitConnectForm()
Set variables based on the request array, assuming it was submitted via the form returned by getConne...
buildFullUserName( $name, $host)
Return a formal 'User'@'Host' username for use in queries.
getLocalSettings()
Get the DBMS-specific options for LocalSettings.php generation.
Relational database abstraction object.
Definition Database.php:48
$res
Definition database.txt:21
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1305
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2050
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
returning false will NOT prevent logging $e
Definition hooks.txt:2226
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37