cookie.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php namespace Laravel; use Closure;
  2. if (trim(Config::$items['application']['key']) === '')
  3. {
  4. throw new \LogicException('The cookie class may not be used without an application key.');
  5. }
  6. class Cookie {
  7. /**
  8. * Determine if a cookie exists.
  9. *
  10. * @param string $name
  11. * @return bool
  12. */
  13. public static function has($name)
  14. {
  15. return ! is_null(static::get($name));
  16. }
  17. /**
  18. * Get the value of a cookie.
  19. *
  20. * @param string $name
  21. * @param mixed $default
  22. * @return string
  23. */
  24. public static function get($name, $default = null)
  25. {
  26. $value = Arr::get($_COOKIE, $name);
  27. if ( ! is_null($value))
  28. {
  29. // All Laravel managed cookies are "signed" with a fingerprint hash.
  30. // The hash serves to verify that the contents of the cookie have not
  31. // been modified by the user. We can verify the integrity of the cookie
  32. // by extracting the value and re-hashing it, then comparing that hash
  33. // against the hash stored in the cookie.
  34. if (isset($value[40]) and $value[40] === '~')
  35. {
  36. list($hash, $value) = explode('~', $value, 2);
  37. if (static::hash($name, $value) === $hash)
  38. {
  39. return $value;
  40. }
  41. }
  42. }
  43. return ($default instanceof Closure) ? call_user_func($default) : $default;
  44. }
  45. /**
  46. * Set a "permanent" cookie. The cookie will last for one year.
  47. *
  48. * @param string $name
  49. * @param string $value
  50. * @param string $path
  51. * @param string $domain
  52. * @param bool $secure
  53. * @param bool $http_only
  54. * @return bool
  55. */
  56. public static function forever($name, $value, $path = '/', $domain = null, $secure = false, $http_only = false)
  57. {
  58. return static::put($name, $value, 525600, $path, $domain, $secure, $http_only);
  59. }
  60. /**
  61. * Set the value of a cookie.
  62. *
  63. * If a negative number of minutes is specified, the cookie will be deleted.
  64. *
  65. * This method's signature is very similar to the PHP setcookie method.
  66. * However, you simply need to pass the number of minutes for which you
  67. * wish the cookie to be valid. No funky time calculation is required.
  68. *
  69. * @param string $name
  70. * @param string $value
  71. * @param int $minutes
  72. * @param string $path
  73. * @param string $domain
  74. * @param bool $secure
  75. * @param bool $http_only
  76. * @return bool
  77. */
  78. public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false, $http_only = false)
  79. {
  80. if (headers_sent()) return false;
  81. $time = ($minutes !== 0) ? time() + ($minutes * 60) : 0;
  82. $value = static::hash($name, $value).'~'.$value;
  83. if ($minutes < 0)
  84. {
  85. unset($_COOKIE[$name]);
  86. }
  87. else
  88. {
  89. $_COOKIE[$name] = $value;
  90. }
  91. return setcookie($name, $value, $time, $path, $domain, $secure, $http_only);
  92. }
  93. /**
  94. * Generate a cookie hash.
  95. *
  96. * Cookie salts are used to verify that the contents of the cookie have not
  97. * been modified by the user, since they serve as a fingerprint of the cookie
  98. * contents. The application key is used to salt the salts.
  99. *
  100. * When the cookie is read using the "get" method, the value will be extracted
  101. * from the cookie and hashed, if the hash in the cookie and the hashed value
  102. * do not match, we know the cookie has been changed on the client.
  103. *
  104. * @param string $name
  105. * @param string $value
  106. * @return string
  107. */
  108. protected static function hash($name, $value)
  109. {
  110. return sha1($name.$value.Config::$items['application']['key']);
  111. }
  112. /**
  113. * Delete a cookie.
  114. *
  115. * @param string $name
  116. * @return bool
  117. */
  118. public static function forget($name)
  119. {
  120. return static::put($name, null, -2000);
  121. }
  122. }