cookie.php 2.8 KB

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