mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-05 16:14:11 +01:00
154 lines
4.2 KiB
PHP
154 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link http://syspass.org
|
|
* @copyright 2012-2015 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;
|
|
|
|
|
|
use SP\Config\Config;
|
|
use SP\Core\DiFactory;
|
|
use SP\Core\Exceptions\SPException;
|
|
|
|
/**
|
|
* Class DBUtil con utilidades de la BD
|
|
*
|
|
* @package SP\Storage
|
|
*/
|
|
class DBUtil
|
|
{
|
|
/**
|
|
* Comprobar que la base de datos existe.
|
|
*
|
|
* @return bool
|
|
* @throws SPException
|
|
*/
|
|
public static function checkDatabaseExist()
|
|
{
|
|
try {
|
|
$db = DiFactory::getDBStorage()->getConnection();
|
|
|
|
$query = /** @lang SQL */
|
|
'SELECT COUNT(*)
|
|
FROM information_schema.tables
|
|
WHERE table_schema = \'' . Config::getConfig()->getDbName() . '\'
|
|
AND table_name = \'usrData\'';
|
|
|
|
if ($db->query($query)->fetchColumn() !== 0) {
|
|
return true;
|
|
}
|
|
} catch (\Exception $e) {
|
|
throw new SPException(SPException::SP_CRITICAL, $e->getMessage(), $e->getCode());
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Obtener los datos para generar un select.
|
|
*
|
|
* @param $tblName string con el nombre de la tabla a cunsultar
|
|
* @param $tblColId string con el nombre de la columna del tipo Id a mostrar
|
|
* @param $tblColName string con el nombre de la columna del tipo Name a mostrar
|
|
* @param $arrFilter array con las columnas a filtrar
|
|
* @param $arrOrder array con el orden de las columnas
|
|
* @return array con los valores del select con el Id como clave y el nombre como valor
|
|
*/
|
|
// FIXME
|
|
public static function getValuesForSelect($tblName, $tblColId, $tblColName, $arrFilter = NULL, $arrOrder = NULL)
|
|
{
|
|
if (!$tblName || !$tblColId || !$tblColName) {
|
|
return false;
|
|
}
|
|
|
|
$strFilter = (is_array($arrFilter)) ? " WHERE " . implode(" OR ", $arrFilter) : "";
|
|
$strOrder = (is_array($arrOrder)) ? " ORDER BY " . implode(",", $arrOrder) : 'ORDER BY ' . $tblColName . ' ASC';
|
|
|
|
$query = "SELECT $tblColId, $tblColName FROM $tblName $strFilter $strOrder";
|
|
|
|
$Data = new QueryData();
|
|
$Data->setQuery($query);
|
|
|
|
DB::setReturnArray();
|
|
|
|
$queryRes = DB::getResults($Data);
|
|
|
|
if ($queryRes === false) {
|
|
return array();
|
|
}
|
|
|
|
$arrValues = array();
|
|
|
|
foreach ($queryRes as $row) {
|
|
$arrValues[$row->$tblColId] = $row->$tblColName;
|
|
}
|
|
|
|
return $arrValues;
|
|
}
|
|
|
|
/**
|
|
* Escapar una cadena de texto con funciones de mysqli.
|
|
*
|
|
* @param $str string con la cadena a escapar
|
|
* @return string con la cadena escapada
|
|
*/
|
|
public static function escape($str)
|
|
{
|
|
try {
|
|
$db = DiFactory::getDBStorage()->getConnection();
|
|
|
|
return $db->quote(trim($str));
|
|
} catch (SPException $e) {
|
|
return $str;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Obtener la información del servidor de base de datos
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getDBinfo()
|
|
{
|
|
$dbinfo = array();
|
|
|
|
try {
|
|
$db = DiFactory::getDBStorage()->getConnection();
|
|
|
|
$attributes = array(
|
|
'SERVER_VERSION',
|
|
'CLIENT_VERSION',
|
|
'SERVER_INFO',
|
|
'CONNECTION_STATUS',
|
|
);
|
|
|
|
foreach ($attributes as $val) {
|
|
$dbinfo[$val] = $db->getAttribute(constant('PDO::ATTR_' . $val));
|
|
}
|
|
} catch (SPException $e) {
|
|
return $dbinfo;
|
|
}
|
|
|
|
return $dbinfo;
|
|
}
|
|
} |