| public final class OAuth2AuthorizationServerConfigurer |
| extends AbstractHttpConfigurer<OAuth2AuthorizationServerConfigurer, HttpSecurity> { |
| |
| private final Map<Class<? extends AbstractOAuth2Configurer>, AbstractOAuth2Configurer> configurers = createConfigurers(); |
| |
| private RequestMatcher endpointsMatcher; |
| |
| ... |
| |
| |
| public OAuth2AuthorizationServerConfigurer oidc(Customizer<OidcConfigurer> oidcCustomizer) { |
| OidcConfigurer oidcConfigurer = getConfigurer(OidcConfigurer.class); |
| if (oidcConfigurer == null) { |
| addConfigurer(OidcConfigurer.class, new OidcConfigurer(this::postProcess)); |
| oidcConfigurer = getConfigurer(OidcConfigurer.class); |
| } |
| oidcCustomizer.customize(oidcConfigurer); |
| return this; |
| } |
| |
| ... |
| |
| @Override |
| public void init(HttpSecurity httpSecurity) { |
| |
| AuthorizationServerSettings authorizationServerSettings = OAuth2ConfigurerUtils.getAuthorizationServerSettings(httpSecurity); |
| |
| validateAuthorizationServerSettings(authorizationServerSettings); |
| |
| if (isOidcEnabled()) { |
| |
| |
| initSessionRegistry(httpSecurity); |
| SessionRegistry sessionRegistry = httpSecurity.getSharedObject(SessionRegistry.class); |
| |
| OAuth2AuthorizationEndpointConfigurer authorizationEndpointConfigurer = |
| getConfigurer(OAuth2AuthorizationEndpointConfigurer.class); |
| authorizationEndpointConfigurer.setSessionAuthenticationStrategy((authentication, request, response) -> { |
| |
| if (authentication instanceof OAuth2AuthorizationCodeRequestAuthenticationToken authorizationCodeRequestAuthentication) { |
| if (authorizationCodeRequestAuthentication.getScopes().contains(OidcScopes.OPENID)) { |
| if (sessionRegistry.getSessionInformation(request.getSession().getId()) == null) { |
| sessionRegistry.registerNewSession( |
| request.getSession().getId(), |
| ((Authentication) authorizationCodeRequestAuthentication.getPrincipal()).getPrincipal()); |
| } |
| } |
| } |
| }); |
| } else { |
| |
| |
| OAuth2AuthorizationEndpointConfigurer authorizationEndpointConfigurer = |
| getConfigurer(OAuth2AuthorizationEndpointConfigurer.class); |
| authorizationEndpointConfigurer.addAuthorizationCodeRequestAuthenticationValidator((authenticationContext) -> { |
| OAuth2AuthorizationCodeRequestAuthenticationToken authorizationCodeRequestAuthentication = |
| authenticationContext.getAuthentication(); |
| if (authorizationCodeRequestAuthentication.getScopes().contains(OidcScopes.OPENID)) { |
| OAuth2Error error = new OAuth2Error(OAuth2ErrorCodes.INVALID_SCOPE, |
| "OpenID Connect 1.0 authentication requests are restricted.", |
| "https://datatracker.ietf.org/doc/html/rfc6749#section-4.1.2.1"); |
| throw new OAuth2AuthorizationCodeRequestAuthenticationException( |
| error, authorizationCodeRequestAuthentication); |
| } |
| }); |
| } |
| |
| List<RequestMatcher> requestMatchers = new ArrayList<>(); |
| |
| this.configurers.values().forEach(configurer -> { |
| configurer.init(httpSecurity); |
| requestMatchers.add(configurer.getRequestMatcher()); |
| }); |
| |
| requestMatchers.add(new AntPathRequestMatcher( |
| authorizationServerSettings.getJwkSetEndpoint(), HttpMethod.GET.name())); |
| this.endpointsMatcher = new OrRequestMatcher(requestMatchers); |
| |
| ExceptionHandlingConfigurer<HttpSecurity> exceptionHandling = httpSecurity.getConfigurer(ExceptionHandlingConfigurer.class); |
| if (exceptionHandling != null) { |
| exceptionHandling.defaultAuthenticationEntryPointFor( |
| new HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED), |
| new OrRequestMatcher( |
| getRequestMatcher(OAuth2TokenEndpointConfigurer.class), |
| getRequestMatcher(OAuth2TokenIntrospectionEndpointConfigurer.class), |
| getRequestMatcher(OAuth2TokenRevocationEndpointConfigurer.class), |
| getRequestMatcher(OAuth2DeviceAuthorizationEndpointConfigurer.class)) |
| ); |
| } |
| } |
| |
| @Override |
| public void configure(HttpSecurity httpSecurity) { |
| |
| this.configurers.values().forEach(configurer -> configurer.configure(httpSecurity)); |
| |
| AuthorizationServerSettings authorizationServerSettings = OAuth2ConfigurerUtils.getAuthorizationServerSettings(httpSecurity); |
| |
| AuthorizationServerContextFilter authorizationServerContextFilter = new AuthorizationServerContextFilter(authorizationServerSettings); |
| httpSecurity.addFilterAfter(postProcess(authorizationServerContextFilter), SecurityContextHolderFilter.class); |
| |
| JWKSource<com.nimbusds.jose.proc.SecurityContext> jwkSource = OAuth2ConfigurerUtils.getJwkSource(httpSecurity); |
| if (jwkSource != null) { |
| NimbusJwkSetEndpointFilter jwkSetEndpointFilter = new NimbusJwkSetEndpointFilter( |
| jwkSource, authorizationServerSettings.getJwkSetEndpoint()); |
| httpSecurity.addFilterBefore(postProcess(jwkSetEndpointFilter), AbstractPreAuthenticatedProcessingFilter.class); |
| } |
| } |
| |
| private Map<Class<? extends AbstractOAuth2Configurer>, AbstractOAuth2Configurer> createConfigurers() { |
| Map<Class<? extends AbstractOAuth2Configurer>, AbstractOAuth2Configurer> configurers = new LinkedHashMap<>(); |
| |
| configurers.put(OAuth2ClientAuthenticationConfigurer.class, new OAuth2ClientAuthenticationConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2AuthorizationServerMetadataEndpointConfigurer.class, new OAuth2AuthorizationServerMetadataEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2AuthorizationEndpointConfigurer.class, new OAuth2AuthorizationEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2TokenEndpointConfigurer.class, new OAuth2TokenEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2TokenIntrospectionEndpointConfigurer.class, new OAuth2TokenIntrospectionEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2TokenRevocationEndpointConfigurer.class, new OAuth2TokenRevocationEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2DeviceAuthorizationEndpointConfigurer.class, new OAuth2DeviceAuthorizationEndpointConfigurer(this::postProcess)); |
| |
| configurers.put(OAuth2DeviceVerificationEndpointConfigurer.class, new OAuth2DeviceVerificationEndpointConfigurer(this::postProcess)); |
| return configurers; |
| } |
| } |