Current File : /home/pacjaorg/www/kmm/libraries/src/Cache/Controller/ViewController.php
<?php

/**
 * Joomla! Content Management System
 *
 * @copyright  (C) 2010 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Cache\Controller;

use Joomla\CMS\Cache\Cache;
use Joomla\CMS\Cache\CacheController;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * Joomla! Cache view type object
 *
 * @since  1.7.0
 */
class ViewController extends CacheController
{
    /**
     * Get the cached view data
     *
     * @param   object   $view        The view object to cache output for
     * @param   string   $method      The method name of the view method to cache output for
     * @param   mixed    $id          The cache data ID
     * @param   boolean  $wrkarounds  True to enable workarounds.
     *
     * @return  boolean  True if the cache is hit (false else)
     *
     * @since   1.7.0
     */
    public function get($view, $method = 'display', $id = false, $wrkarounds = true)
    {
        // If an id is not given generate it from the request
        if (!$id) {
            $id = $this->_makeId($view, $method);
        }

        $data = $this->cache->get($id);

        $locktest = (object) ['locked' => null, 'locklooped' => null];

        if ($data === false) {
            $locktest = $this->cache->lock($id);

            /*
             * If the loop is completed and returned true it means the lock has been set.
             * If looped is true try to get the cached data again; it could exist now.
             */
            if ($locktest->locked === true && $locktest->locklooped === true) {
                $data = $this->cache->get($id);
            }

            // False means that locking is either turned off or maxtime has been exceeded. Execute the view.
        }

        if ($data !== false) {
            if ($locktest->locked === true) {
                $this->cache->unlock($id);
            }

            $data = unserialize(trim($data));

            if ($wrkarounds) {
                echo Cache::getWorkarounds($data);
            } else {
                // No workarounds, so all data is stored in one piece
                echo $data;
            }

            return true;
        }

        // No hit so we have to execute the view
        if (!method_exists($view, $method)) {
            return false;
        }

        if ($locktest->locked === false && $locktest->locklooped === true) {
            // We can not store data because another process is in the middle of saving
            $view->$method();

            return false;
        }

        // Capture and echo output
        ob_start();
        ob_implicit_flush(false);
        $view->$method();
        $data = ob_get_clean();
        echo $data;

        /*
         * For a view we have a special case.  We need to cache not only the output from the view, but the state
         * of the document head after the view has been rendered.  This will allow us to properly cache any attached
         * scripts or stylesheets or links or any other modifications that the view has made to the document object
         */
        if ($wrkarounds) {
            $data = Cache::setWorkarounds($data);
        }

        // Store the cache data
        $this->cache->store(serialize($data), $id);

        if ($locktest->locked === true) {
            $this->cache->unlock($id);
        }

        return false;
    }

    /**
     * Store data to cache by ID and group
     *
     * @param   mixed    $data        The data to store
     * @param   string   $id          The cache data ID
     * @param   string   $group       The cache data group
     * @param   boolean  $wrkarounds  True to use wrkarounds
     *
     * @return  boolean  True if cache stored
     *
     * @since   4.0.0
     */
    public function store($data, $id, $group = null, $wrkarounds = true)
    {
        $locktest = $this->cache->lock($id, $group);

        if ($locktest->locked === false && $locktest->locklooped === true) {
            // We can not store data because another process is in the middle of saving
            return false;
        }

        $result = $this->cache->store(serialize($data), $id, $group);

        if ($locktest->locked === true) {
            $this->cache->unlock($id, $group);
        }

        return $result;
    }

    /**
     * Generate a view cache ID.
     *
     * @param   object  $view    The view object to cache output for
     * @param   string  $method  The method name to cache for the view object
     *
     * @return  string  MD5 Hash
     *
     * @since   1.7.0
     */
    protected function _makeId($view, $method)
    {
        return md5(serialize([Cache::makeId(), \get_class($view), $method]));
    }
}
Site is undergoing maintenance

PACJA Events

Maintenance mode is on

Site will be available soon. Thank you for your patience!