* Added tipsy library
[lhc/web/wiklou.git] / includes / installer / DatabaseInstaller.php
1 <?php
2 /**
3 * DBMS-specific installation helper.
4 *
5 * @file
6 * @ingroup Deployment
7 */
8
9 /**
10 * Base class for DBMS-specific installation helper classes.
11 *
12 * @ingroup Deployment
13 * @since 1.17
14 */
15 abstract class DatabaseInstaller {
16
17 /**
18 * The Installer object.
19 *
20 * TODO: naming this parent is confusing, 'installer' would be clearer.
21 *
22 * @var Installer
23 */
24 public $parent;
25
26 /**
27 * The database connection.
28 *
29 * @var DatabaseBase
30 */
31 public $db;
32
33 /**
34 * Internal variables for installation.
35 *
36 * @var array
37 */
38 protected $internalDefaults = array();
39
40 /**
41 * Array of MW configuration globals this class uses.
42 *
43 * @var array
44 */
45 protected $globalNames = array();
46
47 /**
48 * Return the internal name, e.g. 'mysql', or 'sqlite'.
49 */
50 public abstract function getName();
51
52 /**
53 * @return true if the client library is compiled in.
54 */
55 public abstract function isCompiled();
56
57 /**
58 * Get HTML for a web form that configures this database. Configuration
59 * at this time should be the minimum needed to connect and test
60 * whether install or upgrade is required.
61 *
62 * If this is called, $this->parent can be assumed to be a WebInstaller.
63 */
64 public abstract function getConnectForm();
65
66 /**
67 * Set variables based on the request array, assuming it was submitted
68 * via the form returned by getConnectForm(). Validate the connection
69 * settings by attempting to connect with them.
70 *
71 * If this is called, $this->parent can be assumed to be a WebInstaller.
72 *
73 * @return Status
74 */
75 public abstract function submitConnectForm();
76
77 /**
78 * Get HTML for a web form that retrieves settings used for installation.
79 * $this->parent can be assumed to be a WebInstaller.
80 * If the DB type has no settings beyond those already configured with
81 * getConnectForm(), this should return false.
82 */
83 public function getSettingsForm() {
84 return false;
85 }
86
87 /**
88 * Set variables based on the request array, assuming it was submitted via
89 * the form return by getSettingsForm().
90 *
91 * @return Status
92 */
93 public function submitSettingsForm() {
94 return Status::newGood();
95 }
96
97 /**
98 * Connect to the database using the administrative user/password currently
99 * defined in the session. On success, return the connection, on failure,
100 * return a Status object.
101 *
102 * This may be called multiple times, so the result should be cached.
103 */
104 public abstract function getConnection();
105
106 /**
107 * Create the database and return a Status object indicating success or
108 * failure.
109 *
110 * @return Status
111 */
112 public abstract function setupDatabase();
113
114 /**
115 * Create database tables from scratch.
116 *
117 * @return Status
118 */
119 public function createTables() {
120 $status = $this->getConnection();
121 if ( !$status->isOK() ) {
122 return $status;
123 }
124 $this->db->selectDB( $this->getVar( 'wgDBname' ) );
125
126 if( $this->db->tableExists( 'user' ) ) {
127 $status->warning( 'config-install-tables-exist' );
128 return $status;
129 }
130
131 $error = $this->db->sourceFile( $this->db->getSchema() );
132 if( $error !== true ) {
133 $this->db->reportQueryError( $error, 0, $sql, __METHOD__ );
134 $status->fatal( 'config-install-tables-failed', $error );
135 }
136 return $status;
137 }
138
139 /**
140 * Get the DBMS-specific options for LocalSettings.php generation.
141 *
142 * @return String
143 */
144 public abstract function getLocalSettings();
145
146 /**
147 * Perform database upgrades
148 *
149 * @return Boolean
150 */
151 public function doUpgrade() {
152 # Maintenance scripts like wfGetDB()
153 LBFactory::enableBackend();
154
155 $ret = true;
156 ob_start( array( $this, 'outputHandler' ) );
157 try {
158 $up = DatabaseUpdater::newForDB( $this->db );
159 $up->doUpdates();
160 } catch ( MWException $e ) {
161 echo "\nAn error occured:\n";
162 echo $e->getText();
163 $ret = false;
164 }
165 ob_end_flush();
166 return $ret;
167 }
168
169 /**
170 * Allow DB installers a chance to make last-minute changes before installation
171 * occurs. This happens before setupDatabase() or createTables() is called, but
172 * long after the constructor. Helpful for things like modifying setup steps :)
173 */
174 public function preInstall() {
175
176 }
177
178 /**
179 * Allow DB installers a chance to make checks before upgrade.
180 */
181 public function preUpgrade() {
182
183 }
184
185 /**
186 * Get an array of MW configuration globals that will be configured by this class.
187 */
188 public function getGlobalNames() {
189 return $this->globalNames;
190 }
191
192 /**
193 * Return any table options to be applied to all tables that don't
194 * override them.
195 *
196 * @return Array
197 */
198 public function getTableOptions() {
199 return array();
200 }
201
202 /**
203 * Construct and initialise parent.
204 * This is typically only called from Installer::getDBInstaller()
205 */
206 public function __construct( $parent ) {
207 $this->parent = $parent;
208 }
209
210 /**
211 * Convenience function.
212 * Check if a named extension is present.
213 *
214 * @see wfDl
215 */
216 protected static function checkExtension( $name ) {
217 wfSuppressWarnings();
218 $compiled = wfDl( $name );
219 wfRestoreWarnings();
220 return $compiled;
221 }
222
223 /**
224 * Get the internationalised name for this DBMS.
225 */
226 public function getReadableName() {
227 return wfMsg( 'config-type-' . $this->getName() );
228 }
229
230 /**
231 * Get a name=>value map of MW configuration globals that overrides.
232 * DefaultSettings.php
233 */
234 public function getGlobalDefaults() {
235 return array();
236 }
237
238 /**
239 * Get a name=>value map of internal variables used during installation.
240 */
241 public function getInternalDefaults() {
242 return $this->internalDefaults;
243 }
244
245 /**
246 * Get a variable, taking local defaults into account.
247 */
248 public function getVar( $var, $default = null ) {
249 $defaults = $this->getGlobalDefaults();
250 $internal = $this->getInternalDefaults();
251 if ( isset( $defaults[$var] ) ) {
252 $default = $defaults[$var];
253 } elseif ( isset( $internal[$var] ) ) {
254 $default = $internal[$var];
255 }
256 return $this->parent->getVar( $var, $default );
257 }
258
259 /**
260 * Convenience alias for $this->parent->setVar()
261 */
262 public function setVar( $name, $value ) {
263 $this->parent->setVar( $name, $value );
264 }
265
266 /**
267 * Get a labelled text box to configure a local variable.
268 */
269 public function getTextBox( $var, $label, $attribs = array(), $helpData = "" ) {
270 $name = $this->getName() . '_' . $var;
271 $value = $this->getVar( $var );
272 if ( !isset( $attribs ) ) {
273 $attribs = array();
274 }
275 return $this->parent->getTextBox( array(
276 'var' => $var,
277 'label' => $label,
278 'attribs' => $attribs,
279 'controlName' => $name,
280 'value' => $value,
281 'help' => $helpData
282 ) );
283 }
284
285 /**
286 * Get a labelled password box to configure a local variable.
287 * Implements password hiding.
288 */
289 public function getPasswordBox( $var, $label, $attribs = array(), $helpData = "" ) {
290 $name = $this->getName() . '_' . $var;
291 $value = $this->getVar( $var );
292 if ( !isset( $attribs ) ) {
293 $attribs = array();
294 }
295 return $this->parent->getPasswordBox( array(
296 'var' => $var,
297 'label' => $label,
298 'attribs' => $attribs,
299 'controlName' => $name,
300 'value' => $value,
301 'help' => $helpData
302 ) );
303 }
304
305 /**
306 * Get a labelled checkbox to configure a local boolean variable.
307 */
308 public function getCheckBox( $var, $label, $attribs = array(), $helpData = "" ) {
309 $name = $this->getName() . '_' . $var;
310 $value = $this->getVar( $var );
311 return $this->parent->getCheckBox( array(
312 'var' => $var,
313 'label' => $label,
314 'attribs' => $attribs,
315 'controlName' => $name,
316 'value' => $value,
317 'help' => $helpData
318 ));
319 }
320
321 /**
322 * Get a set of labelled radio buttons.
323 *
324 * @param $params Array:
325 * Parameters are:
326 * var: The variable to be configured (required)
327 * label: The message name for the label (required)
328 * itemLabelPrefix: The message name prefix for the item labels (required)
329 * values: List of allowed values (required)
330 * itemAttribs Array of attribute arrays, outer key is the value name (optional)
331 *
332 */
333 public function getRadioSet( $params ) {
334 $params['controlName'] = $this->getName() . '_' . $params['var'];
335 $params['value'] = $this->getVar( $params['var'] );
336 return $this->parent->getRadioSet( $params );
337 }
338
339 /**
340 * Convenience function to set variables based on form data.
341 * Assumes that variables containing "password" in the name are (potentially
342 * fake) passwords.
343 * @param $varNames Array
344 */
345 public function setVarsFromRequest( $varNames ) {
346 return $this->parent->setVarsFromRequest( $varNames, $this->getName() . '_' );
347 }
348
349 /**
350 * Determine whether an existing installation of MediaWiki is present in
351 * the configured administrative connection. Returns true if there is
352 * such a wiki, false if the database doesn't exist.
353 *
354 * Traditionally, this is done by testing for the existence of either
355 * the revision table or the cur table.
356 *
357 * @return Boolean
358 */
359 public function needsUpgrade() {
360 $status = $this->getConnection();
361 if ( !$status->isOK() ) {
362 return false;
363 }
364
365 if ( !$this->db->selectDB( $this->getVar( 'wgDBname' ) ) ) {
366 return false;
367 }
368 return $this->db->tableExists( 'cur' ) || $this->db->tableExists( 'revision' );
369 }
370
371 /**
372 * Get a standard install-user fieldset.
373 */
374 public function getInstallUserBox() {
375 return
376 Xml::openElement( 'fieldset' ) .
377 Xml::element( 'legend', array(), wfMsg( 'config-db-install-account' ) ) .
378 $this->getTextBox( '_InstallUser', 'config-db-username', array(), $this->parent->getHelpBox( 'config-db-install-username' ) ) .
379 $this->getPasswordBox( '_InstallPassword', 'config-db-password', array(), $this->parent->getHelpBox( 'config-db-install-password' ) ) .
380 Xml::closeElement( 'fieldset' );
381 }
382
383 /**
384 * Submit a standard install user fieldset.
385 */
386 public function submitInstallUserBox() {
387 $this->setVarsFromRequest( array( '_InstallUser', '_InstallPassword' ) );
388 return Status::newGood();
389 }
390
391 /**
392 * Get a standard web-user fieldset
393 * @param $noCreateMsg String: Message to display instead of the creation checkbox.
394 * Set this to false to show a creation checkbox.
395 */
396 public function getWebUserBox( $noCreateMsg = false ) {
397 $name = $this->getName();
398 $s = Xml::openElement( 'fieldset' ) .
399 Xml::element( 'legend', array(), wfMsg( 'config-db-web-account' ) ) .
400 $this->getCheckBox(
401 '_SameAccount', 'config-db-web-account-same',
402 array( 'class' => 'hideShowRadio', 'rel' => 'dbOtherAccount' )
403 ) .
404 Xml::openElement( 'div', array( 'id' => 'dbOtherAccount', 'style' => 'display: none;' ) ) .
405 $this->getTextBox( 'wgDBuser', 'config-db-username' ) .
406 $this->getPasswordBox( 'wgDBpassword', 'config-db-password' ) .
407 $this->parent->getHelpBox( 'config-db-web-help' );
408 if ( $noCreateMsg ) {
409 $s .= $this->parent->getWarningBox( wfMsgNoTrans( $noCreateMsg ) );
410 } else {
411 $s .= $this->getCheckBox( '_CreateDBAccount', 'config-db-web-create' );
412 }
413 $s .= Xml::closeElement( 'div' ) . Xml::closeElement( 'fieldset' );
414 return $s;
415 }
416
417 /**
418 * Submit the form from getWebUserBox().
419 *
420 * @return Status
421 */
422 public function submitWebUserBox() {
423 $this->setVarsFromRequest(
424 array( 'wgDBuser', 'wgDBpassword', '_SameAccount', '_CreateDBAccount' )
425 );
426
427 if ( $this->getVar( '_SameAccount' ) ) {
428 $this->setVar( 'wgDBuser', $this->getVar( '_InstallUser' ) );
429 $this->setVar( 'wgDBpassword', $this->getVar( '_InstallPassword' ) );
430 }
431
432 return Status::newGood();
433 }
434
435 /**
436 * Common function for databases that don't understand the MySQLish syntax of interwiki.sql.
437 */
438 public function populateInterwikiTable() {
439 $status = $this->getConnection();
440 if ( !$status->isOK() ) {
441 return $status;
442 }
443 $this->db->selectDB( $this->getVar( 'wgDBname' ) );
444
445 if( $this->db->selectRow( 'interwiki', '*', array(), __METHOD__ ) ) {
446 $status->warning( 'config-install-interwiki-exists' );
447 return $status;
448 }
449 global $IP;
450 $rows = file( "$IP/maintenance/interwiki.list",
451 FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES );
452 $interwikis = array();
453 if ( !$rows ) {
454 return Status::newFatal( 'config-install-interwiki-sql' );
455 }
456 foreach( $rows as $row ) {
457 $row = preg_replace( '/^\s*([^#]*?)\s*(#.*)?$/', '\\1', $row ); // strip comments - whee
458 if ( $row == "" ) continue;
459 $row .= "||";
460 $interwikis[] = array_combine(
461 array( 'iw_prefix', 'iw_url', 'iw_local', 'iw_api', 'iw_wikiid' ),
462 explode( '|', $row )
463 );
464 }
465 $this->db->insert( 'interwiki', $interwikis, __METHOD__ );
466 return Status::newGood();
467 }
468
469 public function outputHandler( $string ) {
470 return htmlspecialchars( $string );
471 }
472 }