auth.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php namespace System;
  2. class Auth {
  3. /**
  4. * The current user of the application.
  5. *
  6. * @var object
  7. */
  8. public static $user;
  9. /**
  10. * The key used to store the user ID in the session.
  11. *
  12. * @var string
  13. */
  14. private static $key = 'laravel_user_id';
  15. /**
  16. * Determine if the current user of the application is authenticated.
  17. *
  18. * @return bool
  19. */
  20. public static function check()
  21. {
  22. return ( ! is_null(static::user()));
  23. }
  24. /**
  25. * Get the current user of the application.
  26. *
  27. * @return object
  28. */
  29. public static function user()
  30. {
  31. // -----------------------------------------------------
  32. // Verify that sessions are enabled.
  33. // -----------------------------------------------------
  34. if (Config::get('session.driver') == '')
  35. {
  36. throw new \Exception("You must specify a session driver before using the Auth class.");
  37. }
  38. // -----------------------------------------------------
  39. // Get the authentication model.
  40. // -----------------------------------------------------
  41. $model = static::model();
  42. // -----------------------------------------------------
  43. // Load the user using the ID stored in the session.
  44. // -----------------------------------------------------
  45. if (is_null(static::$user) and Session::has(static::$key))
  46. {
  47. static::$user = $model::find(Session::get(static::$key));
  48. }
  49. return static::$user;
  50. }
  51. /**
  52. * Attempt to login a user.
  53. *
  54. * @param string $username
  55. * @param string $password
  56. */
  57. public static function login($username, $password)
  58. {
  59. // -----------------------------------------------------
  60. // Get the authentication model.
  61. // -----------------------------------------------------
  62. $model = static::model();
  63. // -----------------------------------------------------
  64. // Get the user by username.
  65. // -----------------------------------------------------
  66. $user = $model::where(Config::get('auth.username'), '=', $username)->first();
  67. if ( ! is_null($user))
  68. {
  69. // -----------------------------------------------------
  70. // Hash the password.
  71. // -----------------------------------------------------
  72. $password = (isset($user->salt)) ? Hash::make($password, $user->salt)->value : sha1($password);
  73. // -----------------------------------------------------
  74. // Verify that the passwords match.
  75. // -----------------------------------------------------
  76. if ($user->password == $password)
  77. {
  78. // -----------------------------------------------------
  79. // Set the user property.
  80. // -----------------------------------------------------
  81. static::$user = $user;
  82. // -----------------------------------------------------
  83. // Store the user ID in the session.
  84. // -----------------------------------------------------
  85. Session::put(static::$key, $user->id);
  86. return true;
  87. }
  88. }
  89. return false;
  90. }
  91. /**
  92. * Logout the current user of the application.
  93. *
  94. * @return void
  95. */
  96. public static function logout()
  97. {
  98. // -----------------------------------------------------
  99. // Remove the user ID from the session.
  100. // -----------------------------------------------------
  101. Session::forget(static::$key);
  102. // -----------------------------------------------------
  103. // Clear the current user variable.
  104. // -----------------------------------------------------
  105. static::$user = null;
  106. }
  107. /**
  108. * Get the authentication model.
  109. *
  110. * @return string
  111. */
  112. private static function model()
  113. {
  114. return '\\'.Config::get('auth.model');
  115. }
  116. }