cookie.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php namespace Laravel; defined('DS') or die('No direct script access.');
  2. use Closure;
  3. class Cookie {
  4. /**
  5. * The cookies that have been set.
  6. *
  7. * @var array
  8. */
  9. public static $jar = array();
  10. /**
  11. * Determine if a cookie exists.
  12. *
  13. * @param string $name
  14. * @return bool
  15. */
  16. public static function has($name)
  17. {
  18. return ! is_null(static::get($name));
  19. }
  20. /**
  21. * Send all of the cookies to the browser.
  22. *
  23. * @return void
  24. */
  25. public static function send()
  26. {
  27. if (headers_sent()) return false;
  28. // All cookies are stored in the "jar" when set and not sent directly to
  29. // the browser. This simply makes testing all of the cookie stuff very
  30. // easy since the jar can be inspected by tests.
  31. foreach (static::$jar as $cookie)
  32. {
  33. static::set($cookie);
  34. }
  35. }
  36. /**
  37. * Send a cookie from the cookie jar back to the browser.
  38. *
  39. * @param array $cookie
  40. * @return void
  41. */
  42. protected static function set($cookie)
  43. {
  44. extract($cookie);
  45. $time = ($minutes !== 0) ? time() + ($minutes * 60) : 0;
  46. $value = static::sign($name, $value);
  47. // A cookie payload can't exceed 4096 bytes, so if the cookie payload
  48. // is greater than that, we'll raise an error to warn the developer
  49. // since it could cause cookie session problems.
  50. if (strlen($value) > 4000)
  51. {
  52. throw new \Exception("Payload too large for cookie.");
  53. }
  54. else
  55. {
  56. setcookie($name, $value, $time, $path, $domain, $secure);
  57. }
  58. }
  59. /**
  60. * Get the value of a cookie.
  61. *
  62. * <code>
  63. * // Get the value of the "favorite" cookie
  64. * $favorite = Cookie::get('favorite');
  65. *
  66. * // Get the value of a cookie or return a default value
  67. * $favorite = Cookie::get('framework', 'Laravel');
  68. * </code>
  69. *
  70. * @param string $name
  71. * @param mixed $default
  72. * @return string
  73. */
  74. public static function get($name, $default = null)
  75. {
  76. if (isset(static::$jar[$name])) return static::$jar[$name]['value'];
  77. $value = array_get($_COOKIE, $name);
  78. if ( ! is_null($value) and isset($value[40]) and $value[40] == '~')
  79. {
  80. // The hash signature and the cookie value are separated by a tilde
  81. // character for convenience. To separate the hash and the payload
  82. // we can simply expode on that character.
  83. list($hash, $value) = explode('~', $value, 2);
  84. // By re-feeding the cookie value into the "hash" method we should
  85. // be able to generate a hash that matches the one taken from the
  86. // cookie. If they don't, we return null.
  87. if (static::hash($name, $value) === $hash)
  88. {
  89. return $value;
  90. }
  91. }
  92. return value($default);
  93. }
  94. /**
  95. * Set the value of a cookie.
  96. *
  97. * <code>
  98. * // Set the value of the "favorite" cookie
  99. * Cookie::put('favorite', 'Laravel');
  100. *
  101. * // Set the value of the "favorite" cookie for twenty minutes
  102. * Cookie::put('favorite', 'Laravel', 20);
  103. * </code>
  104. *
  105. * @param string $name
  106. * @param string $value
  107. * @param int $minutes
  108. * @param string $path
  109. * @param string $domain
  110. * @param bool $secure
  111. * @return void
  112. */
  113. public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
  114. {
  115. static::$jar[$name] = compact('name', 'value', 'minutes', 'path', 'domain', 'secure');
  116. }
  117. /**
  118. * Set a "permanent" cookie. The cookie will last for one year.
  119. *
  120. * <code>
  121. * // Set a cookie that should last one year
  122. * Cookie::forever('favorite', 'Blue');
  123. * </code>
  124. *
  125. * @param string $name
  126. * @param string $value
  127. * @param string $path
  128. * @param string $domain
  129. * @param bool $secure
  130. * @return bool
  131. */
  132. public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
  133. {
  134. return static::put($name, $value, 525600, $path, $domain, $secure);
  135. }
  136. /**
  137. * Generate a cookie signature based on the contents.
  138. *
  139. * @param string $name
  140. * @param string $value
  141. * @return string
  142. */
  143. public static function sign($name, $value)
  144. {
  145. return static::hash($name, $value).'~'.$value;
  146. }
  147. /**
  148. * Generate a cookie hash based on the contents.
  149. *
  150. * @param string $name
  151. * @param string $value
  152. * @return string
  153. */
  154. protected static function hash($name, $value)
  155. {
  156. return sha1($name.$value.Config::get('application.key'));
  157. }
  158. /**
  159. * Delete a cookie.
  160. *
  161. * @param string $name
  162. * @param string $path
  163. * @param string $domain
  164. * @param bool $secure
  165. * @return bool
  166. */
  167. public static function forget($name, $path = '/', $domain = null, $secure = false)
  168. {
  169. return static::put($name, null, -2000, $path, $domain, $secure);
  170. }
  171. }