Я пытаюсь добавить пользовательский фильтр в Spring HttpSecurity
.Этот фильтр должен проверить, что имя пользователя находится в списке, предоставленном извне и внедренном в фильтр как Set
.
. Независимо от того, куда я поместил фильтр, его метод attemptAuthentication
никогда не вызывается.Вот код фильтра:
import java.io.IOException;
import java.util.Base64;
import java.util.Set;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.authentication.BadCredentialsException;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.AuthenticationException;
import org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter;
import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
public class MyRoleFilter extends AbstractAuthenticationProcessingFilter {
final Set<String> authorisedUsers;
public WhoRoleFilter(String url, AuthenticationManager authenticationManager, Set<String> authorisedUsers) {
super(new AntPathRequestMatcher(url));
this.authorisedUsers= authorisedUsers;
}
@Override
public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response)
throws AuthenticationException, IOException, ServletException {
// In BASIC authentication user:password come as Base64 in the Authorization header
final String authorization = request.getHeader("Authorization");
final String[] userPasswd = new String(Base64.getDecoder().decode(authorization)).split(":");
// The docs of AbstractAuthenticationProcessingFilter says it must throw an exception in case authentication fails
// https://docs.spring.io/spring-security/site/docs/4.2.6.RELEASE/apidocs/org/springframework/security/web/authentication/AbstractAuthenticationProcessingFilter.html#attemptAuthentication-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-
if (userPasswd.length!=2)
throw new BadCredentialsException("Bad Credentials");
if (authorisedUsers.contains(userPasswd[0])) {
UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(userPasswd[0], userPasswd[1]);
return this.getAuthenticationManager().authenticate(authRequest);
} else {
throw new BadCredentialsException("User has not the correct role");
}
}
}
И вот как я пытаюсь добавить его к HttpSecurity
:
@EnableWebSecurity
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) {
http.csrf().disable()
.authorizeRequests()
.antMatchers("/disabled")
.permitAll()
.anyRequest()
.authenticated()
.and()
.addFilterBefore(new MyRoleFilter("**/path/services/whatever/**", this.authenticationManager() ,myUserNamesSet), BasicAuthenticationFilter.class)
.httpBasic();
}
}
Я не уверен, где во время цепочки сборки долженaddFilterBefore()
идиКроме того, в дополнение к фильтру списка имен пользователей требуется стандартный пользователь + пароль от сервера LDAP.Аутентификация LDAP уже была на месте и в рабочем состоянии.
Обновление , это configureGlobal(AuthenticationManagerBuilder)
в SecurityConfig
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) {
try {
auth.ldapAuthentication()
.userDnPatterns(ConfigurationProvider.get().getProperty(Property.PROP_LDAP_USER_BASE_DN))
.contextSource(contextSource())
.passwordCompare()
.passwordAttribute(ConfigurationProvider.get().getProperty(Property.PROP_LDAP_PASSWORD_ATTRIBUTE));
} catch (Exception exc) {
LOG.error(exc.getMessage(), exc);
}
}