auth.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Retrieve The Current User
  6. |--------------------------------------------------------------------------
  7. |
  8. | This closure is called by the Auth::user() method when attempting to
  9. | retrieve a user by their ID stored in the session.
  10. |
  11. | Simply return an object representing the user with the given ID. Or, if
  12. | no user with the given ID is registered to use your application, you do
  13. | not need to return anything.
  14. |
  15. | Of course, a simple, elegant authentication solution is already provided
  16. | for you using Eloquent and the default Laravel hashing engine.
  17. |
  18. */
  19. 'user' => function($id)
  20. {
  21. if ( ! is_null($id)) return User::find($id);
  22. },
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Authenticate User Credentials
  26. |--------------------------------------------------------------------------
  27. |
  28. | This closure is called by the Auth::attempt() method when attempting to
  29. | authenticate a user that is logging into your application.
  30. |
  31. | If the provided credentials are correct, simply return an object that
  32. | represents the user being authenticated. If the credentials are not
  33. | valid, don't return anything.
  34. |
  35. | Note: If a user object is returned, it must have an "id" property.
  36. |
  37. */
  38. 'attempt' => function($username, $password)
  39. {
  40. if ( ! is_null($user = User::where('email', '=', $username)->first()))
  41. {
  42. if (Hasher::check($password, $user->password)) return $user;
  43. }
  44. },
  45. /*
  46. |--------------------------------------------------------------------------
  47. | Logout
  48. |--------------------------------------------------------------------------
  49. |
  50. | Here you may do anything that needs to be done when a user logs out of
  51. | your application, such as call the logout method on a third-party API
  52. | you are using for authentication, or anything else you desire.
  53. |
  54. */
  55. 'logout' => function($user) {}
  56. );