Files
sysPass/lib/SP/Storage/Database/DatabaseUtil.php
RubénD 0ea0a13860 fix: Add missing tables to tables list. (#1843)
Thanks to @Jonher937 for the notice!!
Closes #1786.

Signed-off-by: Rubén D <nuxsmin@syspass.org>
2022-06-18 18:01:42 +02:00

180 lines
4.1 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2022, 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\Storage\Database;
use Exception;
/**
* Class DBUtil con utilidades de la BD
*
* @package SP\Storage
*/
final class DatabaseUtil
{
/**
* @var array Tablas de la BBDD
*/
public static $tables = [
'Client',
'Category',
'Tag',
'UserGroup',
'UserProfile',
'User',
'Account',
'AccountToFavorite',
'AccountFile',
'AccountToUserGroup',
'AccountHistory',
'AccountToTag',
'AccountToUser',
'AuthToken',
'Config',
'CustomFieldType',
'CustomFieldDefinition',
'CustomFieldData',
'EventLog',
'PublicLink',
'UserPassRecover',
'UserToUserGroup',
'Plugin',
'Track',
'ItemPreset',
'PluginData',
'Notification',
'account_data_v',
'account_search_v'
];
/**
* @var DBStorageInterface
*/
private $DBStorage;
/**
* DatabaseUtil constructor.
*
* @param DBStorageInterface $DBStorage
*/
public function __construct(DBStorageInterface $DBStorage)
{
$this->DBStorage = $DBStorage;
}
/**
* Comprobar que la base de datos existe.
*
* @param string $dbName
*
* @return bool
*/
public function checkDatabaseTables($dbName)
{
try {
$tables = implode(',', array_map(function ($value) {
return '\'' . $value . '\'';
}, self::$tables));
$query = /** @lang SQL */
'SELECT COUNT(*)
FROM information_schema.tables
WHERE table_schema = \'' . $dbName . '\'
AND `table_name` IN (' . $tables . ')';
$numTables = (int)$this->DBStorage->getConnection()->query($query)->fetchColumn();
return $numTables === count(self::$tables);
} catch (Exception $e) {
processException($e);
}
return false;
}
/**
* @return bool
*/
public function checkDatabaseConnection()
{
try {
$this->DBStorage->getConnection();
return true;
} catch (Exception $e) {
processException($e);
return false;
}
}
/**
* Obtener la información del servidor de base de datos
*
* @return array
*/
public function getDBinfo()
{
$dbinfo = [];
try {
$db = $this->DBStorage->getConnection();
$attributes = [
'SERVER_VERSION',
'CLIENT_VERSION',
'SERVER_INFO',
'CONNECTION_STATUS',
];
foreach ($attributes as $val) {
$dbinfo[$val] = $db->getAttribute(constant('PDO::ATTR_' . $val));
}
} catch (Exception $e) {
processException($e);
logger($e->getMessage());
}
return $dbinfo;
}
/**
* Escapar una cadena de texto con funciones de mysqli.
*
* @param string $str string con la cadena a escapar
*
* @return string con la cadena escapada
*/
public function escape($str)
{
try {
return $this->DBStorage->getConnection()->quote(trim($str));
} catch (Exception $e) {
processException($e);
}
return $str;
}
}