File: /var/www/delta/wp-content/plugins/sitepress-multilingual-cms/classes/ATE/API/CachedATEAPI.php
<?php
namespace WPML\TM\ATE\API;
use WPML\FP\Lst;
use WPML\FP\Maybe;
use WPML\LIB\WP\Transient;
use WPML\FP\Obj;
use WPML\TM\ATE\API\CacheStorage\Storage;
use function WPML\FP\curryN;
class CachedATEAPI {
	const CACHE_OPTION = 'wpml-tm-ate-api-cache';
	/** @var  \WPML_TM_ATE_API */
	private $ateAPI;
	/** @var Storage */
	private $storage;
	private $cachedFns = [ 'get_languages_supported_by_automatic_translations', 'get_language_details', 'get_language_mapping' ];
	/**
	 * @param \WPML_TM_ATE_API $ateAPI
	 */
	public function __construct( \WPML_TM_ATE_API $ateAPI, Storage $storage ) {
		$this->ateAPI = $ateAPI;
		$this->storage = $storage;
	}
	public function __call( $name, $args ) {
		return Lst::includes( $name, $this->cachedFns ) ? $this->callWithCache( $name, $args ) : call_user_func_array( [ $this->ateAPI, $name ], $args );
	}
	private function callWithCache( $fnName, $args ) {
		$data = $this->storage->get( self::CACHE_OPTION, [] );
		$key  = $this->getKey( $args );
		if ( ! array_key_exists( $fnName, $data ) || ! array_key_exists( $key, $data[ $fnName ] ) ) {
			return call_user_func_array( [ $this->ateAPI, $fnName ], $args )->map( $this->cacheValue( $fnName, $args ) );
		}
		return Maybe::of( $data[ $fnName ][ $key ] );
	}
	public function cacheValue( $fnName = null, $args = null, $result = null ) {
		$fn = curryN( 3, function ( $fnName, $args, $result ) {
			$data                                      = $this->storage->get( self::CACHE_OPTION, [] );
			$data[ $fnName ][ $this->getKey( $args ) ] = $result;
			$this->storage->save( self::CACHE_OPTION, $data );
			return $result;
		} );
		return call_user_func_array( $fn, func_get_args() );
	}
	/**
	 * @param mixed $args
	 *
	 * @return string
	 */
	private function getKey( $args ) {
		// phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
		return \serialize( $args );
	}
}