auth.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. Since the user ID
  33. // is stored in the session, we can't authenticate
  34. // without a session driver specified.
  35. // -----------------------------------------------------
  36. if (Config::get('session.driver') == '')
  37. {
  38. throw new \Exception("You must specify a session driver before using the Auth class.");
  39. }
  40. $model = static::model();
  41. // -----------------------------------------------------
  42. // Load the user using the ID stored in the session.
  43. // -----------------------------------------------------
  44. if (is_null(static::$user) and Session::has(static::$key))
  45. {
  46. static::$user = $model::find(Session::get(static::$key));
  47. }
  48. return static::$user;
  49. }
  50. /**
  51. * Attempt to login a user.
  52. *
  53. * @param string $username
  54. * @param string $password
  55. */
  56. public static function login($username, $password)
  57. {
  58. $model = static::model();
  59. $user = $model::where(Config::get('auth.username'), '=', $username)->first();
  60. if ( ! is_null($user))
  61. {
  62. // -----------------------------------------------------
  63. // Hash the password. If a salt is present on the user
  64. // record, we will recreate the hashed password using
  65. // the salt. Otherwise, we will just use a plain hash.
  66. // -----------------------------------------------------
  67. $password = (isset($user->salt)) ? Hash::make($password, $user->salt)->value : sha1($password);
  68. if ($user->password === $password)
  69. {
  70. static::$user = $user;
  71. Session::put(static::$key, $user->id);
  72. return true;
  73. }
  74. }
  75. return false;
  76. }
  77. /**
  78. * Logout the current user of the application.
  79. *
  80. * @return void
  81. */
  82. public static function logout()
  83. {
  84. // -----------------------------------------------------
  85. // By removing the user ID from the session, the user
  86. // will no longer be considered logged in on subsequent
  87. // requests to the application.
  88. // -----------------------------------------------------
  89. Session::forget(static::$key);
  90. static::$user = null;
  91. }
  92. /**
  93. * Get the authentication model.
  94. *
  95. * @return string
  96. */
  97. private static function model()
  98. {
  99. return '\\'.Config::get('auth.model');
  100. }
  101. }