65 abstract public function getName();
158 $this->db->clearFlag(
DBO_TRX );
159 $this->db->commit( __METHOD__ );
176 $archiveTableMustNotExist =
false
182 $this->db->selectDB( $this->
getVar(
'wgDBname' ) );
184 if ( $archiveTableMustNotExist && $this->db->tableExists(
'archive', __METHOD__ ) ) {
185 $status->warning(
"config-$stepName-tables-exist" );
192 $this->db->begin( __METHOD__ );
194 $error = $this->db->sourceFile(
195 call_user_func( [ $this, $sourceFileMethod ], $this->db )
197 if ( $error !==
true ) {
198 $this->db->reportQueryError( $error, 0,
'', __METHOD__ );
199 $this->db->rollback( __METHOD__ );
200 $status->fatal(
"config-$stepName-tables-failed", $error );
202 $this->db->commit( __METHOD__ );
241 $dbmsSpecificFilePath =
"$IP/maintenance/" .
$db->
getType() .
"/$filename";
242 if ( file_exists( $dbmsSpecificFilePath ) ) {
243 return $dbmsSpecificFilePath;
245 return "$IP/maintenance/$filename";
314 $msg = __METHOD__ .
': unexpected error while establishing'
315 .
' a database connection with message: '
316 .
$status->getMessage()->plain();
329 throw new MWException( __METHOD__ .
': unexpected DB connection error' );
332 \MediaWiki\MediaWikiServices::resetGlobalInstance();
333 $services = \MediaWiki\MediaWikiServices::getInstance();
336 $services->redefineService(
'DBLoadBalancerFactory',
function()
use ( $connection ) {
352 ob_start( [ $this,
'outputHandler' ] );
357 echo
"\nAn error occurred:\n";
361 echo
"\nAn error occurred:\n";
362 echo $e->getMessage();
410 return extension_loaded(
$name );
451 public function getVar( $var, $default = null ) {
454 if ( isset( $defaults[$var] ) ) {
455 $default = $defaults[$var];
456 } elseif ( isset( $internal[$var] ) ) {
457 $default = $internal[$var];
460 return $this->parent->getVar( $var, $default );
488 return $this->parent->getTextBox( [
492 'controlName' =>
$name,
515 return $this->parent->getPasswordBox( [
519 'controlName' =>
$name,
538 return $this->parent->getCheckBox( [
542 'controlName' =>
$name,
564 return $this->parent->getRadioSet(
$params );
575 return $this->parent->setVarsFromRequest( $varNames, $this->
getName() .
'_' );
594 if ( !$this->db->selectDB( $this->getVar(
'wgDBname' ) ) ) {
598 return $this->db->tableExists(
'cur', __METHOD__ ) ||
599 $this->db->tableExists(
'revision', __METHOD__ );
612 'config-db-username',
614 $this->parent->getHelpBox(
'config-db-install-username' )
618 'config-db-password',
620 $this->parent->getHelpBox(
'config-db-install-password' )
643 $wrapperStyle = $this->
getVar(
'_SameAccount' ) ?
'display: none' :
'';
647 '_SameAccount',
'config-db-web-account-same',
648 [
'class' =>
'hideShowRadio',
'rel' =>
'dbOtherAccount' ]
650 Html::openElement(
'div', [
'id' =>
'dbOtherAccount',
'style' => $wrapperStyle ] ) .
651 $this->
getTextBox(
'wgDBuser',
'config-db-username' ) .
653 $this->parent->getHelpBox(
'config-db-web-help' );
654 if ( $noCreateMsg ) {
657 $s .= $this->
getCheckBox(
'_CreateDBAccount',
'config-db-web-create' );
671 [
'wgDBuser',
'wgDBpassword',
'_SameAccount',
'_CreateDBAccount' ]
674 if ( $this->
getVar(
'_SameAccount' ) ) {
675 $this->
setVar(
'wgDBuser', $this->
getVar(
'_InstallUser' ) );
676 $this->
setVar(
'wgDBpassword', $this->
getVar(
'_InstallPassword' ) );
679 if ( $this->
getVar(
'_CreateDBAccount' ) && strval( $this->
getVar(
'wgDBpassword' ) ) ==
'' ) {
696 $this->db->selectDB( $this->
getVar(
'wgDBname' ) );
698 if ( $this->db->selectRow(
'interwiki',
'*', [], __METHOD__ ) ) {
699 $status->warning(
'config-install-interwiki-exists' );
704 MediaWiki\suppressWarnings();
705 $rows =
file(
"$IP/maintenance/interwiki.list",
706 FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES );
707 MediaWiki\restoreWarnings();
712 foreach ( $rows
as $row ) {
713 $row = preg_replace(
'/^\s*([^#]*?)\s*(#.*)?$/',
'\\1', $row );
718 $interwikis[] = array_combine(
719 [
'iw_prefix',
'iw_url',
'iw_local',
'iw_api',
'iw_wikiid' ],
723 $this->db->insert(
'interwiki', $interwikis, __METHOD__ );
729 return htmlspecialchars( $string );
static closeElement($element)
Returns "$element>".
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 noclasses & $ret
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static newFatal($message)
Factory function for fatal errors.
preUpgrade()
Allow DB installers a chance to make checks before upgrade.
preInstall()
Allow DB installers a chance to make last-minute changes before installation occurs.
__construct($parent)
Construct and initialise parent.
needsUpgrade()
Determine whether an existing installation of MediaWiki is present in the configured administrative c...
submitSettingsForm()
Set variables based on the request array, assuming it was submitted via the form return by getSetting...
getLocalSettings()
Get the DBMS-specific options for LocalSettings.php generation.
array $globalNames
Array of MW configuration globals this class uses.
static newFromConnection(IDatabase $db, array $params=[])
doUpgrade()
Perform database upgrades.
getVar($var, $default=null)
Get a variable, taking local defaults into account.
when a variable name is used in a it is silently declared as a new local masking the global
createTables()
Create database tables from scratch.
static newForDB(Database $db, $shared=false, $maintenance=null)
getType()
Get the type of the DBMS, as it appears in $wgDBtype.
getConnection()
Connect to the database using the administrative user/password currently defined in the session...
stepApplySourceFile($sourceFileMethod, $stepName, $archiveTableMustNotExist=false)
Apply a SQL source file to the database as part of running an installation step.
getSchemaVars()
Override this to provide DBMS-specific schema variables, to be substituted into tables.sql and other schema files.
checkPrerequisites()
Checks for installation prerequisites other than those checked by isCompiled()
static openElement($element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
submitWebUserBox()
Submit the form from getWebUserBox().
getName()
Return the internal name, e.g.
We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
setupSchemaVars()
Set appropriate schema variables in the current database connection.
getUpdateKeysPath($db)
Return a path to the DBMS-specific update key file, otherwise default to update-keys.sql.
getConnectForm()
Get HTML for a web form that configures this database.
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 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 unsetoffset-wrap String Wrap the message in html(usually something like"<
getReadableName()
Get the internationalised name for this DBMS.
createExtensionTables()
Create the tables for each extension the user enabled.
getInternalDefaults()
Get a name=>value map of internal variables used during installation.
getWebUserBox($noCreateMsg=false)
Get a standard web-user fieldset.
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 noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
getGlobalDefaults()
Get a name=>value map of MW configuration globals for the default values.
static newGood($value=null)
Factory function for good results.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
submitConnectForm()
Set variables based on the request array, assuming it was submitted via the form returned by getConne...
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
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
submitInstallUserBox()
Submit a standard install user fieldset.
getPasswordBox($var, $label, $attribs=[], $helpData="")
Get a labelled password box to configure a local variable.
setVarsFromRequest($varNames)
Convenience function to set variables based on form data.
getInstallUserBox()
Get a standard install-user fieldset.
getText()
Get the text to display when reporting the error on the command line.
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
Database $db
The database connection.
setupDatabase()
Create the database and return a Status object indicating success or failure.
static checkExtension($name)
Convenience function.
getTextBox($var, $label, $attribs=[], $helpData="")
Get a labelled text box to configure a local variable.
Base class for DBMS-specific installation helper classes.
getCheckBox($var, $label, $attribs=[], $helpData="")
Get a labelled checkbox to configure a local boolean variable.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
openConnection()
Open a connection to the database using the administrative user/password currently defined in the ses...
setVar($name, $value)
Convenience alias for $this->parent->setVar()
getSqlFilePath($db, $filename)
Return a path to the DBMS-specific SQL file if it exists, otherwise default SQL file.
insertUpdateKeys()
Insert update keys into table to prevent running unneded updates.
populateInterwikiTable()
Common function for databases that don't understand the MySQLish syntax of interwiki.sql.
getSchemaPath($db)
Return a path to the DBMS-specific schema file, otherwise default to tables.sql.
WebInstaller $parent
The Installer object.
getGlobalNames()
Get an array of MW configuration globals that will be configured by this class.
getRadioSet($params)
Get a set of labelled radio buttons.
getSettingsForm()
Get HTML for a web form that retrieves settings used for installation.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
enableLB()
Set up LBFactory so that wfGetDB() etc.
array $internalDefaults
Internal variables for installation.
Allows to change the fields on the form that will be generated $name