eloquent.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php namespace Laravel\Auth\Drivers; use Laravel\Hash, Laravel\Config;
  2. class Eloquent extends Driver {
  3. /**
  4. * Get the current user of the application.
  5. *
  6. * If the user is a guest, null should be returned.
  7. *
  8. * @param int $id
  9. * @return mixed|null
  10. */
  11. public function retrieve($id)
  12. {
  13. if (filter_var($id, FILTER_VALIDATE_INT) !== false)
  14. {
  15. return $this->model()->find($id);
  16. }
  17. }
  18. /**
  19. * Attempt to log a user into the application.
  20. *
  21. * @param array $arguments
  22. * @return void
  23. */
  24. public function attempt($arguments = array())
  25. {
  26. $user = $this->model()->where(function($query) use($arguments)
  27. {
  28. $username = Config::get('auth.username');
  29. $query->where($username, '=', $arguments['username']);
  30. foreach(array_except($arguments, array('username', 'password', 'remember')) as $column => $val)
  31. {
  32. $query->where($column, '=', $val);
  33. }
  34. })->first();
  35. // If the credentials match what is in the database we will just
  36. // log the user into the application and remember them if asked.
  37. $password = $arguments['password'];
  38. $password_field = Config::get('auth.password', 'password');
  39. if ( ! is_null($user) and Hash::check($password, $user->get_attribute($password_field)))
  40. {
  41. return $this->login($user->id, array_get($arguments, 'remember'));
  42. }
  43. return false;
  44. }
  45. /**
  46. * Get a fresh model instance.
  47. *
  48. * @return Eloquent
  49. */
  50. protected function model()
  51. {
  52. $model = Config::get('auth.model');
  53. return new $model;
  54. }
  55. }