fluent.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php namespace Laravel\Auth\Drivers; use Laravel\Hash, Laravel\Database as DB;
  2. class Fluent 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. DB::table(Config::get('auth.table'))->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->get_user($arguments['username']);
  27. // This driver uses a basic username and password authentication scheme
  28. // so if the credentials mmatch what is in the database we will just
  29. // log the user into the application and remember them if asked.
  30. $password = $arguments['password'];
  31. if ( ! is_null($user) and Hash::check($password, $user->password))
  32. {
  33. return $this->login($user->id, array_get($arguments, 'remember'));
  34. }
  35. return false;
  36. }
  37. /**
  38. * Get the user from the database table by username.
  39. *
  40. * @param mixed $value
  41. * @return mixed
  42. */
  43. protected function get_user($value)
  44. {
  45. $table = Config::get('auth.table');
  46. $username = Config::get('auth.username');
  47. return DB::table($table)->where($username, '=', $value)->first();
  48. }
  49. }