auth.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 will be NULL. Otherwise, it will contain the result
  11. * of the "by_id" closure in the authentication configuration file.
  12. *
  13. * Typically, the user should be accessed via the "user" method.
  14. *
  15. * @var object
  16. */
  17. public static $user;
  18. /**
  19. * The key used to store the user ID in the session.
  20. *
  21. * @var string
  22. */
  23. protected static $key = 'laravel_user_id';
  24. /**
  25. * Determine if the current user of the application is authenticated.
  26. *
  27. * @return bool
  28. */
  29. public static function check()
  30. {
  31. return ! is_null(static::user());
  32. }
  33. /**
  34. * Get the current user of the application.
  35. *
  36. * To retrieve the user, the user ID stored in the session will be passed to
  37. * the "by_id" closure in the authentication configuration file. The result
  38. * of the closure will be cached and returned.
  39. *
  40. * @return object
  41. * @see $user
  42. */
  43. public static function user()
  44. {
  45. if (is_null(static::$user) and Session::has(static::$key))
  46. {
  47. static::$user = call_user_func(Config::get('auth.by_id'), Session::get(static::$key));
  48. }
  49. return static::$user;
  50. }
  51. /**
  52. * Attempt to log a user into your application.
  53. *
  54. * If the user credentials are valid. The user's ID will be stored in the session and the
  55. * user will be considered "logged in" on subsequent requests to the application.
  56. *
  57. * The password passed to the method should be plain text, as it will be hashed
  58. * by the Hash class when authenticating.
  59. *
  60. * @param string $username
  61. * @param string $password
  62. * @return bool
  63. */
  64. public static function login($username, $password)
  65. {
  66. if ( ! is_null($user = call_user_func(Config::get('auth.by_username'), $username)))
  67. {
  68. if (Hash::check($password, $user->password))
  69. {
  70. static::remember($user);
  71. return true;
  72. }
  73. }
  74. return false;
  75. }
  76. /**
  77. * Log a user into your application.
  78. *
  79. * The user's ID will be stored in the session and the user will be considered
  80. * "logged in" on subsequent requests to your application.
  81. *
  82. * Note: The user given to this method should be an object having an "id" property.
  83. *
  84. * @param object $user
  85. * @return void
  86. */
  87. public static function remember($user)
  88. {
  89. static::$user = $user;
  90. Session::put(static::$key, $user->id);
  91. }
  92. /**
  93. * Log the user out of your application.
  94. *
  95. * The user ID will be removed from the session and the user will no longer
  96. * be considered logged in on subsequent requests.
  97. *
  98. * @return void
  99. */
  100. public static function logout()
  101. {
  102. static::$user = null;
  103. Session::forget(static::$key);
  104. }
  105. }