LoginAuthenticationProvider.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.lqkj.link.config.auth;
  2. import com.lqkj.link.module.authority.service.DatabaseUserDetailService;
  3. import com.lqkj.link.util.RSAUtils;
  4. import org.springframework.security.authentication.BadCredentialsException;
  5. import org.springframework.security.authentication.LockedException;
  6. import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
  7. import org.springframework.security.authentication.dao.DaoAuthenticationProvider;
  8. import org.springframework.security.core.AuthenticationException;
  9. import org.springframework.security.core.userdetails.UserDetails;
  10. import org.springframework.security.crypto.password.PasswordEncoder;
  11. /**
  12. * oauth2验证
  13. */
  14. public class LoginAuthenticationProvider extends DaoAuthenticationProvider {
  15. private final PasswordEncoder passwordEncoder;
  16. public LoginAuthenticationProvider(DatabaseUserDetailService userDetailsService, PasswordEncoder passwordEncoder) {
  17. setUserDetailsService(userDetailsService);
  18. this.passwordEncoder = passwordEncoder;
  19. }
  20. protected void additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication) throws AuthenticationException {
  21. //在接收到符合权限的帐号密码后进行再处理
  22. if (authentication.getCredentials() == null) {
  23. this.logger.debug("Authentication failed: no credentials provided");
  24. throw new BadCredentialsException(this.messages.getMessage("AbstractUserDetailsAuthenticationProvider.badCredentials", "Bad credentials"));
  25. } else {
  26. String pw;
  27. //如果位数为172则先解密
  28. if (authentication.getCredentials().toString().length() != 172) {
  29. this.logger.debug("Authentication failed: password length error");
  30. throw new BadCredentialsException(this.messages.getMessage("AbstractUserDetailsAuthenticationProvider.badCredentials", "Bad credentials"));
  31. }
  32. pw = RSAUtils.decryptBase64(authentication.getCredentials().toString());
  33. DatabaseUserDetailService userDetailsService = (DatabaseUserDetailService) getUserDetailsService();
  34. if (userDetailsService.isLocked(userDetails.getUsername())) {//账号是否被冻结
  35. throw new LockedException("账号已被冻结,请稍后重试");
  36. }
  37. if (!passwordEncoder.matches(pw, userDetails.getPassword())) {
  38. throw new LockedException(userDetailsService.lockedUser(userDetails.getUsername()));
  39. }else {
  40. userDetailsService.unlockedUser(userDetails.getUsername());
  41. }
  42. }
  43. }
  44. }