This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/BrowserKit/Cookie.php

336 lines
8.6 KiB
PHP
Raw Normal View History

2010-04-19 13:12:42 +01:00
<?php
/*
2010-04-24 00:22:16 +01:00
* This file is part of the Symfony package.
2010-04-19 13:12:42 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-04-19 13:12:42 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\BrowserKit;
2010-04-19 13:12:42 +01:00
/**
* Cookie represents an HTTP cookie.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @api
2010-04-19 13:12:42 +01:00
*/
class Cookie
{
2011-07-24 20:13:25 +01:00
/**
* Handles dates as defined by RFC 2616 section 3.3.1, and also some other
* non-standard, but common formats.
*
* @var array
*/
private static $dateFormats = array(
'D, d M Y H:i:s T',
'D, d-M-y H:i:s T',
'D, d-M-Y H:i:s T',
'D, d-m-y H:i:s T',
'D, d-m-Y H:i:s T',
2011-07-24 20:13:25 +01:00
'D M j G:i:s Y',
'D M d H:i:s Y T',
2011-07-24 20:13:25 +01:00
);
2010-06-23 15:24:24 +01:00
protected $name;
protected $value;
2010-06-23 15:24:24 +01:00
protected $expires;
protected $path;
protected $domain;
protected $secure;
2010-06-23 15:24:24 +01:00
protected $httponly;
protected $rawValue;
2010-04-19 13:12:42 +01:00
/**
* Sets a cookie.
*
2014-11-30 13:33:44 +00:00
* @param string $name The cookie name
* @param string $value The value of the cookie
* @param string $expires The time the cookie expires
* @param string $path The path on the server in which the cookie will be available on
* @param string $domain The domain that the cookie is available
* @param bool $secure Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client
* @param bool $httponly The cookie httponly flag
* @param bool $encodedValue Whether the value is encoded or not
*
* @api
2010-06-23 15:24:24 +01:00
*/
public function __construct($name, $value, $expires = null, $path = null, $domain = '', $secure = false, $httponly = true, $encodedValue = false)
2010-06-23 15:24:24 +01:00
{
2011-05-24 19:23:23 +01:00
if ($encodedValue) {
2014-10-22 19:27:13 +01:00
$this->value = urldecode($value);
$this->rawValue = $value;
} else {
2014-10-22 19:27:13 +01:00
$this->value = $value;
$this->rawValue = urlencode($value);
}
2014-10-22 19:27:13 +01:00
$this->name = $name;
$this->path = empty($path) ? '/' : $path;
$this->domain = $domain;
$this->secure = (bool) $secure;
$this->httponly = (bool) $httponly;
if (null !== $expires) {
$timestampAsDateTime = \DateTime::createFromFormat('U', $expires);
if (false === $timestampAsDateTime) {
throw new \UnexpectedValueException(sprintf('The cookie expiration time "%s" is not valid.', $expires));
}
$this->expires = $timestampAsDateTime->getTimestamp();
}
2010-06-23 15:24:24 +01:00
}
/**
* Returns the HTTP representation of the Cookie.
*
* @return string The HTTP representation of the Cookie
*
* @throws \UnexpectedValueException
*
* @api
2010-06-23 15:24:24 +01:00
*/
public function __toString()
{
$cookie = sprintf('%s=%s', $this->name, $this->rawValue);
2010-06-23 15:24:24 +01:00
if (null !== $this->expires) {
$dateTime = \DateTime::createFromFormat('U', $this->expires, new \DateTimeZone('GMT'));
$cookie .= '; expires='.str_replace('+0000', '', $dateTime->format(self::$dateFormats[0]));
2010-06-23 15:24:24 +01:00
}
if ('' !== $this->domain) {
$cookie .= '; domain='.$this->domain;
}
if ($this->path) {
2010-06-28 07:31:22 +01:00
$cookie .= '; path='.$this->path;
}
2010-06-23 15:24:24 +01:00
if ($this->secure) {
$cookie .= '; secure';
}
if ($this->httponly) {
$cookie .= '; httponly';
}
return $cookie;
}
/**
* Creates a Cookie instance from a Set-Cookie header value.
*
* @param string $cookie A Set-Cookie header value
* @param string $url The base URL
*
* @return Cookie A Cookie instance
*
* @throws \InvalidArgumentException
*
* @api
*/
2012-07-09 13:38:28 +01:00
public static function fromString($cookie, $url = null)
{
2010-06-23 15:24:24 +01:00
$parts = explode(';', $cookie);
if (false === strpos($parts[0], '=')) {
throw new \InvalidArgumentException(sprintf('The cookie string "%s" is not valid.', $parts[0]));
2010-06-23 15:24:24 +01:00
}
list($name, $value) = explode('=', array_shift($parts), 2);
$values = array(
2014-10-22 19:27:13 +01:00
'name' => trim($name),
'value' => trim($value),
'expires' => null,
'path' => '/',
'domain' => '',
'secure' => false,
2010-06-23 15:24:24 +01:00
'httponly' => false,
'passedRawValue' => true,
2010-06-23 15:24:24 +01:00
);
if (null !== $url) {
2014-04-22 15:58:51 +01:00
if ((false === $urlParts = parse_url($url)) || !isset($urlParts['host'])) {
2010-06-23 15:24:24 +01:00
throw new \InvalidArgumentException(sprintf('The URL "%s" is not valid.', $url));
}
2011-06-08 11:12:55 +01:00
2013-04-20 19:04:45 +01:00
$values['domain'] = $urlParts['host'];
2014-04-22 15:58:51 +01:00
$values['path'] = isset($urlParts['path']) ? substr($urlParts['path'], 0, strrpos($urlParts['path'], '/')) : '';
2010-06-23 15:24:24 +01:00
}
foreach ($parts as $part) {
$part = trim($part);
if ('secure' === strtolower($part)) {
// Ignore the secure flag if the original URI is not given or is not HTTPS
if (!$url || !isset($urlParts['scheme']) || 'https' != $urlParts['scheme']) {
continue;
}
2010-06-23 15:24:24 +01:00
$values['secure'] = true;
continue;
}
if ('httponly' === strtolower($part)) {
$values['httponly'] = true;
continue;
}
if (2 === count($elements = explode('=', $part, 2))) {
if ('expires' === strtolower($elements[0])) {
2011-07-24 20:13:25 +01:00
$elements[1] = self::parseDate($elements[1]);
2010-06-23 15:24:24 +01:00
}
$values[strtolower($elements[0])] = $elements[1];
}
}
return new static(
$values['name'],
$values['value'],
$values['expires'],
$values['path'],
$values['domain'],
$values['secure'],
$values['httponly'],
$values['passedRawValue']
2010-06-23 15:24:24 +01:00
);
}
2010-04-19 13:12:42 +01:00
2011-07-24 20:13:25 +01:00
private static function parseDate($dateValue)
{
// trim single quotes around date if present
if (($length = strlen($dateValue)) > 1 && "'" === $dateValue[0] && "'" === $dateValue[$length - 1]) {
2011-07-24 20:13:25 +01:00
$dateValue = substr($dateValue, 1, -1);
}
foreach (self::$dateFormats as $dateFormat) {
if (false !== $date = \DateTime::createFromFormat($dateFormat, $dateValue, new \DateTimeZone('GMT'))) {
return $date->getTimestamp();
}
}
// attempt a fallback for unusual formatting
if (false !== $date = date_create($dateValue, new \DateTimeZone('GMT'))) {
return $date->getTimestamp();
}
2011-07-24 20:13:25 +01:00
throw new \InvalidArgumentException(sprintf('Could not parse date "%s".', $dateValue));
}
/**
* Gets the name of the cookie.
*
* @return string The cookie name
*
* @api
*/
public function getName()
{
return $this->name;
}
2010-04-19 13:12:42 +01:00
/**
* Gets the value of the cookie.
*
* @return string The cookie value
*
* @api
*/
public function getValue()
{
return $this->value;
}
2010-04-19 13:12:42 +01:00
/**
2011-05-22 21:43:45 +01:00
* Gets the raw value of the cookie.
*
* @return string The cookie value
*
* @api
*/
public function getRawValue()
{
return $this->rawValue;
}
/**
2010-06-23 15:24:24 +01:00
* Gets the expires time of the cookie.
*
2010-06-23 15:24:24 +01:00
* @return string The cookie expires time
*
* @api
*/
2010-06-23 15:24:24 +01:00
public function getExpiresTime()
{
2010-06-23 15:24:24 +01:00
return $this->expires;
}
2010-04-19 13:12:42 +01:00
/**
* Gets the path of the cookie.
*
* @return string The cookie path
*
* @api
*/
public function getPath()
{
return $this->path;
}
2010-04-19 13:12:42 +01:00
/**
* Gets the domain of the cookie.
*
* @return string The cookie domain
*
* @api
*/
public function getDomain()
{
return $this->domain;
}
2010-04-19 13:12:42 +01:00
/**
* Returns the secure flag of the cookie.
*
2014-11-30 13:33:44 +00:00
* @return bool The cookie secure flag
*
* @api
*/
public function isSecure()
{
return $this->secure;
}
2010-04-19 13:12:42 +01:00
2010-06-23 15:24:24 +01:00
/**
* Returns the httponly flag of the cookie.
*
2014-11-30 13:33:44 +00:00
* @return bool The cookie httponly flag
*
* @api
2010-06-23 15:24:24 +01:00
*/
public function isHttpOnly()
2010-06-23 15:24:24 +01:00
{
return $this->httponly;
}
/**
* Returns true if the cookie has expired.
*
2014-11-30 13:33:44 +00:00
* @return bool true if the cookie has expired, false otherwise
*
* @api
*/
public function isExpired()
{
return null !== $this->expires && 0 !== $this->expires && $this->expires < time();
}
2010-04-19 13:12:42 +01:00
}