File "AbstractDataManager.php"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/wp-rocket/inc/Engine/Optimization/DynamicLists/AbstractDataManager.php
File size: 3.18 B (3.18 KB bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
declare(strict_types=1);

namespace WP_Rocket\Engine\Optimization\DynamicLists;

use WP_Filesystem_Direct;
use StdClass;

abstract class AbstractDataManager {
	/**
	 * Filesystem instance
	 *
	 * @var WP_Filesystem_Direct
	 */
	private $filesystem;

	/**
	 * Cache ttl.
	 *
	 * @var int
	 */
	protected $cache_duration = WEEK_IN_SECONDS;

	/**
	 * Instantiate the class
	 *
	 * @param WP_Filesystem_Direct $filesystem Filesystem instance.
	 */
	public function __construct( $filesystem = null ) {
		$this->filesystem = is_null( $filesystem ) ? rocket_direct_filesystem() : $filesystem;
	}

	/**
	 * Get cache transient name.
	 *
	 * @return string
	 */
	abstract protected function get_cache_transient_name();

	/**
	 * Get lists json filename.
	 *
	 * @return string
	 */
	abstract protected function get_json_filename();

	/**
	 * Gets the lists content
	 *
	 * @return object
	 */
	public function get_lists() {
		$transient = get_transient( $this->get_cache_transient_name() );

		if ( false !== $transient ) {
			return $transient;
		}

		$json = $this->get_lists_from_file();

		$lists = json_decode( $json );

		if ( empty( $lists ) ) {
			return new StdClass();
		}

		$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 );

		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', '' ) . $this->get_json_filename() . '.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', '' ) . $this->get_json_filename() . '.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( $this->get_cache_transient_name(), $content, $this->cache_duration );
	}
}