cookie.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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 exists.
  75. *
  76. * @param string $name
  77. * @return bool
  78. */
  79. public static function has($name)
  80. {
  81. foreach (func_get_args() as $key)
  82. {
  83. if (is_null(static::get($key)))
  84. {
  85. return false;
  86. }
  87. }
  88. return true;
  89. }
  90. /**
  91. * Get the value of a cookie.
  92. *
  93. * @param string $name
  94. * @param mixed $default
  95. * @return string
  96. */
  97. public static function get($name, $default = null)
  98. {
  99. return (array_key_exists($name, $_COOKIE)) ? $_COOKIE[$name] : $default;
  100. }
  101. /**
  102. * Set a "permanent" cookie. The cookie will last 5 years.
  103. *
  104. * @param string $name
  105. * @param string $value
  106. * @param string $path
  107. * @param string $domain
  108. * @param bool $secure
  109. * @return bool
  110. */
  111. public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
  112. {
  113. return static::put($name, $value, 2628000, $path, $domain, $secure);
  114. }
  115. /**
  116. * Set the value of a cookie.
  117. *
  118. * @param string $name
  119. * @param string $value
  120. * @param int $minutes
  121. * @param string $path
  122. * @param string $domain
  123. * @param bool $secure
  124. * @return bool
  125. */
  126. public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
  127. {
  128. if ($minutes < 0)
  129. {
  130. unset($_COOKIE[$name]);
  131. }
  132. return setcookie($name, $value, ($minutes != 0) ? time() + ($minutes * 60) : 0, $path, $domain, $secure);
  133. }
  134. /**
  135. * Delete a cookie.
  136. *
  137. * @param string $name
  138. * @return bool
  139. */
  140. public static function forget($name)
  141. {
  142. return static::put($key, null, -60);
  143. }
  144. }