cookie.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. * @param string $name
  43. * @return void
  44. */
  45. public function __construct($name, $value = null)
  46. {
  47. $this->name = $name;
  48. $this->value = $value;
  49. }
  50. /**
  51. * Create a new Cookie instance.
  52. *
  53. * @param string $name
  54. * @return Cookie
  55. */
  56. public static function make($name, $value = null)
  57. {
  58. return new static($name, $value);
  59. }
  60. /**
  61. * Send the current cookie instance to the user's machine.
  62. *
  63. * @return bool
  64. */
  65. public function send()
  66. {
  67. if (is_null($this->name))
  68. {
  69. throw new \Exception("Error sending cookie. The cookie does not have a name.");
  70. }
  71. return static::put($this->name, $this->value, $this->lifetime, $this->path, $this->domain, $this->secure);
  72. }
  73. /**
  74. * Determine if a cookie or set of cookies exists.
  75. *
  76. * @return bool
  77. */
  78. public static function has()
  79. {
  80. foreach (func_get_args() as $key)
  81. {
  82. if (is_null(static::get($key)))
  83. {
  84. return false;
  85. }
  86. }
  87. return true;
  88. }
  89. /**
  90. * Get the value of a cookie.
  91. *
  92. * @param string $name
  93. * @param mixed $default
  94. * @return string
  95. */
  96. public static function get($name, $default = null)
  97. {
  98. return (array_key_exists($name, $_COOKIE)) ? $_COOKIE[$name] : $default;
  99. }
  100. /**
  101. * Set a "permanent" cookie. The cookie will last 5 years.
  102. *
  103. * @param string $name
  104. * @param string $value
  105. * @param string $path
  106. * @param string $domain
  107. * @param bool $secure
  108. * @return bool
  109. */
  110. public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
  111. {
  112. return static::put($name, $value, 2628000, $path, $domain, $secure);
  113. }
  114. /**
  115. * Set the value of a cookie.
  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. }