MediaWiki REL1_27
install.php
Go to the documentation of this file.
1<?php
24// Checking for old versions of PHP is done in Maintenance.php
25// We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+
26// @codingStandardsIgnoreStart MediaWiki.Usage.DirUsage.FunctionFound
27require_once dirname( __FILE__ ) . '/Maintenance.php';
28// @codingStandardsIgnoreEnd
29
30define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' );
31define( 'MEDIAWIKI_INSTALL', true );
32
43 function __construct() {
44 parent::__construct();
45 global $IP;
46
47 $this->addDescription( "CLI-based MediaWiki installation and configuration.\n" .
48 "Default options are indicated in parentheses." );
49
50 $this->addArg( 'name', 'The name of the wiki (MediaWiki)', false );
51
52 $this->addArg( 'admin', 'The username of the wiki administrator.' );
53 $this->addOption( 'pass', 'The password for the wiki administrator.', false, true );
54 $this->addOption(
55 'passfile',
56 'An alternative way to provide pass option, as the contents of this file',
57 false,
58 true
59 );
60 /* $this->addOption( 'email', 'The email for the wiki administrator', false, true ); */
61 $this->addOption(
62 'scriptpath',
63 'The relative path of the wiki in the web server (/wiki)',
64 false,
65 true
66 );
67
68 $this->addOption( 'lang', 'The language to use (en)', false, true );
69 /* $this->addOption( 'cont-lang', 'The content language (en)', false, true ); */
70
71 $this->addOption( 'dbtype', 'The type of database (mysql)', false, true );
72 $this->addOption( 'dbserver', 'The database host (localhost)', false, true );
73 $this->addOption( 'dbport', 'The database port; only for PostgreSQL (5432)', false, true );
74 $this->addOption( 'dbname', 'The database name (my_wiki)', false, true );
75 $this->addOption( 'dbpath', 'The path for the SQLite DB ($IP/data)', false, true );
76 $this->addOption( 'dbprefix', 'Optional database table name prefix', false, true );
77 $this->addOption( 'installdbuser', 'The user to use for installing (root)', false, true );
78 $this->addOption( 'installdbpass', 'The password for the DB user to install as.', false, true );
79 $this->addOption( 'dbuser', 'The user to use for normal operations (wikiuser)', false, true );
80 $this->addOption( 'dbpass', 'The password for the DB user for normal operations', false, true );
81 $this->addOption(
82 'dbpassfile',
83 'An alternative way to provide dbpass option, as the contents of this file',
84 false,
85 true
86 );
87 $this->addOption( 'confpath', "Path to write LocalSettings.php to ($IP)", false, true );
88 $this->addOption( 'dbschema', 'The schema for the MediaWiki DB in '
89 . 'PostgreSQL/Microsoft SQL Server (mediawiki)', false, true );
90 /*
91 $this->addOption( 'namespace', 'The project namespace (same as the "name" argument)',
92 false, true );
93 */
94 $this->addOption( 'env-checks', "Run environment checks only, don't change anything" );
95
96 $this->addOption( 'with-extensions', "Detect and include extensions" );
97 }
98
99 function execute() {
100 global $IP;
101
102 $siteName = $this->getArg( 0, 'MediaWiki' ); // Will not be set if used with --env-checks
103 $adminName = $this->getArg( 1 );
104
105 $dbpassfile = $this->getOption( 'dbpassfile' );
106 if ( $dbpassfile !== null ) {
107 if ( $this->getOption( 'dbpass' ) !== null ) {
108 $this->error( 'WARNING: You have provided the options "dbpass" and "dbpassfile". '
109 . 'The content of "dbpassfile" overrides "dbpass".' );
110 }
111 MediaWiki\suppressWarnings();
112 $dbpass = file_get_contents( $dbpassfile ); // returns false on failure
113 MediaWiki\restoreWarnings();
114 if ( $dbpass === false ) {
115 $this->error( "Couldn't open $dbpassfile", true );
116 }
117 $this->mOptions['dbpass'] = trim( $dbpass, "\r\n" );
118 }
119
120 $passfile = $this->getOption( 'passfile' );
121 if ( $passfile !== null ) {
122 if ( $this->getOption( 'pass' ) !== null ) {
123 $this->error( 'WARNING: You have provided the options "pass" and "passfile". '
124 . 'The content of "passfile" overrides "pass".' );
125 }
126 MediaWiki\suppressWarnings();
127 $pass = file_get_contents( $passfile ); // returns false on failure
128 MediaWiki\restoreWarnings();
129 if ( $pass === false ) {
130 $this->error( "Couldn't open $passfile", true );
131 }
132 $this->mOptions['pass'] = trim( $pass, "\r\n" );
133 } elseif ( $this->getOption( 'pass' ) === null ) {
134 $this->error( 'You need to provide the option "pass" or "passfile"', true );
135 }
136
137 $installer = InstallerOverrides::getCliInstaller( $siteName, $adminName, $this->mOptions );
138
139 $status = $installer->doEnvironmentChecks();
140 if ( $status->isGood() ) {
141 $installer->showMessage( 'config-env-good' );
142 } else {
143 $installer->showStatusMessage( $status );
144
145 return;
146 }
147 if ( !$this->hasOption( 'env-checks' ) ) {
148 $installer->execute();
149 $installer->writeConfigurationFile( $this->getOption( 'confpath', $IP ) );
150 }
151 }
152
154 if ( !$this->hasOption( 'env-checks' ) ) {
155 parent::validateParamsAndArgs();
156 }
157 }
158}
159
160$maintClass = 'CommandLineInstaller';
161
162require_once RUN_MAINTENANCE_IF_MAIN;
$IP
Definition WebStart.php:58
Maintenance script to install and configure MediaWiki.
Definition install.php:42
validateParamsAndArgs()
Run some validation checks on the params, etc.
Definition install.php:153
execute()
Do the actual work.
Definition install.php:99
__construct()
Default constructor.
Definition install.php:43
static getCliInstaller( $siteName, $admin=null, array $options=[])
Instantiates and returns an instance of CliInstaller or its descendant classes.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
addArg( $arg, $description, $required=true)
Add some args that are needed.
hasOption( $name)
Checks to see if a particular param exists.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
Definition hooks.txt:1007
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
$maintClass
Definition install.php:160
require_once RUN_MAINTENANCE_IF_MAIN