1
0
mirror of synced 2026-08-31 14:35:18 +00:00

Support Account Status Checks in OneTimeTokenReactiveAuthenticationManager

Add the same opt-in UserDetailsChecker support to
OneTimeTokenReactiveAuthenticationManager, mirroring
OneTimeTokenAuthenticationProvider for the reactive stack.

Issue gh-17655

Signed-off-by: Josh Cummings <3627351+jzheaux@users.noreply.github.com>
This commit is contained in:
Josh Cummings
2026-08-07 13:11:42 -06:00
parent b3e262187c
commit c096e45242
5 changed files with 260 additions and 0 deletions
@@ -0,0 +1,59 @@
/*
* Copyright 2004-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.security.docs.reactive.authentication.onetimetokenaccountstatus;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.AccountStatusUserDetailsChecker;
import org.springframework.security.authentication.ott.reactive.OneTimeTokenReactiveAuthenticationManager;
import org.springframework.security.authentication.ott.reactive.ReactiveOneTimeTokenService;
import org.springframework.security.config.Customizer;
import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity;
import org.springframework.security.config.web.server.ServerHttpSecurity;
import org.springframework.security.core.userdetails.ReactiveUserDetailsService;
import org.springframework.security.web.server.SecurityWebFilterChain;
@EnableWebFluxSecurity
@Configuration(proxyBeanMethods = false)
class OneTimeTokenAccountStatusExample {
@Bean
SecurityWebFilterChain filterChain(ServerHttpSecurity http,
OneTimeTokenReactiveAuthenticationManager oneTimeTokenAuthenticationManager) {
// @formatter:off
http
// ...
.formLogin(Customizer.withDefaults())
.oneTimeTokenLogin((ott) -> ott
.authenticationManager(oneTimeTokenAuthenticationManager)
);
// @formatter:on
return http.build();
}
// tag::userDetailsChecker[]
@Bean
OneTimeTokenReactiveAuthenticationManager oneTimeTokenAuthenticationManager(
ReactiveOneTimeTokenService oneTimeTokenService, ReactiveUserDetailsService userDetailsService) {
OneTimeTokenReactiveAuthenticationManager authenticationManager = new OneTimeTokenReactiveAuthenticationManager(
oneTimeTokenService, userDetailsService);
authenticationManager.setUserDetailsChecker(new AccountStatusUserDetailsChecker());
return authenticationManager;
}
// end::userDetailsChecker[]
}
@@ -0,0 +1,62 @@
/*
* Copyright 2004-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.security.kt.docs.reactive.authentication.onetimetokenaccountstatus
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.security.authentication.AccountStatusUserDetailsChecker
import org.springframework.security.authentication.ott.reactive.OneTimeTokenReactiveAuthenticationManager
import org.springframework.security.authentication.ott.reactive.ReactiveOneTimeTokenService
import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity
import org.springframework.security.config.web.server.ServerHttpSecurity
import org.springframework.security.config.web.server.invoke
import org.springframework.security.core.userdetails.ReactiveUserDetailsService
import org.springframework.security.web.server.SecurityWebFilterChain
@EnableWebFluxSecurity
@Configuration(proxyBeanMethods = false)
class OneTimeTokenAccountStatusExample {
@Bean
fun filterChain(
http: ServerHttpSecurity,
oneTimeTokenAuthenticationManager: OneTimeTokenReactiveAuthenticationManager
): SecurityWebFilterChain {
// @formatter:off
return http {
// ...
formLogin { }
oneTimeTokenLogin {
authenticationManager = oneTimeTokenAuthenticationManager
}
}
// @formatter:on
}
// tag::userDetailsChecker[]
@Bean
fun oneTimeTokenAuthenticationManager(
oneTimeTokenService: ReactiveOneTimeTokenService,
userDetailsService: ReactiveUserDetailsService
): OneTimeTokenReactiveAuthenticationManager {
val authenticationManager = OneTimeTokenReactiveAuthenticationManager(oneTimeTokenService, userDetailsService)
authenticationManager.setUserDetailsChecker(AccountStatusUserDetailsChecker())
return authenticationManager
}
// end::userDetailsChecker[]
}