Merge "Apply bidi styles to references in Parsoid styles"
[lhc/web/wiklou.git] / includes / installer / CliInstaller.php
1 <?php
2 /**
3 * Core installer command line interface.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Deployment
22 */
23
24 /**
25 * Class for the core installer command line interface.
26 *
27 * @ingroup Deployment
28 * @since 1.17
29 */
30 class CliInstaller extends Installer {
31 private $specifiedScriptPath = false;
32
33 private $optionMap = array(
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
49 /**
50 * Constructor.
51 *
52 * @param string $siteName
53 * @param string $admin
54 * @param array $option
55 */
56 function __construct( $siteName, $admin = null, array $option = array() ) {
57 global $wgContLang;
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'] ) ) {
73 global $wgLang, $wgLanguageCode;
74 $this->setVar( '_UserLang', $option['lang'] );
75 $wgContLang = Language::factory( $option['lang'] );
76 $wgLang = Language::factory( $option['lang'] );
77 $wgLanguageCode = $option['lang'];
78 }
79
80 $this->setVar( 'wgSitename', $siteName );
81
82 $metaNS = $wgContLang->ucfirst( str_replace( ' ', '_', $siteName ) );
83 if ( $metaNS == 'MediaWiki' ) {
84 $metaNS = 'Project';
85 }
86 $this->setVar( 'wgMetaNamespace', $metaNS );
87
88 if ( $admin ) {
89 $this->setVar( '_AdminName', $admin );
90 }
91
92 if ( !isset( $option['installdbuser'] ) ) {
93 $this->setVar( '_InstallUser',
94 $this->getVar( 'wgDBuser' ) );
95 $this->setVar( '_InstallPassword',
96 $this->getVar( 'wgDBpassword' ) );
97 } else {
98 $this->setVar( '_InstallUser',
99 $option['installdbuser'] );
100 $this->setVar( '_InstallPassword',
101 isset( $option['installdbpass'] ) ? $option['installdbpass'] : "" );
102
103 // Assume that if we're given the installer user, we'll create the account.
104 $this->setVar( '_CreateDBAccount', true );
105 }
106
107 if ( isset( $option['pass'] ) ) {
108 $this->setVar( '_AdminPassword', $option['pass'] );
109 }
110 }
111
112 /**
113 * Main entry point.
114 */
115 public function execute() {
116 $vars = Installer::getExistingLocalSettings();
117 if ( $vars ) {
118 $this->showStatusMessage(
119 Status::newFatal( "config-localsettings-cli-upgrade" )
120 );
121 }
122
123 $this->performInstallation(
124 array( $this, 'startStage' ),
125 array( $this, 'endStage' )
126 );
127 }
128
129 /**
130 * Write LocalSettings.php to a given path
131 *
132 * @param string $path Full path to write LocalSettings.php to
133 */
134 public function writeConfigurationFile( $path ) {
135 $ls = InstallerOverrides::getLocalSettingsGenerator( $this );
136 $ls->writeFile( "$path/LocalSettings.php" );
137 }
138
139 public function startStage( $step ) {
140 // Messages: config-install-database, config-install-tables, config-install-interwiki,
141 // config-install-stats, config-install-keys, config-install-sysop, config-install-mainpage,
142 // config-install-extensions
143 $this->showMessage( "config-install-$step" );
144 }
145
146 public function endStage( $step, $status ) {
147 $this->showStatusMessage( $status );
148 $this->showMessage( 'config-install-step-done' );
149 }
150
151 public function showMessage( $msg /*, ... */ ) {
152 echo $this->getMessageText( func_get_args() ) . "\n";
153 flush();
154 }
155
156 public function showError( $msg /*, ... */ ) {
157 echo "***{$this->getMessageText( func_get_args() )}***\n";
158 flush();
159 }
160
161 /**
162 * @param array $params
163 *
164 * @return string
165 */
166 protected function getMessageText( $params ) {
167 $msg = array_shift( $params );
168
169 $text = wfMessage( $msg, $params )->parse();
170
171 $text = preg_replace( '/<a href="(.*?)".*?>(.*?)<\/a>/', '$2 &lt;$1&gt;', $text );
172
173 return html_entity_decode( strip_tags( $text ), ENT_QUOTES );
174 }
175
176 /**
177 * Dummy
178 */
179 public function showHelpBox( $msg /*, ... */ ) {
180 }
181
182 public function showStatusMessage( Status $status ) {
183 $warnings = array_merge( $status->getWarningsArray(),
184 $status->getErrorsArray() );
185
186 if ( count( $warnings ) !== 0 ) {
187 foreach ( $warnings as $w ) {
188 call_user_func_array( array( $this, 'showMessage' ), $w );
189 }
190 }
191
192 if ( !$status->isOk() ) {
193 echo "\n";
194 exit( 1 );
195 }
196 }
197
198 public function envCheckPath() {
199 if ( !$this->specifiedScriptPath ) {
200 $this->showMessage( 'config-no-cli-uri', $this->getVar( "wgScriptPath" ) );
201 }
202
203 return parent::envCheckPath();
204 }
205
206 protected function envGetDefaultServer() {
207 return null; // Do not guess if installing from CLI
208 }
209
210 public function dirIsExecutable( $dir, $url ) {
211 $this->showMessage( 'config-no-cli-uploads-check', $dir );
212
213 return false;
214 }
215 }