1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * Copyright 2020-2023 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 sample.config;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.security.config.annotation.web.builders.HttpSecurity;
- import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
- import org.springframework.security.config.annotation.web.configuration.WebSecurityCustomizer;
- import org.springframework.security.oauth2.client.oidc.web.logout.OidcClientInitiatedLogoutSuccessHandler;
- import org.springframework.security.oauth2.client.registration.ClientRegistrationRepository;
- import org.springframework.security.web.SecurityFilterChain;
- import org.springframework.security.web.authentication.logout.LogoutSuccessHandler;
- import static org.springframework.security.config.Customizer.withDefaults;
- /**
- * @author Joe Grandja
- * @author Dmitriy Dubson
- * @since 0.0.1
- */
- @EnableWebSecurity
- @Configuration(proxyBeanMethods = false)
- public class SecurityConfig {
- @Autowired
- private ClientRegistrationRepository clientRegistrationRepository;
- @Bean
- WebSecurityCustomizer webSecurityCustomizer() {
- return (web) -> web.ignoring().requestMatchers("/webjars/**");
- }
- // @formatter:off
- @Bean
- SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
- http
- .authorizeHttpRequests(authorize ->
- authorize
- .requestMatchers("/logged-out").permitAll()
- .anyRequest().authenticated()
- )
- .oauth2Login(oauth2Login ->
- oauth2Login.loginPage("/oauth2/authorization/messaging-client-oidc"))
- .oauth2Client(withDefaults())
- .logout(logout ->
- logout.logoutSuccessHandler(oidcLogoutSuccessHandler()));
- return http.build();
- }
- // @formatter:on
- private LogoutSuccessHandler oidcLogoutSuccessHandler() {
- OidcClientInitiatedLogoutSuccessHandler oidcLogoutSuccessHandler =
- new OidcClientInitiatedLogoutSuccessHandler(this.clientRegistrationRepository);
- // Set the location that the End-User's User Agent will be redirected to
- // after the logout has been performed at the Provider
- oidcLogoutSuccessHandler.setPostLogoutRedirectUri("{baseUrl}/logged-out");
- return oidcLogoutSuccessHandler;
- }
- }
|