ZwiiCMS/core/class/jsondb/JsonDb.class.php

211 lines
6.1 KiB
PHP
Raw Normal View History

<?php
2025-01-23 20:38:31 +01:00
/**
* Created by PhpStorm.
* User: Andrey Mistulov
* Company: Aristos
* Date: 14.03.2017
* Time: 15:25
*/
namespace Prowebcraft;
/**
* Class Data
* @package Aristos
*/
class JsonDb extends \Prowebcraft\Dot
{
protected $db = '';
protected $data = null;
protected $config = [];
2024-04-05 16:34:01 +02:00
// Tentative d'écriture après échec
2024-04-05 09:20:34 +02:00
const MAX_FILE_WRITE_ATTEMPTS = 5;
// Délais entre deux tentaives
const RETRY_DELAY_SECONDS = 1;
public function __construct($config = [])
{
$this->config = array_merge([
2020-12-25 20:15:56 +01:00
'name' => 'data.json',
2022-04-08 14:23:58 +02:00
'backup' => false,
'dir' => getcwd()
], $config);
$this->loadData();
parent::__construct();
}
2022-04-08 11:42:11 +02:00
/**
* Reload data from file
* @return $this
*/
public function reload()
{
$this->loadData(true);
return $this;
}
/**
* Set value or array of values to path
*
* @param mixed $key Path or array of paths and values
* @param mixed|null $value Value to set if path is not an array
2022-04-08 11:42:11 +02:00
* @param bool $save Save data to database
* @return $this
*/
public function set($key, $value = null, $save = true)
{
parent::set($key, $value);
2023-03-02 21:07:25 +01:00
if ($save)
$this->save();
return $this;
}
/**
* Add value or array of values to path
*
2022-04-08 11:42:11 +02:00
* @param mixed $key Path or array of paths and values
* @param mixed|null $value Value to set if path is not an array
2022-04-08 11:42:11 +02:00
* @param boolean $pop Helper to pop out last key if value is an array
* @param bool $save Save data to database
* @return $this
*/
public function add($key, $value = null, $pop = false, $save = true)
{
parent::add($key, $value, $pop);
2023-03-02 21:07:25 +01:00
if ($save)
$this->save();
return $this;
}
/**
* Delete path or array of paths
*
2022-04-08 11:42:11 +02:00
* @param mixed $key Path or array of paths to delete
* @param bool $save Save data to database
* @return $thisurn $this
*/
public function delete($key, $save = true)
{
parent::delete($key);
2023-03-02 21:07:25 +01:00
if ($save)
$this->save();
return $this;
}
/**
* Delete all data, data from path or array of paths and
* optionally format path if it doesn't exist
*
* @param mixed|null $key Path or array of paths to clean
2022-04-08 11:42:11 +02:00
* @param boolean $format Format option
* @param bool $save Save data to database
* @return $this
*/
public function clear($key = null, $format = false, $save = true)
{
parent::clear($key, $format);
2023-03-02 21:07:25 +01:00
if ($save)
$this->save();
return $this;
}
/**
2025-01-23 20:38:31 +01:00
* Charge les données depuis un fichier JSON.
*
* @param bool $reload Force le rechargement des données si true
*
* @return array|null Les données chargées ou null si le fichier n'existe pas
*
* @throws \RuntimeException En cas d'erreur lors de la création de la sauvegarde
* @throws \InvalidArgumentException Si le fichier contient des données JSON invalides
*/
2025-01-23 20:38:31 +01:00
protected function loadData($reload = false): ?array
2023-03-02 21:07:25 +01:00
{
if ($this->data === null || $reload) {
2023-04-26 21:40:09 +02:00
$this->db = $this->config['dir'] . $this->config['name'];
2025-01-23 20:38:31 +01:00
if (!file_exists($this->db)) {
2025-01-23 20:38:31 +01:00
return null; // Rebuild database managed by CMS
}
if ($this->config['backup']) {
$backup_path = $this->config['dir'] . DIRECTORY_SEPARATOR . $this->config['name'] . '.backup';
try {
if (!copy($this->db, $backup_path)) {
throw new \RuntimeException('Échec de la création de la sauvegarde');
2023-03-02 21:07:25 +01:00
}
2025-01-23 20:38:31 +01:00
} catch (\Exception $e) {
throw new \RuntimeException('Erreur de sauvegarde : ' . $e->getMessage());
}
}
2025-01-23 20:38:31 +01:00
$file_contents = file_get_contents($this->db);
$this->data = json_decode($file_contents, true);
if ($this->data === null) {
throw new \InvalidArgumentException('Le fichier ' . $this->db . ' contient des données invalides.');
2022-03-27 18:13:43 +02:00
}
}
2025-01-23 20:38:31 +01:00
return $this->data;
}
/**
2025-01-23 20:38:31 +01:00
* Charge les données depuis un fichier JSON.
*
* @param bool $reload Force le rechargement des données si true
*
* @return array|null Les données chargées ou null si le fichier n'existe pas
*
* @throws \RuntimeException En cas d'erreur lors de la création de la sauvegarde
* @throws \InvalidArgumentException Si le fichier contient des données JSON invalides
*/
2025-01-25 14:21:16 +01:00
2025-01-23 20:38:31 +01:00
public function save(): void
2023-03-02 21:07:25 +01:00
{
2025-01-23 20:38:31 +01:00
if ($this->data === null) {
throw new \RuntimeException('Tentative de sauvegarde de données nulles');
}
2025-01-25 14:21:16 +01:00
2025-01-23 20:38:31 +01:00
try {
$encoded_data = json_encode($this->data, JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT | JSON_THROW_ON_ERROR);
} catch (\JsonException $e) {
throw new \RuntimeException('Erreur d\'encodage JSON : ' . $e->getMessage());
}
2024-04-05 09:20:34 +02:00
$encoded_length = strlen($encoded_data);
2025-01-23 20:38:31 +01:00
$max_attempts = 5;
2025-01-23 20:38:31 +01:00
for ($attempt = 0; $attempt < $max_attempts; $attempt++) {
$temp_file = $this->db . '.tmp' . uniqid();
2025-01-23 20:38:31 +01:00
try {
$write_result = file_put_contents($temp_file, $encoded_data, LOCK_EX);
2025-01-23 20:38:31 +01:00
if ($write_result === $encoded_length) {
if (rename($temp_file, $this->db)) {
return;
}
}
2025-01-25 14:21:16 +01:00
error_log("Échec sauvegarde : longueur incorrecte ou renommage échoué (tentative " . ($attempt + 1) . ")");
2025-01-23 20:38:31 +01:00
} catch (\Exception $e) {
2025-01-25 14:21:16 +01:00
error_log('Erreur de sauvegarde : ' . $e->getMessage());
2025-01-23 20:38:31 +01:00
if (file_exists($temp_file)) {
unlink($temp_file);
}
}
2024-04-05 09:20:34 +02:00
2025-01-23 20:38:31 +01:00
usleep(pow(2, $attempt) * 250000);
}
2025-01-23 20:38:31 +01:00
throw new \RuntimeException('Échec de sauvegarde après ' . $max_attempts . ' tentatives');
}
2025-01-23 20:38:31 +01:00
}