MediaWiki  1.29.2
CliInstaller.php
Go to the documentation of this file.
1 <?php
30 class CliInstaller extends Installer {
31  private $specifiedScriptPath = false;
32 
33  private $optionMap = [
34  'dbtype' => 'wgDBtype',
35  'dbserver' => 'wgDBserver',
36  'dbname' => 'wgDBname',
37  'dbuser' => 'wgDBuser',
38  'dbpass' => 'wgDBpassword',
39  'dbprefix' => 'wgDBprefix',
40  'dbtableoptions' => 'wgDBTableOptions',
41  'dbmysql5' => 'wgDBmysql5',
42  'dbport' => 'wgDBport',
43  'dbschema' => 'wgDBmwschema',
44  'dbpath' => 'wgSQLiteDataDir',
45  'server' => 'wgServer',
46  'scriptpath' => 'wgScriptPath',
47  ];
48 
56  function __construct( $siteName, $admin = null, array $option = [] ) {
58 
59  parent::__construct();
60 
61  if ( isset( $option['scriptpath'] ) ) {
62  $this->specifiedScriptPath = true;
63  }
64 
65  foreach ( $this->optionMap as $opt => $global ) {
66  if ( isset( $option[$opt] ) ) {
67  $GLOBALS[$global] = $option[$opt];
68  $this->setVar( $global, $option[$opt] );
69  }
70  }
71 
72  if ( isset( $option['lang'] ) ) {
74  $this->setVar( '_UserLang', $option['lang'] );
75  $wgContLang = Language::factory( $option['lang'] );
76  $wgLang = Language::factory( $option['lang'] );
77  $wgLanguageCode = $option['lang'];
78  RequestContext::getMain()->setLanguage( $wgLang );
79  }
80 
81  $this->setVar( 'wgSitename', $siteName );
82 
83  $metaNS = $wgContLang->ucfirst( str_replace( ' ', '_', $siteName ) );
84  if ( $metaNS == 'MediaWiki' ) {
85  $metaNS = 'Project';
86  }
87  $this->setVar( 'wgMetaNamespace', $metaNS );
88 
89  if ( $admin ) {
90  $this->setVar( '_AdminName', $admin );
91  }
92 
93  if ( !isset( $option['installdbuser'] ) ) {
94  $this->setVar( '_InstallUser',
95  $this->getVar( 'wgDBuser' ) );
96  $this->setVar( '_InstallPassword',
97  $this->getVar( 'wgDBpassword' ) );
98  } else {
99  $this->setVar( '_InstallUser',
100  $option['installdbuser'] );
101  $this->setVar( '_InstallPassword',
102  isset( $option['installdbpass'] ) ? $option['installdbpass'] : "" );
103 
104  // Assume that if we're given the installer user, we'll create the account.
105  $this->setVar( '_CreateDBAccount', true );
106  }
107 
108  if ( isset( $option['pass'] ) ) {
109  $this->setVar( '_AdminPassword', $option['pass'] );
110  }
111 
112  // Set up the default skins
113  $skins = $this->findExtensions( 'skins' );
114  $this->setVar( '_Skins', $skins );
115 
116  if ( $skins ) {
117  $skinNames = array_map( 'strtolower', $skins );
118  $this->setVar( 'wgDefaultSkin', $this->getDefaultSkin( $skinNames ) );
119  }
120  }
121 
125  public function execute() {
127  if ( $vars ) {
128  $this->showStatusMessage(
129  Status::newFatal( "config-localsettings-cli-upgrade" )
130  );
131  }
132 
133  $this->performInstallation(
134  [ $this, 'startStage' ],
135  [ $this, 'endStage' ]
136  );
137  }
138 
144  public function writeConfigurationFile( $path ) {
146  $ls->writeFile( "$path/LocalSettings.php" );
147  }
148 
149  public function startStage( $step ) {
150  // Messages: config-install-database, config-install-tables, config-install-interwiki,
151  // config-install-stats, config-install-keys, config-install-sysop, config-install-mainpage,
152  // config-install-extensions
153  $this->showMessage( "config-install-$step" );
154  }
155 
156  public function endStage( $step, $status ) {
157  $this->showStatusMessage( $status );
158  $this->showMessage( 'config-install-step-done' );
159  }
160 
161  public function showMessage( $msg /*, ... */ ) {
162  echo $this->getMessageText( func_get_args() ) . "\n";
163  flush();
164  }
165 
166  public function showError( $msg /*, ... */ ) {
167  echo "***{$this->getMessageText( func_get_args() )}***\n";
168  flush();
169  }
170 
176  protected function getMessageText( $params ) {
177  $msg = array_shift( $params );
178 
179  $text = wfMessage( $msg, $params )->parse();
180 
181  $text = preg_replace( '/<a href="(.*?)".*?>(.*?)<\/a>/', '$2 &lt;$1&gt;', $text );
182 
183  return html_entity_decode( strip_tags( $text ), ENT_QUOTES );
184  }
185 
189  public function showHelpBox( $msg /*, ... */ ) {
190  }
191 
192  public function showStatusMessage( Status $status ) {
193  $warnings = array_merge( $status->getWarningsArray(),
194  $status->getErrorsArray() );
195 
196  if ( count( $warnings ) !== 0 ) {
197  foreach ( $warnings as $w ) {
198  call_user_func_array( [ $this, 'showMessage' ], $w );
199  }
200  }
201 
202  if ( !$status->isOK() ) {
203  echo "\n";
204  exit( 1 );
205  }
206  }
207 
208  public function envCheckPath() {
209  if ( !$this->specifiedScriptPath ) {
210  $this->showMessage( 'config-no-cli-uri', $this->getVar( "wgScriptPath" ) );
211  }
212 
213  return parent::envCheckPath();
214  }
215 
216  protected function envGetDefaultServer() {
217  return null; // Do not guess if installing from CLI
218  }
219 
220  public function dirIsExecutable( $dir, $url ) {
221  $this->showMessage( 'config-no-cli-uploads-check', $dir );
222 
223  return false;
224  }
225 }
Installer\__construct
__construct()
Constructor, always call this from child classes.
Definition: Installer.php:399
Installer\showMessage
showMessage( $msg)
UI interface for displaying a short message The parameters are like parameters to wfMessage().
$opt
$opt
Definition: postprocess-phan.php:115
captcha-old.count
count
Definition: captcha-old.py:225
Installer\showStatusMessage
showStatusMessage(Status $status)
Show a message to the installing user by using a Status object.
Installer\dirIsExecutable
dirIsExecutable( $dir, $url)
Checks if scripts located in the given directory can be executed via the given URL.
Definition: Installer.php:1257
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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:1049
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:63
$params
$params
Definition: styleTest.css.php:40
Installer\performInstallation
performInstallation( $startCB, $endCB)
Actually perform the installation.
Definition: Installer.php:1509
Installer\envGetDefaultServer
envGetDefaultServer()
Helper function to be called from envPrepServer()
php
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
Installer\setVar
setVar( $name, $value)
Set a MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:516
Status
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition: Status.php:40
Installer\showError
showError( $msg)
Same as showMessage(), but for displaying errors.
Installer\getExistingLocalSettings
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
Definition: Installer.php:574
Installer\envCheckPath
envCheckPath()
Environment check to inform user which paths we've assumed.
Definition: Installer.php:963
$wgLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition: design.txt:56
InstallerOverrides\getLocalSettingsGenerator
static getLocalSettingsGenerator(Installer $installer)
Instantiates and returns an instance of LocalSettingsGenerator or its descendant classes.
Definition: InstallerOverrides.php:50
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$vars
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
Definition: hooks.txt:2179
$GLOBALS
$GLOBALS['wgAutoloadClasses']['LocalisationUpdate']
Definition: Autoload.php:10
Installer\getVar
getVar( $name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:530
Installer\getDefaultSkin
getDefaultSkin(array $skinNames)
Returns a default value to be used for $wgDefaultSkin: normally the one set in DefaultSettings,...
Definition: Installer.php:1381
$dir
$dir
Definition: Autoload.php:8
Installer\findExtensions
findExtensions( $directory='extensions')
Finds extensions that follow the format /$directory/Name/Name.php, and returns an array containing th...
Definition: Installer.php:1344
execute
$batch execute()
$wgLanguageCode
$wgLanguageCode
Site language code.
Definition: DefaultSettings.php:2839
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:468
$path
$path
Definition: NoLocalSettings.php:26
as
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
Definition: distributors.txt:9
Installer
Base installer class.
Definition: Installer.php:43
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
wfMessage
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 unset offset - wrap String Wrap the message in html(usually something like "&lt
array
the array() calling protocol came about after MediaWiki 1.4rc1.
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56