HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/vendor2/jcalderonzumba/gastonjs/src/Cookie.php
<?php

namespace Zumba\GastonJS;

/**
 * Class Cookie
 * @package Zumba\GastonJS
 */
class Cookie {
  /** @var  array */
  protected $attributes;

  /**
   * @param $attributes
   */
  public function __construct($attributes) {
    $this->attributes = $attributes;
  }

  /**
   * Returns the cookie name
   * @return string
   */
  public function getName() {
    return $this->attributes['name'];
  }

  /**
   * Returns the cookie value
   * @return string
   */
  public function getValue() {
    return urldecode($this->attributes['value']);
  }

  /**
   * Returns the cookie domain
   * @return string
   */
  public function getDomain() {
    return $this->attributes['domain'];
  }

  /**
   * Returns the path were the cookie is valid
   * @return string
   */
  public function getPath() {
    return $this->attributes['path'];
  }

  /**
   * Is a secure cookie?
   * @return bool
   */
  public function isSecure() {
    return isset($this->attributes['secure']);
  }

  /**
   * Is http only cookie?
   * @return bool
   */
  public function isHttpOnly() {
    return isset($this->attributes['httponly']);
  }

  /**
   * Returns cookie expiration time
   * @return mixed
   */
  public function getExpirationTime() {
    //TODO: return a \DateTime object
    if (isset($this->attributes['expiry'])) {
      return $this->attributes['expiry'];
    }
    return null;
  }
}