CustomerData.php 2.06 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Customer\Block;

/**
 * @api
 * @since 100.0.2
 */
class CustomerData extends \Magento\Framework\View\Element\Template
{
    /**
     * @var array
     */
    private $expirableSectionNames;

    /**
     * @param \Magento\Framework\View\Element\Template\Context $context
     * @param array $data
     * @param array $expirableSectionNames
     */
    public function __construct(
        \Magento\Framework\View\Element\Template\Context $context,
        array $data = [],
        array $expirableSectionNames = []
    ) {
        parent::__construct($context, $data);
        $this->expirableSectionNames = $expirableSectionNames;
    }

    /**
     * Get CookieLifeTime
     * @return null|string scopeCode
     */
    public function getCookieLifeTime()
    {
        return $this->_scopeConfig->getValue(
            \Magento\Framework\Session\Config::XML_PATH_COOKIE_LIFETIME,
            \Magento\Store\Model\ScopeInterface::SCOPE_STORE
        );
    }

    /**
     * Get url for customer data ajax requests. Returns url with protocol matching used to request page.
     *
     * @param string $route
     * @return string Customer data url.
     */
    public function getCustomerDataUrl($route)
    {
        return $this->getUrl($route, ['_secure' => $this->getRequest()->isSecure()]);
    }

    /**
     * Retrieve lifetime period (in minutes) of the frontend section configuration.
     *
     * Once this period has expired the corresponding section must be invalidated and reloaded.
     *
     * @return int section lifetime in minutes
     * @since 101.0.0
     */
    public function getExpirableSectionLifetime()
    {
        return (int)$this->_scopeConfig->getValue('customer/online_customers/section_data_lifetime');
    }

    /**
     * Retrieve the list of sections that can expire.
     *
     * @return array
     * @since 101.0.0
     */
    public function getExpirableSectionNames()
    {
        return array_values($this->expirableSectionNames);
    }
}