auth.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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) and filter_var($id, FILTER_VALIDATE_INT) !== false)
  22. {
  23. return User::find($id);
  24. }
  25. },
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Authenticate User Credentials
  29. |--------------------------------------------------------------------------
  30. |
  31. | This closure is called by the Auth::attempt() method when attempting to
  32. | authenticate a user that is logging into your application.
  33. |
  34. | If the provided credentials are correct, simply return an object that
  35. | represents the user being authenticated. If the credentials are not
  36. | valid, don't return anything.
  37. |
  38. | Note: If a user object is returned, it must have an "id" property.
  39. |
  40. */
  41. 'attempt' => function($username, $password)
  42. {
  43. if ( ! is_null($user = User::where('email', '=', $username)->first()))
  44. {
  45. if (Hasher::check($password, $user->password)) return $user;
  46. }
  47. },
  48. /*
  49. |--------------------------------------------------------------------------
  50. | Logout
  51. |--------------------------------------------------------------------------
  52. |
  53. | Here you may do anything that needs to be done when a user logs out of
  54. | your application, such as call the logout method on a third-party API
  55. | you are using for authentication, or anything else you desire.
  56. |
  57. */
  58. 'logout' => function($user) {}
  59. );