/library/Zend/Http/Header/SetCookie.php
https://github.com/noose/zf2 · PHP · 399 lines · 221 code · 52 blank · 126 comment · 36 complexity · 6872f3864081d4ea286239668b3892f5 MD5 · raw file
- <?php
- namespace Zend\Http\Header;
- /**
- * @throws Exception\InvalidArgumentException
- * @see http://www.ietf.org/rfc/rfc2109.txt
- * @see http://www.w3.org/Protocols/rfc2109/rfc2109
- */
- class SetCookie implements MultipleHeaderDescription
- {
- /**
- * Cookie name
- *
- * @var string
- */
- protected $name = null;
- /**
- * Cookie value
- *
- * @var string
- */
- protected $value = null;
- /**
- * Cookie expiry date
- *
- * @var int
- */
- protected $expires = null;
- /**
- * Cookie domain
- *
- * @var string
- */
- protected $domain = null;
- /**
- * Cookie path
- *
- * @var string
- */
- protected $path = null;
- /**
- * Whether the cookie is secure or not
- *
- * @var boolean
- */
- protected $secure = null;
- /**
- * @var true
- */
- protected $httponly = null;
- /**
- * @static
- * @throws Exception\InvalidArgumentException
- * @param $headerLine
- * @param bool $bypassHeaderFieldName
- * @return array|SetCookie
- */
- public static function fromString($headerLine, $bypassHeaderFieldName = false)
- {
- /* @var $setCookieProcessor Closure */
- static $setCookieProcessor = null;
- if ($setCookieProcessor === null) {
- $setCookieClass = get_called_class();
- $setCookieProcessor = function($headerLine) use ($setCookieClass) {
- $header = new $setCookieClass;
- $keyValuePairs = preg_split('#;\s*#', $headerLine);
- foreach ($keyValuePairs as $keyValue) {
- if (strpos($keyValue, '=')) {
- list($headerKey, $headerValue) = preg_split('#=\s*#', $keyValue, 2);
- } else {
- $headerKey = $keyValue;
- $headerValue = null;
- }
- switch (str_replace(array('-', '_'), '', strtolower($headerKey))) {
- case 'expires': $header->setExpires($headerValue); break;
- case 'domain': $header->setDomain($headerValue); break;
- case 'path': $header->setPath($headerValue); break;
- case 'secure': $header->setSecure(true); break;
- case 'httponly': $header->setHttponly(true); break;
- default:
- $header->setName($headerKey);
- $header->setValue($headerValue);
- }
- }
- return $header;
- };
- }
- list($name, $value) = preg_split('#: #', $headerLine, 2);
- // check to ensure proper header type for this factory
- if (strtolower($name) !== 'set-cookie') {
- throw new Exception\InvalidArgumentException('Invalid header line for Set-Cookie string');
- }
- $multipleHeaders = preg_split('#(?<!Sun|Mon|Tue|Wed|Thu|Fri|Sat),\s*#', $value);
- if (count($multipleHeaders) <= 1) {
- return $setCookieProcessor(array_pop($multipleHeaders));
- } else {
- $headers = array();
- foreach ($multipleHeaders as $headerLine) {
- $headers[] = $setCookieProcessor($headerLine);
- }
- return $headers;
- }
- }
- /**
- * Cookie object constructor
- *
- * @todo Add validation of each one of the parameters (legal domain, etc.)
- *
- * @param string $name
- * @param string $value
- * @param string $domain
- * @param int $expires
- * @param string $path
- * @param bool $secure
- * @param bool $httponly
- * @return SetCookie
- */
- public function __construct($name = null, $value = null, $domain = null, $expires = null, $path = null, $secure = false, $httponly = true)
- {
- $this->type = 'Cookie';
- if ($name) {
- $this->setName($name);
- }
- if ($value) {
- $this->setValue($value); // in parent
- }
- if ($domain) {
- $this->setDomain($domain);
- }
- if ($expires) {
- $this->setExpires($expires);
- }
- if ($secure) {
- $this->setSecure($secure);
- }
- }
- /**
- * @return string 'Set-Cookie'
- */
- public function getFieldName()
- {
- return 'Set-Cookie';
- }
- /**
- * @throws Exception\RuntimeException
- * @return string
- */
- public function getFieldValue()
- {
- if ($this->getName() == '') {
- throw new Exception\RuntimeException('A cookie name is required to generate a field value for this cookie');
- }
- $fieldValue = $this->getName() . '=' . urlencode($this->getValue());
- if (($expires = $this->getExpires())) {
- $fieldValue .= '; Expires=' . $expires;
- }
- if (($domain = $this->getDomain())) {
- $fieldValue .= '; Domain=' . $domain;
- }
- if (($path = $this->getPath())) {
- $fieldValue .= '; Path=' . $path;
- }
- if ($this->isSecure()) {
- $fieldValue .= '; Secure';
- }
- if ($this->isHttponly()) {
- $fieldValue .= '; HttpOnly';
- }
- return $fieldValue;
- }
- /**
- * @param string $name
- * @return SetCookie
- */
- public function setName($name)
- {
- if (preg_match("/[=,; \t\r\n\013\014]/", $name)) {
- throw new Exception\InvalidArgumentException("Cookie name cannot contain these characters: =,; \\t\\r\\n\\013\\014 ({$name})");
- }
- $this->name = $name;
- return $this;
- }
- /**
- * @return string
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * @param string $value
- */
- public function setValue($value)
- {
- $this->value = $value;
- }
- /**
- * @return string
- */
- public function getValue()
- {
- return $this->value;
- }
- /**
- * @param int $expires
- * @return SetCookie
- */
- public function setExpires($expires)
- {
- if (!empty($expires)) {
- if (is_string($expires)) {
- $expires = strtotime($expires);
- } elseif (!is_int($expires)) {
- throw new Exception\InvalidArgumentException('Invalid expires time specified');
- }
- $this->expires = (int) $expires;
- }
- return $this;
- }
- /**
- * @return int
- */
- public function getExpires($inSeconds = false)
- {
- if ($this->expires == null) {
- return;
- }
- if ($inSeconds) {
- return $this->expires;
- }
- return gmdate('D, d-M-Y H:i:s', $this->expires) . ' GMT';
- }
- /**
- * @param string $domain
- */
- public function setDomain($domain)
- {
- $this->domain = $domain;
- }
- /**
- * @return string
- */
- public function getDomain()
- {
- return $this->domain;
- }
- /**
- * @param string $path
- */
- public function setPath($path)
- {
- $this->path = $path;
- }
- /**
- * @return string
- */
- public function getPath()
- {
- return $this->path;
- }
- /**
- * @param boolean $secure
- */
- public function setSecure($secure)
- {
- $this->secure = $secure;
- }
- /**
- * @return boolean
- */
- public function isSecure()
- {
- return $this->secure;
- }
- /**
- * @param \Zend\Http\Header\true $httponly
- */
- public function setHttponly($httponly)
- {
- $this->httponly = $httponly;
- }
- /**
- * @return \Zend\Http\Header\true
- */
- public function isHttponly()
- {
- return $this->httponly;
- }
- /**
- * Check whether the cookie has expired
- *
- * Always returns false if the cookie is a session cookie (has no expiry time)
- *
- * @param int $now Timestamp to consider as "now"
- * @return boolean
- */
- public function isExpired($now = null)
- {
- if ($now === null) {
- $now = time();
- }
- if (is_int($this->expires) && $this->expires < $now) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * Check whether the cookie is a session cookie (has no expiry time set)
- *
- * @return boolean
- */
- public function isSessionCookie()
- {
- return ($this->expires === null);
- }
- public function isValidForRequest($requestDomain, $path, $isSecure = false)
- {
- if ($this->getDomain() && (strrpos($requestDomain, $this->getDomain()) !== false)) {
- return false;
- }
-
- if ($this->getPath() && (strpos($path, $this->getPath()) !== 0)) {
- return false;
- }
-
- if ($this->secure && $this->isSecure()!==$isSecure) {
- return false;
- }
-
- return true;
- }
- public function toString()
- {
- return 'Set-Cookie: ' . $this->getFieldValue();
- }
- public function toStringMultipleHeaders(array $headers)
- {
- $headerLine = $this->toString();
- /* @var $header SetCookie */
- foreach ($headers as $header) {
- if (!$header instanceof SetCookie) {
- throw new Exception\RuntimeException(
- 'The SetCookie multiple header implementation can only accept an array of SetCookie headers'
- );
- }
- $headerLine .= ', ' . $header->getFieldValue();
- }
- return $headerLine;
- }
- }