MediaWiki  1.27.2
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
27 require_once dirname( __FILE__ ) . '/Maintenance.php';
28 // @codingStandardsIgnoreEnd
29 
30 define( 'MW_CONFIG_CALLBACK', 'Installer::overrideConfig' );
31 define( '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 
97  function execute() {
98  global $IP;
99 
100  $siteName = $this->getArg( 0, 'MediaWiki' ); // Will not be set if used with --env-checks
101  $adminName = $this->getArg( 1 );
102 
103  $dbpassfile = $this->getOption( 'dbpassfile' );
104  if ( $dbpassfile !== null ) {
105  if ( $this->getOption( 'dbpass' ) !== null ) {
106  $this->error( 'WARNING: You have provided the options "dbpass" and "dbpassfile". '
107  . 'The content of "dbpassfile" overrides "dbpass".' );
108  }
109  MediaWiki\suppressWarnings();
110  $dbpass = file_get_contents( $dbpassfile ); // returns false on failure
111  MediaWiki\restoreWarnings();
112  if ( $dbpass === false ) {
113  $this->error( "Couldn't open $dbpassfile", true );
114  }
115  $this->mOptions['dbpass'] = trim( $dbpass, "\r\n" );
116  }
117 
118  $passfile = $this->getOption( 'passfile' );
119  if ( $passfile !== null ) {
120  if ( $this->getOption( 'pass' ) !== null ) {
121  $this->error( 'WARNING: You have provided the options "pass" and "passfile". '
122  . 'The content of "passfile" overrides "pass".' );
123  }
124  MediaWiki\suppressWarnings();
125  $pass = file_get_contents( $passfile ); // returns false on failure
126  MediaWiki\restoreWarnings();
127  if ( $pass === false ) {
128  $this->error( "Couldn't open $passfile", true );
129  }
130  $this->mOptions['pass'] = trim( $pass, "\r\n" );
131  } elseif ( $this->getOption( 'pass' ) === null ) {
132  $this->error( 'You need to provide the option "pass" or "passfile"', true );
133  }
134 
135  $installer = InstallerOverrides::getCliInstaller( $siteName, $adminName, $this->mOptions );
136 
137  $status = $installer->doEnvironmentChecks();
138  if ( $status->isGood() ) {
139  $installer->showMessage( 'config-env-good' );
140  } else {
141  $installer->showStatusMessage( $status );
142 
143  return;
144  }
145  if ( !$this->hasOption( 'env-checks' ) ) {
146  $installer->execute();
147  $installer->writeConfigurationFile( $this->getOption( 'confpath', $IP ) );
148  }
149  }
150 
152  if ( !$this->hasOption( 'env-checks' ) ) {
153  parent::validateParamsAndArgs();
154  }
155  }
156 }
157 
158 $maintClass = 'CommandLineInstaller';
159 
160 require_once RUN_MAINTENANCE_IF_MAIN;
$IP
Definition: WebStart.php:58
addArg($arg, $description, $required=true)
Add some args that are needed.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
hasOption($name)
Checks to see if a particular param exists.
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
static getCliInstaller($siteName, $admin=null, array $options=[])
Instantiates and returns an instance of CliInstaller or its descendant classes.
Maintenance script to install and configure MediaWiki.
Definition: install.php:42
addDescription($text)
Set the description text.
getOption($name, $default=null)
Get an option, or return the default.
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:35
error($err, $die=0)
Throw an error to the user.
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:1004
getArg($argId=0, $default=null)
Get an argument.
$maintClass
Definition: install.php:158