mirror of
https://github.com/silverstripe/silverstripe-postgresql
synced 2024-10-22 17:05:45 +02:00
116 lines
3.6 KiB
PHP
116 lines
3.6 KiB
PHP
<?php
|
|
/**
|
|
* This is a helper class for the SS installer.
|
|
*
|
|
* It does all the specific checking for PostgreSQLDatabase
|
|
* to ensure that the configuration is setup correctly.
|
|
*
|
|
* @package postgresql
|
|
*/
|
|
class PostgreSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
|
|
|
/**
|
|
* Ensure that the database function pg_connect
|
|
* is available. If it is, we assume the PHP module for this
|
|
* database has been setup correctly.
|
|
*
|
|
* @param array $databaseConfig Associative array of database configuration, e.g. "server", "username" etc
|
|
* @return boolean
|
|
*/
|
|
public function requireDatabaseFunctions($databaseConfig) {
|
|
return (function_exists('pg_connect')) ? true : false;
|
|
}
|
|
|
|
/**
|
|
* Ensure that the database server exists.
|
|
* @param array $databaseConfig Associative array of db configuration, e.g. "server", "username" etc
|
|
* @return array Result - e.g. array('success' => true, 'error' => 'details of error')
|
|
*/
|
|
public function requireDatabaseServer($databaseConfig) {
|
|
$success = false;
|
|
$error = '';
|
|
$username = $databaseConfig['username'] ? $databaseConfig['username'] : '';
|
|
$password = $databaseConfig['password'] ? $databaseConfig['password'] : '';
|
|
$server = $databaseConfig['server'];
|
|
$userPart = $username ? " user=$username" : '';
|
|
$passwordPart = $password ? " password=$password" : '';
|
|
$connstring = "host=$server port=5432 {$userPart}{$passwordPart}";
|
|
|
|
$conn = @pg_connect($connstring);
|
|
if($conn) {
|
|
$success = true;
|
|
} else {
|
|
$success = false;
|
|
$error = 'PostgreSQL requires a valid username and password to determine if the server exists.';
|
|
}
|
|
|
|
return array(
|
|
'success' => $success,
|
|
'error' => $error
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Ensure a database connection is possible using credentials provided.
|
|
* @param array $databaseConfig Associative array of db configuration, e.g. "server", "username" etc
|
|
* @return array Result - e.g. array('success' => true, 'error' => 'details of error')
|
|
*/
|
|
public function requireDatabaseConnection($databaseConfig) {
|
|
$success = false;
|
|
$error = '';
|
|
$username = $databaseConfig['username'] ? $databaseConfig['username'] : '';
|
|
$password = $databaseConfig['password'] ? $databaseConfig['password'] : '';
|
|
$server = $databaseConfig['server'];
|
|
$userPart = $username ? " user=$username" : '';
|
|
$passwordPart = $password ? " password=$password" : '';
|
|
$connstring = "host=$server port=5432 {$userPart}{$passwordPart}";
|
|
|
|
$conn = @pg_connect($connstring);
|
|
if($conn) {
|
|
$success = true;
|
|
} else {
|
|
$success = false;
|
|
$error = '';
|
|
}
|
|
|
|
return array(
|
|
'success' => $success,
|
|
'connection' => $conn,
|
|
'error' => $error
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Ensure that the database connection is able to use an existing database,
|
|
* or be able to create one if it doesn't exist.
|
|
*
|
|
* Unfortunately, PostgreSQLDatabase doesn't support automatically creating databases
|
|
* at the moment, so we can only check that the chosen database exists.
|
|
*
|
|
* @param array $databaseConfig Associative array of db configuration, e.g. "server", "username" etc
|
|
* @return array Result - e.g. array('success' => true, 'alreadyExists' => 'true')
|
|
*/
|
|
public function requireDatabaseOrCreatePermissions($databaseConfig) {
|
|
$success = false;
|
|
$alreadyExists = false;
|
|
$canCreate = false;
|
|
|
|
$check = $this->requireDatabaseConnection($databaseConfig);
|
|
$conn = $check['connection'];
|
|
|
|
$result = pg_query($conn, "SELECT datname FROM pg_database WHERE datname = '$databaseConfig[database]'");
|
|
if(pg_fetch_array($result)) {
|
|
$success = true;
|
|
$alreadyExists = true;
|
|
$canCreate = true;
|
|
}
|
|
|
|
return array(
|
|
'success' => $success,
|
|
'alreadyExists' => $alreadyExists,
|
|
'canCreate' => $canCreate
|
|
);
|
|
}
|
|
|
|
}
|