Spring Webflux OAuth 2 资源服务器

ran*_*m86 3 spring spring-security jwt spring-boot spring-security-oauth2

我有一个基于 Spring Boot 1.5 (Spring Security v4) 的 Spring OAuth 2 服务器,它生成定制的令牌和一些与这个授权服务器通信的资源服务器,/oauth/check_token通过配置使用端点RemoteTokenServices。与在授权服务器端存储/检索令牌相关的所有逻辑都使用JdbcTokenStore.

我正在构建一个新的 Spring Boot 2 应用程序,它是用 Spring webflux 模块构建的,并尝试client_credentials使用 Spring Security 5.1.1实现与现有授权服务器的流程。我发现在 5.1.0.RC1 ( https://spring.io/blog/2018/08/21/spring-security-5-1-0-rc1-released#oauth2-resource-服务器)并在 5.1.0.RC2 中更新(https://spring.io/blog/2018/09/10/spring-security-5-1-0-rc2-released#oauth2-resource-server)但看起来像只能使用 JWT 支持对其进行配置。

我可能在这里弄乱了概念,但正在寻找更多信息以及将所有这些组件配置在一起的方法。

GVA*_*Art 7

我和你的情况一样,我用下一个方法解决了这个问题,也许它可以帮助你:

spring-boot-starter-parent.version : 2.1.1

spring-cloud-dependencies.version : Greenwich.R1

安全配置

@EnableWebFluxSecurity
public class SecurityConfig {

    @Autowired
    private ReactiveAuthenticationManager manager; //custom implementation

    @Bean
    SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
        return http
                .authorizeExchange()
                .pathMatchers("/role").hasRole("ADMIN")
                .pathMatchers("/test").access(new HasScope("server")) //custom implementation
                .anyExchange().authenticated()
                .and()
                .httpBasic().disable()
                .oauth2ResourceServer()
                    .jwt()
                    .authenticationManager(manager)
                .and().and()
                .build();
    }
}
Run Code Online (Sandbox Code Playgroud)

ReactiveAuthorizationManager (HasScope) 实现: 允许在身份验证对象中搜索范围的帮助程序

public class HasScope implements ReactiveAuthorizationManager<AuthorizationContext> {

    public HasScope(String...scopes) {
        this.scopes = Arrays.asList(scopes);
    }

    private final Collection<String> scopes;

    @Override
    public Mono<AuthorizationDecision> check(Mono<Authentication> authentication, AuthorizationContext object) {
        return authentication
                .flatMap(it -> {
                    OAuth2Authentication auth = (OAuth2Authentication) it;
                    Set<String> requestScopes = auth.getOAuth2Request().getScope();
                    boolean allow = requestScopes.containsAll(scopes);
                    return Mono.just(new AuthorizationDecision(allow));
                });
    }
}
Run Code Online (Sandbox Code Playgroud)

ReactiveAuthenticationManager 实现:

这是配置中创建OAuth2Authentication的主要组件。对错误的访问令牌的响应存在问题,它仅返回状态代码而没有正文响应。

@Component
public class ReactiveAuthenticationManagerImpl implements ReactiveAuthenticationManager {

    private final ResourceServerProperties sso;
    private final WebClient.Builder webClient;
    private final ObjectMapper objectMapper;
    private AuthoritiesExtractor authoritiesExtractor = new FixedAuthoritiesExtractor();

    public ReactiveAuthenticationManagerImpl(ResourceServerProperties sso,
            @Qualifier("loadBalancedWebClient") WebClient.Builder webClient, ObjectMapper objectMapper) {
        this.sso = sso;
        this.webClient = webClient;
        this.objectMapper = objectMapper;
    }

    @Override
    public Mono<Authentication> authenticate(Authentication authentication) {
        return Mono.just(authentication)
                .cast(BearerTokenAuthenticationToken.class)
                .flatMap(it -> getMap(it.getToken()))
                .flatMap(result -> Mono.just(extractAuthentication(result)));
    }

    private OAuth2Authentication extractAuthentication(Map<String, Object> map) {
        Object principal = getPrincipal(map);
        OAuth2Request request = getRequest(map);
        List<GrantedAuthority> authorities = authoritiesExtractor.extractAuthorities(map);
        UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(principal, "N/A", authorities);
        token.setDetails(map);
        return new OAuth2Authentication(request, token);
    }

    private Object getPrincipal(Map<String, Object> map) {
        if (map.containsKey("principal")) {
            try {
                //that is the case for user authentication
                return objectMapper.convertValue(map.get("principal"), UserPrincipal.class);
            } catch (IllegalArgumentException ex) {
                //that is the case for client authentication
                return objectMapper.convertValue(map.get("principal"), String.class);
            }
        }
        return null;
    }

    @SuppressWarnings({"unchecked"})
    private OAuth2Request getRequest(Map<String, Object> map) {
        Map<String, Object> request = (Map<String, Object>) map.get("oauth2Request");

        String clientId = (String) request.get("clientId");
        Set<String> scope = new LinkedHashSet<>(request.containsKey("scope") ?
                (Collection<String>) request.get("scope") : Collections.emptySet());

        return new OAuth2Request(null, clientId, null, true, new HashSet<>(scope),
                null, null, null, null);
    }

    private Mono<Map<String, Object>> getMap(String accessToken) {
        String uri = sso.getUserInfoUri();
        return webClient.build().get()
                .uri(uri)
                .accept(MediaType.APPLICATION_JSON)
                .header("Authorization", "Bearer " + accessToken)
                .exchange()
                .flatMap(it -> it.bodyToMono(new ParameterizedTypeReference<Map<String, Object>>() {}))
                .onErrorMap(InvalidTokenException.class, mapper -> new InvalidTokenException("Invalid token: " + accessToken));
    }
Run Code Online (Sandbox Code Playgroud)