auth.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php namespace Laravel;
  2. class Auth {
  3. /**
  4. * The current user of the application.
  5. *
  6. * @var object
  7. */
  8. protected static $user;
  9. /**
  10. * The key used when storing the user ID in the session.
  11. *
  12. * @var string
  13. */
  14. const user_key = 'laravel_user_id';
  15. /**
  16. * The key used when setting the "remember me" cookie.
  17. *
  18. * @var string
  19. */
  20. const remember_key = 'laravel_remember';
  21. /**
  22. * Determine if the user of the application is not logged in.
  23. *
  24. * This method is the inverse of the "check" method.
  25. *
  26. * @return bool
  27. */
  28. public static function guest()
  29. {
  30. return ! static::check();
  31. }
  32. /**
  33. * Determine if the user of the application is logged in.
  34. *
  35. * @return bool
  36. */
  37. public static function check()
  38. {
  39. return ! is_null(static::user());
  40. }
  41. /**
  42. * Get the current user of the application.
  43. *
  44. * This method will call the "user" closure in the auth configuration file.
  45. * If the user is not authenticated, null will be returned by the methd.
  46. *
  47. * If no user exists in the session, the method will check for a "remember me"
  48. * cookie and attempt to login the user based on the value of that cookie.
  49. *
  50. * <code>
  51. * // Get the current user of the application
  52. * $user = Auth::user();
  53. *
  54. * // Access a property on the current user of the application
  55. * $email = Auth::user()->email;
  56. * </code>
  57. *
  58. * @return object
  59. */
  60. public static function user()
  61. {
  62. if ( ! is_null(static::$user)) return static::$user;
  63. $id = IoC::core('session')->get(Auth::user_key);
  64. static::$user = call_user_func(Config::get('auth.user'), $id);
  65. // If the user was not found in the database, but a "remember me" cookie
  66. // exists, we will attempt to recall the user based on the cookie value.
  67. if (is_null(static::$user) and ! is_null($cookie = Cookie::get(Auth::remember_key)))
  68. {
  69. static::$user = static::recall($cookie);
  70. }
  71. return static::$user;
  72. }
  73. /**
  74. * Attempt to login a user based on a long-lived "remember me" cookie.
  75. *
  76. * We should be able to trust the cookie is valid, since all cookies
  77. * set by Laravel include a fingerprint hash to ensure the cookie
  78. * value is not changed on the client.
  79. *
  80. * @param string $cookie
  81. * @return mixed
  82. */
  83. protected static function recall($cookie)
  84. {
  85. $cookie = explode('|', Crypter::decrypt($cookie));
  86. if ( ! is_null($user = call_user_func(Config::get('auth.user'), $cookie[0])))
  87. {
  88. static::login($user);
  89. return $user;
  90. }
  91. }
  92. /**
  93. * Attempt to log a user into the application.
  94. *
  95. * If the credentials are valid, the user will be logged into the application
  96. * and their user ID will be stored in the session via the "login" method.
  97. *
  98. * The user may also be "remembered", which will keep the user logged into the
  99. * application for one year or until they logout. The user is remembered via
  100. * an encrypted cookie.
  101. *
  102. * @param string $username
  103. * @param string $password
  104. * @param bool $remember
  105. * @return bool
  106. */
  107. public static function attempt($username, $password = null, $remember = false)
  108. {
  109. $config = Config::get('auth');
  110. $user = call_user_func($config['attempt'], $username, $password, $config);
  111. if ( ! is_null($user))
  112. {
  113. static::login($user, $remember);
  114. return true;
  115. }
  116. return false;
  117. }
  118. /**
  119. * Log a user into the application.
  120. *
  121. * An object representing the user or an integer user ID may be given to the method.
  122. * If an object is given, the object must have an "id" property containing the user
  123. * ID as it is stored in the database.
  124. *
  125. * <code>
  126. * // Login a user by passing a user object
  127. * Auth::login($user);
  128. *
  129. * // Login the user with an ID of 15
  130. * Auth::login(15);
  131. *
  132. * // Login a user and set a "remember me" cookie
  133. * Auth::login($user, true);
  134. * </code>
  135. *
  136. * @param object|int $user
  137. * @param bool $remember
  138. * @return void
  139. */
  140. public static function login($user, $remember = false)
  141. {
  142. $id = (is_object($user)) ? $user->id : (int) $user;
  143. if ($remember) static::remember($id);
  144. IoC::core('session')->put(Auth::user_key, $id);
  145. }
  146. /**
  147. * Set a cookie so that users are "remembered" and don't need to login.
  148. *
  149. * @param string $id
  150. * @return void
  151. */
  152. protected static function remember($id)
  153. {
  154. $cookie = Crypter::encrypt($id.'|'.Str::random(40));
  155. // This method assumes the "remember me" cookie should have the same
  156. // configuration as the session cookie. Since this cookie, like the
  157. // session cookie, should be kept very secure, it's probably safe
  158. // to assume the settings are the same.
  159. $config = Config::get('session');
  160. extract($config, EXTR_SKIP);
  161. Cookie::forever(Auth::remember_key, $cookie, $path, $domain, $secure);
  162. }
  163. /**
  164. * Log the current user out of the application.
  165. *
  166. * The "logout" closure in the authenciation configuration file will be
  167. * called. All authentication cookies will be deleted and the user ID
  168. * will be removed from the session.
  169. *
  170. * @return void
  171. */
  172. public static function logout()
  173. {
  174. call_user_func(Config::get('auth.logout'), static::user());
  175. static::$user = null;
  176. Cookie::forget(Auth::user_key);
  177. Cookie::forget(Auth::remember_key);
  178. IoC::core('session')->forget(Auth::user_key);
  179. }
  180. }