Cookie.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation;
  11. /**
  12. * Represents a cookie
  13. *
  14. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  15. *
  16. * @api
  17. */
  18. class Cookie
  19. {
  20. protected $name;
  21. protected $value;
  22. protected $domain;
  23. protected $expire;
  24. protected $path;
  25. protected $secure;
  26. protected $httpOnly;
  27. /**
  28. * Constructor.
  29. *
  30. * @param string $name The name of the cookie
  31. * @param string $value The value of the cookie
  32. * @param integer|string|\DateTime $expire The time the cookie expires
  33. * @param string $path The path on the server in which the cookie will be available on
  34. * @param string $domain The domain that the cookie is available to
  35. * @param Boolean $secure Whether the cookie should only be transmitted over a secure HTTPS connection from the client
  36. * @param Boolean $httpOnly Whether the cookie will be made accessible only through the HTTP protocol
  37. *
  38. * @api
  39. */
  40. public function __construct($name, $value = null, $expire = 0, $path = '/', $domain = null, $secure = false, $httpOnly = true)
  41. {
  42. // from PHP source code
  43. if (preg_match("/[=,; \t\r\n\013\014]/", $name)) {
  44. throw new \InvalidArgumentException(sprintf('The cookie name "%s" contains invalid characters.', $name));
  45. }
  46. if (preg_match("/[,; \t\r\n\013\014]/", $value)) {
  47. throw new \InvalidArgumentException(sprintf('The cookie value "%s" contains invalid characters.', $value));
  48. }
  49. if (empty($name)) {
  50. throw new \InvalidArgumentException('The cookie name cannot be empty.');
  51. }
  52. // convert expiration time to a Unix timestamp
  53. if ($expire instanceof \DateTime) {
  54. $expire = $expire->format('U');
  55. } elseif (!is_numeric($expire)) {
  56. $expire = strtotime($expire);
  57. if (false === $expire || -1 === $expire) {
  58. throw new \InvalidArgumentException('The cookie expiration time is not valid.');
  59. }
  60. }
  61. $this->name = $name;
  62. $this->value = $value;
  63. $this->domain = $domain;
  64. $this->expire = $expire;
  65. $this->path = $path;
  66. $this->secure = (Boolean) $secure;
  67. $this->httpOnly = (Boolean) $httpOnly;
  68. }
  69. public function __toString()
  70. {
  71. $str = urlencode($this->getName()).'=';
  72. if ('' === (string) $this->getValue()) {
  73. $str .= 'deleted; expires='.gmdate("D, d-M-Y H:i:s T", time() - 31536001);
  74. } else {
  75. $str .= urlencode($this->getValue());
  76. if ($this->getExpiresTime() !== 0) {
  77. $str .= '; expires='.gmdate("D, d-M-Y H:i:s T", $this->getExpiresTime());
  78. }
  79. }
  80. if (null !== $this->getPath()) {
  81. $str .= '; path='.$this->getPath();
  82. }
  83. if (null !== $this->getDomain()) {
  84. $str .= '; domain='.$this->getDomain();
  85. }
  86. if (true === $this->isSecure()) {
  87. $str .= '; secure';
  88. }
  89. if (true === $this->isHttpOnly()) {
  90. $str .= '; httponly';
  91. }
  92. return $str;
  93. }
  94. /**
  95. * Gets the name of the cookie.
  96. *
  97. * @return string
  98. *
  99. * @api
  100. */
  101. public function getName()
  102. {
  103. return $this->name;
  104. }
  105. /**
  106. * Gets the value of the cookie.
  107. *
  108. * @return string
  109. *
  110. * @api
  111. */
  112. public function getValue()
  113. {
  114. return $this->value;
  115. }
  116. /**
  117. * Gets the domain that the cookie is available to.
  118. *
  119. * @return string
  120. *
  121. * @api
  122. */
  123. public function getDomain()
  124. {
  125. return $this->domain;
  126. }
  127. /**
  128. * Gets the time the cookie expires.
  129. *
  130. * @return integer
  131. *
  132. * @api
  133. */
  134. public function getExpiresTime()
  135. {
  136. return $this->expire;
  137. }
  138. /**
  139. * Gets the path on the server in which the cookie will be available on.
  140. *
  141. * @return string
  142. *
  143. * @api
  144. */
  145. public function getPath()
  146. {
  147. return $this->path;
  148. }
  149. /**
  150. * Checks whether the cookie should only be transmitted over a secure HTTPS connection from the client.
  151. *
  152. * @return Boolean
  153. *
  154. * @api
  155. */
  156. public function isSecure()
  157. {
  158. return $this->secure;
  159. }
  160. /**
  161. * Checks whether the cookie will be made accessible only through the HTTP protocol.
  162. *
  163. * @return Boolean
  164. *
  165. * @api
  166. */
  167. public function isHttpOnly()
  168. {
  169. return $this->httpOnly;
  170. }
  171. /**
  172. * Whether this cookie is about to be cleared
  173. *
  174. * @return Boolean
  175. *
  176. * @api
  177. */
  178. public function isCleared()
  179. {
  180. return $this->expire < time();
  181. }
  182. }