fix PHP 8.1 throws \mysqli_sql_exception or \PDOException for SQL errors

- change them to our regular Api\Db\Exception
- for prop(find|patch) explicitly catch PDOException to deal more graceful with non-ascii prop-names
This commit is contained in:
ralf 2022-05-10 12:36:25 +02:00
parent c4e0989bf9
commit 9a0cc36366
3 changed files with 61 additions and 40 deletions

View File

@ -798,13 +798,20 @@ class Db
return 0;
}
}
try
{
if ($num_rows > 0)
{
$rs = $this->Link_ID->SelectLimit($Query_String,$num_rows,(int)$offset,$inputarr);
$rs = $this->Link_ID->SelectLimit($Query_String, $num_rows, (int)$offset, $inputarr);
}
else
{
$rs = $this->Link_ID->Execute($Query_String,$inputarr);
$rs = $this->Link_ID->Execute($Query_String, $inputarr);
}
}
// PHP 8.1 mysqli throws its own exception
catch(\mysqli_sql_exception $e) {
throw new Db\Exception($e->getMessage(), $e->getCode(), $e);
}
$this->Row = 0;
$this->Errno = $this->Link_ID->ErrorNo();

View File

@ -27,10 +27,10 @@ class Exception extends \egw_exception_db
* @param string $msg =null message, default "Database error!"
* @param int $code =100
*/
function __construct($msg=null,$code=100)
function __construct($msg=null, $code=100, \Exception $previous=null)
{
if (is_null($msg)) $msg = lang('Database error!');
parent::__construct($msg,$code);
parent::__construct($msg, $code, $previous);
}
}

View File

@ -1944,9 +1944,11 @@ GROUP BY A.fs_id';
return false; // permission denied
}
$ins_stmt = $del_stmt = null;
foreach($props as &$prop)
try {
foreach ($props as &$prop)
{
if(!array_key_exists('name', $prop))
if (!array_key_exists('name', $prop))
{
return false; // Name is missing
}
@ -1956,7 +1958,7 @@ GROUP BY A.fs_id';
{
if (!isset($del_stmt))
{
$del_stmt = self::$pdo->prepare('DELETE FROM '.self::PROPS_TABLE.' WHERE fs_id=:fs_id AND prop_namespace=:prop_namespace AND prop_name=:prop_name');
$del_stmt = self::$pdo->prepare('DELETE FROM ' . self::PROPS_TABLE . ' WHERE fs_id=:fs_id AND prop_namespace=:prop_namespace AND prop_name=:prop_name');
}
$del_stmt->execute(array(
'fs_id' => $id,
@ -1968,8 +1970,8 @@ GROUP BY A.fs_id';
{
if (!isset($ins_stmt))
{
$ins_stmt = self::$pdo->prepare((self::$pdo_type == 'mysql' ? 'REPLACE' : 'INSERT').
' INTO '.self::PROPS_TABLE.' (fs_id,prop_namespace,prop_name,prop_value) VALUES (:fs_id,:prop_namespace,:prop_name,:prop_value)');
$ins_stmt = self::$pdo->prepare((self::$pdo_type == 'mysql' ? 'REPLACE' : 'INSERT') .
' INTO ' . self::PROPS_TABLE . ' (fs_id,prop_namespace,prop_name,prop_value) VALUES (:fs_id,:prop_namespace,:prop_name,:prop_value)');
}
if (!$ins_stmt->execute(array(
'fs_id' => $id,
@ -1982,6 +1984,12 @@ GROUP BY A.fs_id';
}
}
}
}
// catch exception for inserting or deleting non-ascii prop_names
catch (\PDOException $e) {
_egw_log_exception($e);
return false;
}
return true;
}
@ -2014,10 +2022,16 @@ GROUP BY A.fs_id';
(!is_null($ns) ? ' AND prop_namespace=?' : '');
if (self::LOG_LEVEL > 2) $query = '/* '.__METHOD__.': '.__LINE__.' */ '.$query;
try {
$stmt = self::$pdo->prepare($query);
$stmt->setFetchMode(\PDO::FETCH_ASSOC);
$stmt->execute(!is_null($ns) ? array($ns) : array());
}
// cat exception trying to search for non-ascii prop_name
catch (\PDOException $e) {
_egw_log_exception($e);
return [];
}
$props = array();
foreach($stmt as $row)
{