oont-contents/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/DataManager.php
2025-02-08 15:10:23 +01:00

143 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
namespace WP_Rocket\Engine\Optimization\DynamicLists;
class DataManager {
/**
* Filesystem instance
*
* @var WP_Filesystem_Direct
*/
private $filesystem;
/**
* Instantiate the class
*
* @param WP_Filesystem_Direct $filesystem Filesystem instance.
*/
public function __construct( $filesystem = null ) {
$this->filesystem = is_null( $filesystem ) ? rocket_direct_filesystem() : $filesystem;
}
/**
* Gets the lists content
*
* @return object
*/
public function get_lists() {
$transient = get_transient( 'wpr_dynamic_lists' );
if ( false !== $transient ) {
return $transient;
}
$json = $this->get_lists_from_file();
$lists = json_decode( $json );
if ( empty( $lists ) ) {
return '';
}
$this->set_lists_cache( $lists );
return $lists;
}
/**
* Returns the hash of the current JSON
*
* @return string
*/
public function get_lists_hash() {
return md5( $this->get_lists_from_file() );
}
/**
* Save dynamic lists on file & transient
*
* @param string $content Lists content.
*
* @return boolean
*/
public function save_dynamic_lists( string $content ) {
$result = $this->put_lists_to_file( $content );
$lists = json_decode( $content );
$this->set_lists_cache( $lists );
/**
* Fires after saving the dynamic lists file
*
* @since 3.12.1
*/
do_action( 'rocket_after_save_dynamic_lists' );
return $result;
}
/**
* Gets the path to the dynamic lists JSON file
*
* @return string
*/
private function get_json_filepath(): string {
return rocket_get_constant( 'WP_ROCKET_CONFIG_PATH', '' ) . 'dynamic-lists.json';
}
/**
* Gets lists JSON content from file
*
* @return string
*/
private function get_lists_from_file(): string {
$content = '';
$lists_filepath = $this->get_json_filepath();
if ( $this->filesystem->exists( $lists_filepath ) ) {
$content = $this->filesystem->get_contents( $lists_filepath );
}
if ( ! empty( $content ) ) {
return $content;
}
$fallback_filepath = rocket_get_constant( 'WP_ROCKET_PATH', '' ) . 'dynamic-lists.json';
if ( $this->filesystem->exists( $fallback_filepath ) ) {
$content = $this->filesystem->get_contents( $fallback_filepath );
}
if ( ! empty( $content ) ) {
$this->put_lists_to_file( $content );
return $content;
}
return $content;
}
/**
* Write lists content to JSON file
*
* @param string $content JSON content.
*
* @return bool
*/
private function put_lists_to_file( string $content ): bool {
return $this->filesystem->put_contents( $this->get_json_filepath(), $content, rocket_get_filesystem_perms( 'file' ) );
}
/**
* Sets transient for lists content
*
* @param object $content Lists content.
*
* @return void
*/
private function set_lists_cache( $content ) {
set_transient( 'wpr_dynamic_lists', $content, WEEK_IN_SECONDS );
}
}