Merge remote-tracking branch 'origin/v1.0.1' into v1.0.1

This commit is contained in:
stephan.kasdorf
2025-07-07 15:14:50 +02:00
6 changed files with 35 additions and 13 deletions

View File

@@ -75,11 +75,12 @@ abstract class Db implements IDb
* @desc will update the a row with the $rowset parameter by the given id
* @param array $rowData
* @param int $id
* @param string $encrypted
* @return bool
*/
public function updateRowById(array $rowData, int $id): bool
public function updateRowById(array $rowData, int $id, string $encrypted = ""): bool
{
return Pdo::updateRowById( self::getTable()['table'], self::getTable()['fields'], $rowData, $id );
return Pdo::updateRowById( self::getTable()['table'], self::getTable()['fields'], $rowData, $id, $encrypted );
}
/**

View File

@@ -188,17 +188,19 @@ final class pdo extends Mysql implements IPdo
* @param string $tableName The name of the table to update.
* @param array $data An associative array where keys are column names and values are the new values for those columns.
* @param int $id The value of the primary key for the row to update.
* @param string $encrypted The field that has encrypted data for handling correct field encryption
*
* @return bool Returns true on success or false on failure.
*/
public static function updateRowById(string $tableName, array $columnNames, array $data, int $id): bool
public static function updateRowById(string $tableName, array $columnNames, array $data, int $id, string $encrypted = IMysql::PLACE_DES_ENCRYPT): bool
{
try {
// Inside a method of the mysql.db.php class or its subclass
$validTables = self::loadTableNames();
// Validate the table name
if (!in_array($tableName, $validTables, true)) {
if (!in_array($tableName, $validTables, true))
{
throw new \InvalidArgumentException("FATAL ERROR in main CORE updateRowById: Invalid table name: {$tableName}");
}
@@ -215,8 +217,8 @@ final class pdo extends Mysql implements IPdo
// Fetch the primary key field name
$queryPrimaryKey = "SELECT COLUMN_NAME FROM information_schema.COLUMNS
WHERE TABLE_NAME = :tableName
AND COLUMN_KEY = 'PRI' LIMIT 1;";
WHERE TABLE_NAME = :tableName
AND COLUMN_KEY = 'PRI' LIMIT 1;";
$stmtPrimaryKey = $pdo->prepare($queryPrimaryKey);
$stmtPrimaryKey->bindValue(':tableName', $tableName);
$stmtPrimaryKey->execute();
@@ -230,7 +232,13 @@ final class pdo extends Mysql implements IPdo
$query = "UPDATE " . $tableName . " SET ";
$updateParts = [];
foreach ($data as $column => $value) {
$updateParts[] = $column . " = :" . $column;
if ($column === $encrypted)
{
// Encrypt the value using DES_ENCRYPT function
$updateParts[] = "$column = DES_ENCRYPT(:$column, :key)";
} else {
$updateParts[] = "$column = :$column";
}
}
$query .= implode(', ', $updateParts);
$query .= " WHERE " . $primaryKeyField . " = :primaryKeyValue";
@@ -238,6 +246,11 @@ final class pdo extends Mysql implements IPdo
foreach ($data as $column => $value) {
$stmt->bindValue(':' . $column, $value);
}
if ($encrypted != "")
{
$key = Config::getInstance()->getConfig()[View::NIBIRU_SECURITY]["password_hash"];
$stmt->bindValue(':key', $key);
}
$stmt->bindValue(':primaryKeyValue', $id);
return $stmt->execute();
} catch (\PDOException $e) {

View File

@@ -16,7 +16,8 @@ class TypeCheckbox extends FormAttributes implements IForm
self::FORM_VALUE => '',
self::FORM_ATTRIBUTE_ID => '',
self::FORM_ATTRIBUTE_CLASS => '',
self::FORM_ATTRIBUTE_CHECKED => ''
self::FORM_ATTRIBUTE_CHECKED => '',
self::FORM_ATTRIBUTE_DISABLED => ''
);
public function loadElement( $attributes )
@@ -33,7 +34,7 @@ class TypeCheckbox extends FormAttributes implements IForm
*/
private function _setElement( )
{
$this->_element = '<input type="checkbox" name="NAME" value="VALUE" ID CLASS CHECKED>' . ' VALUE' . "\n";
$this->_element = '<input type="checkbox" name="NAME" value="VALUE" ID CLASS CHECKED DISABLED>' . ' VALUE' . "\n";
}

View File

@@ -13,9 +13,10 @@ interface IDb
* @desc will update the a row with the $rowset parameter by the given id
* @param array $rowData
* @param int $id
* @param string $encrypted
* @return mixed
*/
public function updateRowById( array $rowData, int $id );
public function updateRowById( array $rowData, int $id, string $encrypted = "" );
/**
* @desc updates a row by a given field and field where search value