cookie.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php namespace System;
  2. class Cookie {
  3. /**
  4. * The cookie name.
  5. *
  6. * @var string
  7. */
  8. public $name;
  9. /**
  10. * The cookie value.
  11. *
  12. * @var mixed
  13. */
  14. public $value;
  15. /**
  16. * The number of minutes the cookie should live.
  17. *
  18. * @var int
  19. */
  20. public $lifetime = 0;
  21. /**
  22. * The path for which the cookie is available.
  23. *
  24. * @var string
  25. */
  26. public $path = '/';
  27. /**
  28. * The domain for which the cookie is available.
  29. *
  30. * @var string
  31. */
  32. public $domain = null;
  33. /**
  34. * Indicates if the cookie should only be sent over HTTPS.
  35. *
  36. * @var bool
  37. */
  38. public $secure = false;
  39. /**
  40. * Create a new Cookie instance.
  41. *
  42. * Note: Cookies can be sent using the Cookie::put method.
  43. * However, the number of parameters that method requires
  44. * is somewhat cumbersome. Instantiating a new Cookie class
  45. * and setting the properties can be a little easier on the eyes.
  46. *
  47. * @param string $name
  48. * @return void
  49. */
  50. public function __construct($name, $value = null)
  51. {
  52. $this->name = $name;
  53. $this->value = $value;
  54. }
  55. /**
  56. * Create a new Cookie instance.
  57. *
  58. * @param string $name
  59. * @return Cookie
  60. */
  61. public static function make($name, $value = null)
  62. {
  63. return new static($name, $value);
  64. }
  65. /**
  66. * Send the current cookie instance to the user's machine.
  67. *
  68. * @return bool
  69. */
  70. public function send()
  71. {
  72. if (is_null($this->name))
  73. {
  74. throw new \Exception("Attempting to send cookie without a name.");
  75. }
  76. return static::put($this->name, $this->value, $this->lifetime, $this->path, $this->domain, $this->secure);
  77. }
  78. /**
  79. * Determine if a cookie exists.
  80. *
  81. * @param string $name
  82. * @return bool
  83. */
  84. public static function has($name)
  85. {
  86. return ! is_null(static::get($name));
  87. }
  88. /**
  89. * Get the value of a cookie.
  90. *
  91. * @param string $name
  92. * @param mixed $default
  93. * @return string
  94. */
  95. public static function get($name, $default = null)
  96. {
  97. return (array_key_exists($name, $_COOKIE)) ? $_COOKIE[$name] : $default;
  98. }
  99. /**
  100. * Set a "permanent" cookie. The cookie will last 5 years.
  101. *
  102. * @param string $name
  103. * @param string $value
  104. * @param string $path
  105. * @param string $domain
  106. * @param bool $secure
  107. * @return bool
  108. */
  109. public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
  110. {
  111. return static::put($name, $value, 2628000, $path, $domain, $secure);
  112. }
  113. /**
  114. * Set the value of a cookie. If a negative number of minutes is
  115. * specified, the cookie will be deleted.
  116. *
  117. * @param string $name
  118. * @param string $value
  119. * @param int $minutes
  120. * @param string $path
  121. * @param string $domain
  122. * @param bool $secure
  123. * @return bool
  124. */
  125. public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
  126. {
  127. if ($minutes < 0)
  128. {
  129. unset($_COOKIE[$name]);
  130. }
  131. return setcookie($name, $value, ($minutes != 0) ? time() + ($minutes * 60) : 0, $path, $domain, $secure);
  132. }
  133. /**
  134. * Delete a cookie.
  135. *
  136. * @param string $name
  137. * @return bool
  138. */
  139. public static function forget($name)
  140. {
  141. return static::put($key, null, -60);
  142. }
  143. }