1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
@Slf4j @Service("authenticationProvider") public class AuthenticationProviderImpl implements AuthenticationProvider { protected MessageSourceAccessor messages = SpringSecurityMessageSource.getAccessor();
private UserDetailsChecker preAuthenticationChecks = new DefaultPreAuthenticationChecks();
private UserDetailsChecker postAuthenticationChecks = new DefaultPostAuthenticationChecks();
private UserCache userCache = new NullUserCache();
private boolean forcePrincipalAsString = false; @Resource(name = "userDetailsService") private UserDetailsService userDetailsService;
@Resource(name = "passwordEncoder") private PasswordEncoder passwordEncoder;
@Override public Authentication authenticate(Authentication authentication) throws AuthenticationException { Assert.isInstanceOf(UsernamePasswordAuthenticationToken.class, authentication, () -> messages.getMessage( "AbstractUserDetailsAuthenticationProvider.onlySupports", "Only UsernamePasswordAuthenticationToken is supported"));
String username = (authentication.getPrincipal() == null) ? "NONE_PROVIDED" : authentication.getName(); boolean cacheWasUsed = true;
UserDetails userDetail = this.userCache.getUserFromCache(username); if (userDetail == null) { cacheWasUsed = false; userDetail = userDetailsService.loadUserByUsername(username); if (userDetail == null) { log.debug("User '" + username + "' not found"); throw new UsernameNotFoundException("用户不存在"); } } try { preAuthenticationChecks.check(userDetail); additionalAuthenticationChecks(userDetail, (UsernamePasswordAuthenticationToken) authentication); } catch (AuthenticationException exception) { if (cacheWasUsed) { cacheWasUsed = false; userDetail = userDetailsService.loadUserByUsername(username); preAuthenticationChecks.check(userDetail); additionalAuthenticationChecks(userDetail, (UsernamePasswordAuthenticationToken) authentication); } else { throw exception; } } postAuthenticationChecks.check(userDetail); if (!cacheWasUsed) { this.userCache.putUserInCache(userDetail); } Object principalToReturn = userDetail;
if (forcePrincipalAsString) { principalToReturn = userDetail.getUsername(); }
return createSuccessAuthentication(principalToReturn, authentication, userDetail);
}
@Override public boolean supports(Class<?> authentication) { return UsernamePasswordAuthenticationToken.class.equals(authentication); }
public UserCache getUserCache() { return userCache; }
public void setUserCache(UserCache userCache) { this.userCache = userCache; }
private class DefaultPreAuthenticationChecks implements UserDetailsChecker { public void check(UserDetails user) { if (!user.isAccountNonLocked()) { log.debug("User account is locked");
throw new LockedException(messages.getMessage( "AuthenticationProviderImpl.locked", "账号已被锁定")); } if (!user.isEnabled()) { log.debug("User account is disabled");
throw new DisabledException(messages.getMessage( "AuthenticationProviderImpl.disabled", "用户已被禁用")); } if (!user.isAccountNonExpired()) { log.debug("User account is expired"); throw new AccountExpiredException(messages.getMessage( "AuthenticationProviderImpl.expired", "账号已过期")); } } }
private class DefaultPostAuthenticationChecks implements UserDetailsChecker { public void check(UserDetails user) { if (!user.isCredentialsNonExpired()) { log.debug("User account credentials have expired");
throw new CredentialsExpiredException(messages.getMessage( "AuthenticationProviderImpl.credentialsExpired", "凭证已过期")); } } }
protected void additionalAuthenticationChecks(UserDetails userDetails, UsernamePasswordAuthenticationToken authentication) throws AuthenticationException { if (authentication.getCredentials() == null) { log.debug("Authentication failed: no credentials provided");
throw new BadCredentialsException(messages.getMessage( "AuthenticationProviderImpl.badCredentials", "无效凭证(无效密码)")); }
String presentedPassword = authentication.getCredentials().toString();
if (!passwordEncoder.matches(presentedPassword, userDetails.getPassword())) { log.debug("Authentication failed: password does not match stored value");
throw new BadCredentialsException(messages.getMessage( "AuthenticationProviderImpl.badCredentials", "密码错误")); } }
protected Authentication createSuccessAuthentication(Object principal, Authentication authentication, UserDetails user) { boolean upgradeEncoding = this.userDetailsService != null && this.passwordEncoder.upgradeEncoding(user.getPassword()); String presentedPassword = authentication.getCredentials().toString(); String newPassword = upgradeEncoding ? this.passwordEncoder.encode(presentedPassword) : presentedPassword; return new UsernamePasswordAuthenticationToken(principal, newPassword, user.getAuthorities()); } }
|