Merge "Article: Add RL modules for the ParserOutput when showing CSS/JS page"
[lhc/web/wiklou.git] / includes / installer / PostgresInstaller.php
1 <?php
2 /**
3 * PostgreSQL-specific installer.
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 setting up the MediaWiki database using Postgres.
26 *
27 * @ingroup Deployment
28 * @since 1.17
29 */
30 class PostgresInstaller extends DatabaseInstaller {
31
32 protected $globalNames = array(
33 'wgDBserver',
34 'wgDBport',
35 'wgDBname',
36 'wgDBuser',
37 'wgDBpassword',
38 'wgDBmwschema',
39 );
40
41 protected $internalDefaults = array(
42 '_InstallUser' => 'postgres',
43 );
44
45 public $minimumVersion = '8.3';
46 public $maxRoleSearchDepth = 5;
47
48 protected $pgConns = array();
49
50 function getName() {
51 return 'postgres';
52 }
53
54 public function isCompiled() {
55 return self::checkExtension( 'pgsql' );
56 }
57
58 function getConnectForm() {
59 return $this->getTextBox(
60 'wgDBserver',
61 'config-db-host',
62 array(),
63 $this->parent->getHelpBox( 'config-db-host-help' )
64 ) .
65 $this->getTextBox( 'wgDBport', 'config-db-port' ) .
66 Html::openElement( 'fieldset' ) .
67 Html::element( 'legend', array(), wfMessage( 'config-db-wiki-settings' )->text() ) .
68 $this->getTextBox(
69 'wgDBname',
70 'config-db-name',
71 array(),
72 $this->parent->getHelpBox( 'config-db-name-help' )
73 ) .
74 $this->getTextBox(
75 'wgDBmwschema',
76 'config-db-schema',
77 array(),
78 $this->parent->getHelpBox( 'config-db-schema-help' )
79 ) .
80 Html::closeElement( 'fieldset' ) .
81 $this->getInstallUserBox();
82 }
83
84 function submitConnectForm() {
85 // Get variables from the request
86 $newValues = $this->setVarsFromRequest( array(
87 'wgDBserver', 'wgDBport','wgDBname', 'wgDBmwschema',
88 '_InstallUser', '_InstallPassword'
89 ) );
90
91 // Validate them
92 $status = Status::newGood();
93 if ( !strlen( $newValues['wgDBname'] ) ) {
94 $status->fatal( 'config-missing-db-name' );
95 } elseif ( !preg_match( '/^[a-zA-Z0-9_]+$/', $newValues['wgDBname'] ) ) {
96 $status->fatal( 'config-invalid-db-name', $newValues['wgDBname'] );
97 }
98 if ( !preg_match( '/^[a-zA-Z0-9_]*$/', $newValues['wgDBmwschema'] ) ) {
99 $status->fatal( 'config-invalid-schema', $newValues['wgDBmwschema'] );
100 }
101 if ( !strlen( $newValues['_InstallUser'] ) ) {
102 $status->fatal( 'config-db-username-empty' );
103 }
104 if ( !strlen( $newValues['_InstallPassword'] ) ) {
105 $status->fatal( 'config-db-password-empty', $newValues['_InstallUser'] );
106 }
107
108 // Submit user box
109 if ( $status->isOK() ) {
110 $status->merge( $this->submitInstallUserBox() );
111 }
112 if ( !$status->isOK() ) {
113 return $status;
114 }
115
116 $status = $this->getPgConnection( 'create-db' );
117 if ( !$status->isOK() ) {
118 return $status;
119 }
120 /**
121 * @var $conn DatabaseBase
122 */
123 $conn = $status->value;
124
125 // Check version
126 $version = $conn->getServerVersion();
127 if ( version_compare( $version, $this->minimumVersion ) < 0 ) {
128 return Status::newFatal( 'config-postgres-old', $this->minimumVersion, $version );
129 }
130
131 $this->setVar( 'wgDBuser', $this->getVar( '_InstallUser' ) );
132 $this->setVar( 'wgDBpassword', $this->getVar( '_InstallPassword' ) );
133
134 return Status::newGood();
135 }
136
137 public function getConnection() {
138 $status = $this->getPgConnection( 'create-tables' );
139 if ( $status->isOK() ) {
140 $this->db = $status->value;
141 }
142
143 return $status;
144 }
145
146 public function openConnection() {
147 return $this->openPgConnection( 'create-tables' );
148 }
149
150 /**
151 * Open a PG connection with given parameters
152 * @param string $user User name
153 * @param string $password Password
154 * @param string $dbName Database name
155 * @return Status
156 */
157 protected function openConnectionWithParams( $user, $password, $dbName ) {
158 $status = Status::newGood();
159 try {
160 $db = new DatabasePostgres(
161 $this->getVar( 'wgDBserver' ),
162 $user,
163 $password,
164 $dbName
165 );
166 $status->value = $db;
167 } catch ( DBConnectionError $e ) {
168 $status->fatal( 'config-connection-error', $e->getMessage() );
169 }
170
171 return $status;
172 }
173
174 /**
175 * Get a special type of connection
176 * @param string $type See openPgConnection() for details.
177 * @return Status
178 */
179 protected function getPgConnection( $type ) {
180 if ( isset( $this->pgConns[$type] ) ) {
181 return Status::newGood( $this->pgConns[$type] );
182 }
183 $status = $this->openPgConnection( $type );
184
185 if ( $status->isOK() ) {
186 /**
187 * @var $conn DatabaseBase
188 */
189 $conn = $status->value;
190 $conn->clearFlag( DBO_TRX );
191 $conn->commit( __METHOD__ );
192 $this->pgConns[$type] = $conn;
193 }
194
195 return $status;
196 }
197
198 /**
199 * Get a connection of a specific PostgreSQL-specific type. Connections
200 * of a given type are cached.
201 *
202 * PostgreSQL lacks cross-database operations, so after the new database is
203 * created, you need to make a separate connection to connect to that
204 * database and add tables to it.
205 *
206 * New tables are owned by the user that creates them, and MediaWiki's
207 * PostgreSQL support has always assumed that the table owner will be
208 * $wgDBuser. So before we create new tables, we either need to either
209 * connect as the other user or to execute a SET ROLE command. Using a
210 * separate connection for this allows us to avoid accidental cross-module
211 * dependencies.
212 *
213 * @param string $type The type of connection to get:
214 * - create-db: A connection for creating DBs, suitable for pre-
215 * installation.
216 * - create-schema: A connection to the new DB, for creating schemas and
217 * other similar objects in the new DB.
218 * - create-tables: A connection with a role suitable for creating tables.
219 *
220 * @throws MWException
221 * @return Status On success, a connection object will be in the value member.
222 */
223 protected function openPgConnection( $type ) {
224 switch ( $type ) {
225 case 'create-db':
226 return $this->openConnectionToAnyDB(
227 $this->getVar( '_InstallUser' ),
228 $this->getVar( '_InstallPassword' ) );
229 case 'create-schema':
230 return $this->openConnectionWithParams(
231 $this->getVar( '_InstallUser' ),
232 $this->getVar( '_InstallPassword' ),
233 $this->getVar( 'wgDBname' ) );
234 case 'create-tables':
235 $status = $this->openPgConnection( 'create-schema' );
236 if ( $status->isOK() ) {
237 /**
238 * @var $conn DatabaseBase
239 */
240 $conn = $status->value;
241 $safeRole = $conn->addIdentifierQuotes( $this->getVar( 'wgDBuser' ) );
242 $conn->query( "SET ROLE $safeRole" );
243 }
244
245 return $status;
246 default:
247 throw new MWException( "Invalid special connection type: \"$type\"" );
248 }
249 }
250
251 public function openConnectionToAnyDB( $user, $password ) {
252 $dbs = array(
253 'template1',
254 'postgres',
255 );
256 if ( !in_array( $this->getVar( 'wgDBname' ), $dbs ) ) {
257 array_unshift( $dbs, $this->getVar( 'wgDBname' ) );
258 }
259 $conn = false;
260 $status = Status::newGood();
261 foreach ( $dbs as $db ) {
262 try {
263 $conn = new DatabasePostgres(
264 $this->getVar( 'wgDBserver' ),
265 $user,
266 $password,
267 $db );
268 } catch ( DBConnectionError $error ) {
269 $conn = false;
270 $status->fatal( 'config-pg-test-error', $db,
271 $error->getMessage() );
272 }
273 if ( $conn !== false ) {
274 break;
275 }
276 }
277 if ( $conn !== false ) {
278 return Status::newGood( $conn );
279 } else {
280 return $status;
281 }
282 }
283
284 protected function getInstallUserPermissions() {
285 $status = $this->getPgConnection( 'create-db' );
286 if ( !$status->isOK() ) {
287 return false;
288 }
289 /**
290 * @var $conn DatabaseBase
291 */
292 $conn = $status->value;
293 $superuser = $this->getVar( '_InstallUser' );
294
295 $row = $conn->selectRow( '"pg_catalog"."pg_roles"', '*',
296 array( 'rolname' => $superuser ), __METHOD__ );
297
298 return $row;
299 }
300
301 protected function canCreateAccounts() {
302 $perms = $this->getInstallUserPermissions();
303 if ( !$perms ) {
304 return false;
305 }
306
307 return $perms->rolsuper === 't' || $perms->rolcreaterole === 't';
308 }
309
310 protected function isSuperUser() {
311 $perms = $this->getInstallUserPermissions();
312 if ( !$perms ) {
313 return false;
314 }
315
316 return $perms->rolsuper === 't';
317 }
318
319 public function getSettingsForm() {
320 if ( $this->canCreateAccounts() ) {
321 $noCreateMsg = false;
322 } else {
323 $noCreateMsg = 'config-db-web-no-create-privs';
324 }
325 $s = $this->getWebUserBox( $noCreateMsg );
326
327 return $s;
328 }
329
330 public function submitSettingsForm() {
331 $status = $this->submitWebUserBox();
332 if ( !$status->isOK() ) {
333 return $status;
334 }
335
336 $same = $this->getVar( 'wgDBuser' ) === $this->getVar( '_InstallUser' );
337
338 if ( $same ) {
339 $exists = true;
340 } else {
341 // Check if the web user exists
342 // Connect to the database with the install user
343 $status = $this->getPgConnection( 'create-db' );
344 if ( !$status->isOK() ) {
345 return $status;
346 }
347 $exists = $status->value->roleExists( $this->getVar( 'wgDBuser' ) );
348 }
349
350 // Validate the create checkbox
351 if ( $this->canCreateAccounts() && !$same && !$exists ) {
352 $create = $this->getVar( '_CreateDBAccount' );
353 } else {
354 $this->setVar( '_CreateDBAccount', false );
355 $create = false;
356 }
357
358 if ( !$create && !$exists ) {
359 if ( $this->canCreateAccounts() ) {
360 $msg = 'config-install-user-missing-create';
361 } else {
362 $msg = 'config-install-user-missing';
363 }
364
365 return Status::newFatal( $msg, $this->getVar( 'wgDBuser' ) );
366 }
367
368 if ( !$exists ) {
369 // No more checks to do
370 return Status::newGood();
371 }
372
373 // Existing web account. Test the connection.
374 $status = $this->openConnectionToAnyDB(
375 $this->getVar( 'wgDBuser' ),
376 $this->getVar( 'wgDBpassword' ) );
377 if ( !$status->isOK() ) {
378 return $status;
379 }
380
381 // The web user is conventionally the table owner in PostgreSQL
382 // installations. Make sure the install user is able to create
383 // objects on behalf of the web user.
384 if ( $same || $this->canCreateObjectsForWebUser() ) {
385 return Status::newGood();
386 } else {
387 return Status::newFatal( 'config-pg-not-in-role' );
388 }
389 }
390
391 /**
392 * Returns true if the install user is able to create objects owned
393 * by the web user, false otherwise.
394 * @return bool
395 */
396 protected function canCreateObjectsForWebUser() {
397 if ( $this->isSuperUser() ) {
398 return true;
399 }
400
401 $status = $this->getPgConnection( 'create-db' );
402 if ( !$status->isOK() ) {
403 return false;
404 }
405 $conn = $status->value;
406 $installerId = $conn->selectField( '"pg_catalog"."pg_roles"', 'oid',
407 array( 'rolname' => $this->getVar( '_InstallUser' ) ), __METHOD__ );
408 $webId = $conn->selectField( '"pg_catalog"."pg_roles"', 'oid',
409 array( 'rolname' => $this->getVar( 'wgDBuser' ) ), __METHOD__ );
410
411 return $this->isRoleMember( $conn, $installerId, $webId, $this->maxRoleSearchDepth );
412 }
413
414 /**
415 * Recursive helper for canCreateObjectsForWebUser().
416 * @param DatabaseBase $conn
417 * @param int $targetMember Role ID of the member to look for
418 * @param int $group Role ID of the group to look for
419 * @param int $maxDepth Maximum recursive search depth
420 * @return bool
421 */
422 protected function isRoleMember( $conn, $targetMember, $group, $maxDepth ) {
423 if ( $targetMember === $group ) {
424 // A role is always a member of itself
425 return true;
426 }
427 // Get all members of the given group
428 $res = $conn->select( '"pg_catalog"."pg_auth_members"', array( 'member' ),
429 array( 'roleid' => $group ), __METHOD__ );
430 foreach ( $res as $row ) {
431 if ( $row->member == $targetMember ) {
432 // Found target member
433 return true;
434 }
435 // Recursively search each member of the group to see if the target
436 // is a member of it, up to the given maximum depth.
437 if ( $maxDepth > 0 ) {
438 if ( $this->isRoleMember( $conn, $targetMember, $row->member, $maxDepth - 1 ) ) {
439 // Found member of member
440 return true;
441 }
442 }
443 }
444
445 return false;
446 }
447
448 public function preInstall() {
449 $createDbAccount = array(
450 'name' => 'user',
451 'callback' => array( $this, 'setupUser' ),
452 );
453 $commitCB = array(
454 'name' => 'pg-commit',
455 'callback' => array( $this, 'commitChanges' ),
456 );
457 $plpgCB = array(
458 'name' => 'pg-plpgsql',
459 'callback' => array( $this, 'setupPLpgSQL' ),
460 );
461 $schemaCB = array(
462 'name' => 'schema',
463 'callback' => array( $this, 'setupSchema' )
464 );
465
466 if ( $this->getVar( '_CreateDBAccount' ) ) {
467 $this->parent->addInstallStep( $createDbAccount, 'database' );
468 }
469 $this->parent->addInstallStep( $commitCB, 'interwiki' );
470 $this->parent->addInstallStep( $plpgCB, 'database' );
471 $this->parent->addInstallStep( $schemaCB, 'database' );
472 }
473
474 function setupDatabase() {
475 $status = $this->getPgConnection( 'create-db' );
476 if ( !$status->isOK() ) {
477 return $status;
478 }
479 $conn = $status->value;
480
481 $dbName = $this->getVar( 'wgDBname' );
482
483 $exists = $conn->selectField( '"pg_catalog"."pg_database"', '1',
484 array( 'datname' => $dbName ), __METHOD__ );
485 if ( !$exists ) {
486 $safedb = $conn->addIdentifierQuotes( $dbName );
487 $conn->query( "CREATE DATABASE $safedb", __METHOD__ );
488 }
489
490 return Status::newGood();
491 }
492
493 function setupSchema() {
494 // Get a connection to the target database
495 $status = $this->getPgConnection( 'create-schema' );
496 if ( !$status->isOK() ) {
497 return $status;
498 }
499 $conn = $status->value;
500
501 // Create the schema if necessary
502 $schema = $this->getVar( 'wgDBmwschema' );
503 $safeschema = $conn->addIdentifierQuotes( $schema );
504 $safeuser = $conn->addIdentifierQuotes( $this->getVar( 'wgDBuser' ) );
505 if ( !$conn->schemaExists( $schema ) ) {
506 try {
507 $conn->query( "CREATE SCHEMA $safeschema AUTHORIZATION $safeuser" );
508 } catch ( DBQueryError $e ) {
509 return Status::newFatal( 'config-install-pg-schema-failed',
510 $this->getVar( '_InstallUser' ), $schema );
511 }
512 }
513
514 // Select the new schema in the current connection
515 $conn->determineCoreSchema( $schema );
516
517 return Status::newGood();
518 }
519
520 function commitChanges() {
521 $this->db->commit( __METHOD__ );
522
523 return Status::newGood();
524 }
525
526 function setupUser() {
527 if ( !$this->getVar( '_CreateDBAccount' ) ) {
528 return Status::newGood();
529 }
530
531 $status = $this->getPgConnection( 'create-db' );
532 if ( !$status->isOK() ) {
533 return $status;
534 }
535 $conn = $status->value;
536
537 $safeuser = $conn->addIdentifierQuotes( $this->getVar( 'wgDBuser' ) );
538 $safepass = $conn->addQuotes( $this->getVar( 'wgDBpassword' ) );
539
540 // Check if the user already exists
541 $userExists = $conn->roleExists( $this->getVar( 'wgDBuser' ) );
542 if ( !$userExists ) {
543 // Create the user
544 try {
545 $sql = "CREATE ROLE $safeuser NOCREATEDB LOGIN PASSWORD $safepass";
546
547 // If the install user is not a superuser, we need to make the install
548 // user a member of the new user's group, so that the install user will
549 // be able to create a schema and other objects on behalf of the new user.
550 if ( !$this->isSuperUser() ) {
551 $sql .= ' ROLE' . $conn->addIdentifierQuotes( $this->getVar( '_InstallUser' ) );
552 }
553
554 $conn->query( $sql, __METHOD__ );
555 } catch ( DBQueryError $e ) {
556 return Status::newFatal( 'config-install-user-create-failed',
557 $this->getVar( 'wgDBuser' ), $e->getMessage() );
558 }
559 }
560
561 return Status::newGood();
562 }
563
564 function getLocalSettings() {
565 $port = $this->getVar( 'wgDBport' );
566 $schema = $this->getVar( 'wgDBmwschema' );
567
568 return "# Postgres specific settings
569 \$wgDBport = \"{$port}\";
570 \$wgDBmwschema = \"{$schema}\";";
571 }
572
573 public function preUpgrade() {
574 global $wgDBuser, $wgDBpassword;
575
576 # Normal user and password are selected after this step, so for now
577 # just copy these two
578 $wgDBuser = $this->getVar( '_InstallUser' );
579 $wgDBpassword = $this->getVar( '_InstallPassword' );
580 }
581
582 public function createTables() {
583 $schema = $this->getVar( 'wgDBmwschema' );
584
585 $status = $this->getConnection();
586 if ( !$status->isOK() ) {
587 return $status;
588 }
589
590 /**
591 * @var $conn DatabaseBase
592 */
593 $conn = $status->value;
594
595 if ( $conn->tableExists( 'archive' ) ) {
596 $status->warning( 'config-install-tables-exist' );
597 $this->enableLB();
598
599 return $status;
600 }
601
602 $conn->begin( __METHOD__ );
603
604 if ( !$conn->schemaExists( $schema ) ) {
605 $status->fatal( 'config-install-pg-schema-not-exist' );
606
607 return $status;
608 }
609 $error = $conn->sourceFile( $conn->getSchemaPath() );
610 if ( $error !== true ) {
611 $conn->reportQueryError( $error, 0, '', __METHOD__ );
612 $conn->rollback( __METHOD__ );
613 $status->fatal( 'config-install-tables-failed', $error );
614 } else {
615 $conn->commit( __METHOD__ );
616 }
617 // Resume normal operations
618 if ( $status->isOk() ) {
619 $this->enableLB();
620 }
621
622 return $status;
623 }
624
625 public function setupPLpgSQL() {
626 // Connect as the install user, since it owns the database and so is
627 // the user that needs to run "CREATE LANGAUGE"
628 $status = $this->getPgConnection( 'create-schema' );
629 if ( !$status->isOK() ) {
630 return $status;
631 }
632 /**
633 * @var $conn DatabaseBase
634 */
635 $conn = $status->value;
636
637 $exists = $conn->selectField( '"pg_catalog"."pg_language"', 1,
638 array( 'lanname' => 'plpgsql' ), __METHOD__ );
639 if ( $exists ) {
640 // Already exists, nothing to do
641 return Status::newGood();
642 }
643
644 // plpgsql is not installed, but if we have a pg_pltemplate table, we
645 // should be able to create it
646 $exists = $conn->selectField(
647 array( '"pg_catalog"."pg_class"', '"pg_catalog"."pg_namespace"' ),
648 1,
649 array(
650 'pg_namespace.oid=relnamespace',
651 'nspname' => 'pg_catalog',
652 'relname' => 'pg_pltemplate',
653 ),
654 __METHOD__ );
655 if ( $exists ) {
656 try {
657 $conn->query( 'CREATE LANGUAGE plpgsql' );
658 } catch ( DBQueryError $e ) {
659 return Status::newFatal( 'config-pg-no-plpgsql', $this->getVar( 'wgDBname' ) );
660 }
661 } else {
662 return Status::newFatal( 'config-pg-no-plpgsql', $this->getVar( 'wgDBname' ) );
663 }
664
665 return Status::newGood();
666 }
667 }