auth.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. $model = static::model();
  39. // -----------------------------------------------------
  40. // Load the user using the ID stored in the session.
  41. // -----------------------------------------------------
  42. if (is_null(static::$user) and Session::has(static::$key))
  43. {
  44. static::$user = $model::find(Session::get(static::$key));
  45. }
  46. return static::$user;
  47. }
  48. /**
  49. * Attempt to login a user.
  50. *
  51. * @param string $username
  52. * @param string $password
  53. */
  54. public static function login($username, $password)
  55. {
  56. $model = static::model();
  57. // -----------------------------------------------------
  58. // Get the user by username.
  59. // -----------------------------------------------------
  60. $user = $model::where(Config::get('auth.username'), '=', $username)->first();
  61. if ( ! is_null($user))
  62. {
  63. // -----------------------------------------------------
  64. // Hash the password.
  65. // -----------------------------------------------------
  66. $password = (isset($user->salt)) ? Hash::make($password, $user->salt)->value : sha1($password);
  67. if ($user->password == $password)
  68. {
  69. static::$user = $user;
  70. Session::put(static::$key, $user->id);
  71. return true;
  72. }
  73. }
  74. return false;
  75. }
  76. /**
  77. * Logout the current user of the application.
  78. *
  79. * @return void
  80. */
  81. public static function logout()
  82. {
  83. Session::forget(static::$key);
  84. static::$user = null;
  85. }
  86. /**
  87. * Get the authentication model.
  88. *
  89. * @return string
  90. */
  91. private static function model()
  92. {
  93. return '\\'.Config::get('auth.model');
  94. }
  95. }