auth.php 2.8 KB

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