auth.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php namespace System;
  2. if (Config::get('session.driver') == '')
  3. {
  4. throw new \Exception("You must specify a session driver before using the Auth class.");
  5. }
  6. class Auth {
  7. /**
  8. * The current user of the application.
  9. *
  10. * If no user is logged in, this variable will be NULL. Otherwise, it will contain
  11. * the result of the "by_id" closure in the authentication configuration file.
  12. *
  13. * However, the user should typically be accessed via the "user" method.
  14. *
  15. * @var object
  16. * @see user()
  17. */
  18. public static $user;
  19. /**
  20. * The key used to store the user ID in the session.
  21. *
  22. * @var string
  23. */
  24. protected static $key = 'laravel_user_id';
  25. /**
  26. * Determine if the current user of the application is authenticated.
  27. *
  28. * <code>
  29. * if (Auth::check())
  30. * {
  31. * // The user is logged in...
  32. * }
  33. * </code>
  34. *
  35. * @return bool
  36. * @see login
  37. */
  38. public static function check()
  39. {
  40. return ( ! is_null(static::user()));
  41. }
  42. /**
  43. * Get the current user of the application.
  44. *
  45. * To retrieve the user, the user ID stored in the session will be passed to
  46. * the "by_id" closure in the authentication configuration file. The result
  47. * of the closure will be cached and returned.
  48. *
  49. * <code>
  50. * $email = Auth::user()->email;
  51. * </code>
  52. *
  53. * @return object
  54. * @see $user
  55. */
  56. public static function user()
  57. {
  58. if (is_null(static::$user) and Session::has(static::$key))
  59. {
  60. static::$user = call_user_func(Config::get('auth.by_id'), Session::get(static::$key));
  61. }
  62. return static::$user;
  63. }
  64. /**
  65. * Attempt to login a user.
  66. *
  67. * If the user credentials are valid. The user ID will be stored in the session
  68. * and will be considered "logged in" on subsequent requests to the application.
  69. *
  70. * The password passed to the method should be plain text, as it will be hashed
  71. * by the Hash class when authenticating.
  72. *
  73. * <code>
  74. * if (Auth::login('test@gmail.com', 'secret'))
  75. * {
  76. * // The credentials are valid...
  77. * }
  78. * </code>
  79. *
  80. * @param string $username
  81. * @param string $password
  82. * @return bool
  83. * @see Hash::check()
  84. */
  85. public static function login($username, $password)
  86. {
  87. if ( ! is_null($user = call_user_func(Config::get('auth.by_username'), $username)))
  88. {
  89. if (Hash::check($password, $user->password))
  90. {
  91. static::remember($user);
  92. return true;
  93. }
  94. }
  95. return false;
  96. }
  97. /**
  98. * Login a user without checking any credentials.
  99. *
  100. * This is helpful for logging in a user after a fresh registration.
  101. *
  102. * Note: The user given to this method should be an object having a "id" property.
  103. *
  104. * @param object $user
  105. * @return void
  106. */
  107. public static function remember($user)
  108. {
  109. static::$user = $user;
  110. Session::put(static::$key, $user->id);
  111. }
  112. /**
  113. * Log the user out of the application.
  114. *
  115. * The user ID will be removed from the session and the user will no longer
  116. * be considered logged in on subsequent requests.
  117. *
  118. * @return void
  119. */
  120. public static function logout()
  121. {
  122. static::$user = null;
  123. Session::forget(static::$key);
  124. }
  125. }