mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-02-21 02:11:23 +01:00
* [FIX] Fix displaying install page when the app is already installed. Thanks to @kmmndr for the notice. Closes #1629 * [FIX] Fix issue when dropping DB user after an errored installation. Signed-off-by: Rubén D <nuxsmin@syspass.org>
423 lines
13 KiB
PHP
423 lines
13 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2020, Rubén Domínguez nuxsmin@$syspass.org
|
|
*
|
|
* This file is part of sysPass.
|
|
*
|
|
* sysPass is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* sysPass is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace SP\Services\Install;
|
|
|
|
use PDOException;
|
|
use SP\Config\ConfigData;
|
|
use SP\Core\Exceptions\SPException;
|
|
use SP\Storage\Database\DatabaseConnectionData;
|
|
use SP\Storage\Database\DatabaseUtil;
|
|
use SP\Storage\Database\DBStorageInterface;
|
|
use SP\Storage\Database\MySQLFileParser;
|
|
use SP\Storage\Database\MySQLHandler;
|
|
use SP\Storage\File\FileException;
|
|
use SP\Storage\File\FileHandler;
|
|
use SP\Util\PasswordUtil;
|
|
|
|
/**
|
|
* Class MySQL
|
|
*
|
|
* @package SP\Services\Install
|
|
*/
|
|
final class MySQL implements DatabaseSetupInterface
|
|
{
|
|
/**
|
|
* @var InstallData
|
|
*/
|
|
protected $installData;
|
|
/**
|
|
* @var MySQLHandler
|
|
*/
|
|
protected $mysqlHandler;
|
|
/**
|
|
* @var ConfigData
|
|
*/
|
|
protected $configData;
|
|
|
|
/**
|
|
* MySQL constructor.
|
|
*
|
|
* @param InstallData $installData
|
|
* @param ConfigData $configData
|
|
*
|
|
* @throws SPException
|
|
*/
|
|
public function __construct(InstallData $installData, ConfigData $configData)
|
|
{
|
|
$this->installData = $installData;
|
|
$this->configData = $configData;
|
|
|
|
$this->connectDatabase();
|
|
}
|
|
|
|
/**
|
|
* Conectar con la BBDD
|
|
*
|
|
* Comprobar si la conexión con la base de datos para sysPass es posible con
|
|
* los datos facilitados.
|
|
*
|
|
* @throws SPException
|
|
*/
|
|
public function connectDatabase()
|
|
{
|
|
try {
|
|
$dbc = (new DatabaseConnectionData())
|
|
->setDbHost($this->installData->getDbHost())
|
|
->setDbPort($this->installData->getDbPort())
|
|
->setDbSocket($this->installData->getDbSocket())
|
|
->setDbUser($this->installData->getDbAdminUser())
|
|
->setDbPass($this->installData->getDbAdminPass());
|
|
|
|
$this->mysqlHandler = new MySQLHandler($dbc);
|
|
$this->mysqlHandler->getConnectionSimple();
|
|
} catch (SPException $e) {
|
|
processException($e);
|
|
|
|
throw new SPException(
|
|
__u('Unable to connect to DB'),
|
|
SPException::ERROR,
|
|
$e->getHint(),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws SPException
|
|
*/
|
|
public function setupDbUser()
|
|
{
|
|
$user = substr(uniqid('sp_'), 0, 16);
|
|
$pass = PasswordUtil::randomPassword();
|
|
|
|
try {
|
|
// Comprobar si el usuario proporcionado existe
|
|
$sth = $this->mysqlHandler->getConnectionSimple()
|
|
->prepare('SELECT COUNT(*) FROM mysql.user WHERE `user` = ? AND (`host` = ? OR `host` = ?)');
|
|
|
|
$sth->execute([
|
|
$user,
|
|
$this->installData->getDbAuthHost(),
|
|
$this->installData->getDbAuthHostDns()
|
|
]);
|
|
|
|
// Si no existe el usuario, se intenta crear
|
|
if ((int)$sth->fetchColumn() === 0) {
|
|
$this->createDBUser($user, $pass);
|
|
}
|
|
} catch (PDOException $e) {
|
|
processException($e);
|
|
|
|
throw new SPException(
|
|
sprintf(__('Unable to check the sysPass user (%s)'), $user),
|
|
SPException::CRITICAL,
|
|
__u('Please, check the DB connection user rights'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
|
|
// Guardar el nuevo usuario/clave de conexión a la BD
|
|
$this->configData->setDbUser($user);
|
|
$this->configData->setDbPass($pass);
|
|
}
|
|
|
|
/**
|
|
* Crear el usuario para conectar con la base de datos.
|
|
* Esta función crea el usuario para conectar con la base de datos.
|
|
*
|
|
* @param string $user
|
|
* @param string $pass
|
|
*
|
|
* @throws SPException
|
|
*/
|
|
public function createDBUser($user, $pass)
|
|
{
|
|
if ($this->installData->isHostingMode()) {
|
|
return;
|
|
}
|
|
|
|
logger('Creating DB user');
|
|
|
|
try {
|
|
$query = 'CREATE USER %s@%s IDENTIFIED BY %s';
|
|
|
|
$dbc = $this->mysqlHandler->getConnectionSimple();
|
|
|
|
$dbc->exec(
|
|
sprintf($query,
|
|
$dbc->quote($user),
|
|
$dbc->quote($this->installData->getDbAuthHost()),
|
|
$dbc->quote($pass))
|
|
);
|
|
|
|
if (!empty($this->installData->getDbAuthHostDns())
|
|
&& $this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()
|
|
) {
|
|
$dbc->exec(
|
|
sprintf($query,
|
|
$dbc->quote($user),
|
|
$this->installData->getDbAuthHostDns(),
|
|
$dbc->quote($pass))
|
|
);
|
|
}
|
|
|
|
$dbc->exec('FLUSH PRIVILEGES');
|
|
} catch (PDOException $e) {
|
|
processException($e);
|
|
|
|
throw new SPException(
|
|
sprintf(__u('Error while creating the MySQL connection user \'%s\''), $user),
|
|
SPException::CRITICAL,
|
|
$e->getMessage(),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Crear la base de datos
|
|
*
|
|
* @throws SPException
|
|
*/
|
|
public function createDatabase()
|
|
{
|
|
if (!$this->installData->isHostingMode()) {
|
|
|
|
if ($this->checkDatabaseExist()) {
|
|
throw new SPException(
|
|
__u('The database already exists'),
|
|
SPException::ERROR,
|
|
__u('Please, enter a new database or delete the existing one')
|
|
);
|
|
}
|
|
|
|
try {
|
|
$dbc = $this->mysqlHandler->getConnectionSimple();
|
|
|
|
$dbc->exec(sprintf(
|
|
'CREATE SCHEMA `%s` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci',
|
|
$this->installData->getDbName()
|
|
));
|
|
} catch (PDOException $e) {
|
|
throw new SPException(
|
|
sprintf(__('Error while creating the DB (\'%s\')'), $e->getMessage()),
|
|
SPException::CRITICAL,
|
|
__u('Please check the database user permissions'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
|
|
try {
|
|
$query = 'GRANT ALL PRIVILEGES ON `%s`.* TO %s@%s';
|
|
|
|
$dbc->exec(sprintf(
|
|
$query,
|
|
$this->installData->getDbName(),
|
|
$dbc->quote($this->configData->getDbUser()),
|
|
$dbc->quote($this->installData->getDbAuthHost()))
|
|
);
|
|
|
|
if (!empty($this->installData->getDbAuthHostDns())
|
|
&& $this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()
|
|
) {
|
|
$dbc->exec(sprintf(
|
|
$query,
|
|
$this->installData->getDbName(),
|
|
$dbc->quote($this->configData->getDbUser()),
|
|
$dbc->quote($this->installData->getDbAuthHostDns()))
|
|
);
|
|
}
|
|
|
|
$dbc->exec('FLUSH PRIVILEGES');
|
|
} catch (PDOException $e) {
|
|
processException($e);
|
|
|
|
$this->rollback();
|
|
|
|
throw new SPException(
|
|
sprintf(__('Error while setting the database permissions (\'%s\')'), $e->getMessage()),
|
|
SPException::CRITICAL,
|
|
__u('Please check the database user permissions'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
} else {
|
|
try {
|
|
// Commprobar si existe al seleccionarla
|
|
$this->mysqlHandler->getConnectionSimple()
|
|
->exec(sprintf('USE `%s`', $this->installData->getDbName()));
|
|
} catch (PDOException $e) {
|
|
throw new SPException(
|
|
__u('The database does not exist'),
|
|
SPException::ERROR,
|
|
__u('You need to create it and assign the needed permissions'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
* @throws SPException
|
|
*/
|
|
public function checkDatabaseExist()
|
|
{
|
|
$sth = $this->mysqlHandler->getConnectionSimple()
|
|
->prepare('SELECT COUNT(*) FROM information_schema.schemata WHERE `schema_name` = ? LIMIT 1');
|
|
$sth->execute([$this->installData->getDbName()]);
|
|
|
|
return (int)$sth->fetchColumn() === 1;
|
|
}
|
|
|
|
/**
|
|
* @throws SPException
|
|
*/
|
|
public function rollback()
|
|
{
|
|
$dbc = $this->mysqlHandler->getConnectionSimple();
|
|
|
|
if ($this->installData->isHostingMode()) {
|
|
foreach (DatabaseUtil::$tables as $table) {
|
|
$dbc->exec('DROP TABLE IF EXISTS `' . $this->installData->getDbName() . '`.`' . $table . '`');
|
|
}
|
|
} else {
|
|
$dbc->exec(sprintf(
|
|
'DROP DATABASE IF EXISTS `%s`',
|
|
$this->installData->getDbName()
|
|
));
|
|
$dbc->exec(sprintf(
|
|
'DROP USER %s@%s',
|
|
$dbc->quote($this->configData->getDbUser()),
|
|
$dbc->quote($this->installData->getDbAuthHost())
|
|
));
|
|
|
|
if ($this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()) {
|
|
$dbc->exec(sprintf(
|
|
'DROP USER %s@%s',
|
|
$dbc->quote($this->configData->getDbUser()),
|
|
$dbc->quote($this->installData->getDbAuthHostDns())
|
|
));
|
|
}
|
|
}
|
|
|
|
logger('Rollback');
|
|
}
|
|
|
|
/**
|
|
* @throws SPException
|
|
*/
|
|
public function createDBStructure()
|
|
{
|
|
try {
|
|
$dbc = $this->mysqlHandler->getConnectionSimple();
|
|
|
|
// Usar la base de datos de sysPass
|
|
$dbc->exec(sprintf('USE `%s`', $this->installData->getDbName()));
|
|
} catch (PDOException $e) {
|
|
throw new SPException(
|
|
sprintf(__('Error while selecting \'%s\' database (%s)'), $this->installData->getDbName(), $e->getMessage()),
|
|
SPException::CRITICAL,
|
|
__u('Unable to use the database to create the structure. Please check the permissions and it does not exist.'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
|
|
try {
|
|
$parser = new MySQLFileParser(new FileHandler(SQL_PATH . DIRECTORY_SEPARATOR . 'dbstructure.sql'));
|
|
|
|
foreach ($parser->parse() as $query) {
|
|
$dbc->exec($query);
|
|
}
|
|
} catch (PDOException $e) {
|
|
processException($e);
|
|
|
|
$this->rollback();
|
|
|
|
throw new SPException(
|
|
sprintf(__('Error while creating the DB (\'%s\')'), $e->getMessage()),
|
|
SPException::CRITICAL,
|
|
__u('Error while creating database structure.'),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
} catch (FileException $e) {
|
|
processException($e);
|
|
|
|
$this->rollback();
|
|
|
|
throw new SPException(
|
|
sprintf(__('Error while creating the DB (\'%s\')'), $e->getMessage()),
|
|
SPException::ERROR,
|
|
$e->getMessage(),
|
|
$e->getCode(),
|
|
$e
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Comprobar la conexión a la BBDD
|
|
*
|
|
* @throws SPException
|
|
*/
|
|
public function checkConnection()
|
|
{
|
|
$databaseUtil = new DatabaseUtil($this->mysqlHandler);
|
|
|
|
if (!$databaseUtil->checkDatabaseTables($this->installData->getDbName())) {
|
|
$this->rollback();
|
|
|
|
throw new SPException(
|
|
__u('Error while checking the database'),
|
|
SPException::CRITICAL,
|
|
__u('Please, try the installation again')
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return DBStorageInterface
|
|
*/
|
|
public function getDbHandler(): DBStorageInterface
|
|
{
|
|
return $this->mysqlHandler;
|
|
}
|
|
|
|
/**
|
|
* @return DBStorageInterface
|
|
*/
|
|
public function createDbHandlerFromInstaller(): DBStorageInterface
|
|
{
|
|
return new MySQLHandler(DatabaseConnectionData::getFromConfig($this->configData));
|
|
}
|
|
} |