*/ class Mage_Core_Helper_Cookie extends Mage_Core_Helper_Abstract { /** * Cookie name for users who allowed cookie save */ const IS_USER_ALLOWED_SAVE_COOKIE = 'user_allowed_save_cookie'; /** * Path to configuration, check is enable cookie restriction mode */ const XML_PATH_COOKIE_RESTRICTION = 'web/cookie/cookie_restriction'; /** * Cookie restriction lifetime configuration path */ const XML_PATH_COOKIE_RESTRICTION_LIFETIME = 'web/cookie/cookie_restriction_lifetime'; /** * Store instance * * @var Mage_Core_Model_Store */ protected $_currentStore; /** * Cookie instance * * @var Mage_Core_Model_Cookie */ protected $_cookieModel; /** * Website instance * * @var Mage_Core_Model_Website */ protected $_website; /** * Initializes store, cookie and website objects. * * @param array $data * @throws InvalidArgumentException */ public function __construct(array $data = array()) { $this->_currentStore = isset($data['current_store']) ? $data['current_store'] : Mage::app()->getStore(); if (!$this->_currentStore instanceof Mage_Core_Model_Store) { throw new InvalidArgumentException('Required store object is invalid'); } $this->_cookieModel = isset($data['cookie_model']) ? $data['cookie_model'] : Mage::getSingleton('core/cookie'); if (!$this->_cookieModel instanceof Mage_Core_Model_Cookie) { throw new InvalidArgumentException('Required cookie object is invalid'); } $this->_website = isset($data['website']) ? $data['website'] : Mage::app()->getWebsite(); if (!$this->_website instanceof Mage_Core_Model_Website) { throw new InvalidArgumentException('Required website object is invalid'); } } /** * Check if cookie restriction notice should be displayed * * @return bool */ public function isUserNotAllowSaveCookie() { $acceptedSaveCookiesWebsites = $this->_getAcceptedSaveCookiesWebsites(); return $this->_currentStore->getConfig(self::XML_PATH_COOKIE_RESTRICTION) && empty($acceptedSaveCookiesWebsites[$this->_website->getId()]); } /** * Return serialized list of accepted save cookie website * * @return string */ public function getAcceptedSaveCookiesWebsiteIds() { $acceptedSaveCookiesWebsites = $this->_getAcceptedSaveCookiesWebsites(); $acceptedSaveCookiesWebsites[$this->_website->getId()] = 1; return json_encode($acceptedSaveCookiesWebsites); } /** * Get accepted save cookies websites * * @return array */ protected function _getAcceptedSaveCookiesWebsites() { $serializedList = $this->_cookieModel->get(self::IS_USER_ALLOWED_SAVE_COOKIE); $unSerializedList = json_decode($serializedList, true); return is_array($unSerializedList) ? $unSerializedList : array(); } /** * Get cookie restriction lifetime (in seconds) * * @return int */ public function getCookieRestrictionLifetime() { return (int)$this->_currentStore->getConfig(self::XML_PATH_COOKIE_RESTRICTION_LIFETIME); } }